CombinedText stringlengths 4 3.42M |
|---|
-- CE3404D.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT END_OF_LINE RETURNS THE CORRECT VALUE WHEN POSITIONED
-- AT THE BEGINNING AND THE END OF A LINE, AND WHEN POSITIONED JUST
-- BEFORE THE FILE TERMINATOR.
-- CASE 2) UNBOUNDED LINE LENGTH
-- APPLICABILITY CRITERIA:
-- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH SUPPORT
-- TEXT FILES.
-- HISTORY:
-- GMT 09/22/87 CREATED ORIGINAL TEST.
WITH REPORT; USE REPORT;
WITH TEXT_IO; USE TEXT_IO;
PROCEDURE CE3404D IS
INCOMPLETE : EXCEPTION;
MY_FILE : FILE_TYPE;
ITEM_CHAR : CHARACTER;
CHAR : CHARACTER := ('C');
TEN : POSITIVE_COUNT := POSITIVE_COUNT(IDENT_INT(10));
BLANK_COUNTER : NATURAL := 0;
BEGIN
TEST ("CE3404D", "CHECK THAT END_OF_LINE RETURNS THE CORRECT " &
"VALUE WHEN POSITIONED AT THE BEGINNING AND " &
"THE END OF A LINE, AND WHEN POSITIONED JUST " &
"BEFORE THE FILE TERMINATOR");
-- CREATE AND INITIALIZE TEST FILE WITH BOUNDED LINE LENGTH
BEGIN
CREATE (MY_FILE, OUT_FILE, LEGAL_FILE_NAME);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("USE_ERROR RAISED ON TEXT CREATE WITH " &
"OUT_FILE MODE");
RAISE INCOMPLETE;
WHEN NAME_ERROR =>
NOT_APPLICABLE ("NAME_ERROR RAISED ON TEXT CREATE " &
"WITH OUT_FILE MODE");
RAISE INCOMPLETE;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED ON TEXT CREATE");
RAISE INCOMPLETE;
END;
FOR I IN 1..5 LOOP
PUT (MY_FILE, CHAR);
END LOOP;
NEW_LINE (MY_FILE);
PUT (MY_FILE, 'B');
CLOSE (MY_FILE);
BEGIN
OPEN (MY_FILE, IN_FILE, LEGAL_FILE_NAME);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("USE_ERROR RAISED ON TEXT OPEN WITH " &
"IN_FILE MODE");
RAISE INCOMPLETE;
END;
-- BEGIN THE TEST
IF END_OF_LINE (MY_FILE) THEN
FAILED ("END_OF_LINE: INCORRECT VALUE AT FIRST POSITION - 5");
END IF;
IF COL (MY_FILE) /= 1 THEN
FAILED ("EOL MODIFIED COL NUMBER - 6");
END IF;
FOR I IN 1..4 LOOP
GET (MY_FILE,ITEM_CHAR);
END LOOP;
IF END_OF_LINE (MY_FILE) THEN
FAILED ("END_OF_LINE: INCORRECT VALUE AT FIFTH POSITION - 7");
END IF;
GET (MY_FILE,ITEM_CHAR);
WHILE NOT END_OF_LINE (MY_FILE) LOOP
GET (MY_FILE, ITEM_CHAR);
IF ITEM_CHAR = ' ' THEN
FAILED ("STRING WAS PADDED WITH SOMETHING OTHER THAN " &
"BLANKS - 8");
END IF;
END LOOP;
IF LINE (MY_FILE) /= 1 THEN
FAILED ("EOL SKIPPED LINE TERMINATOR - 10");
END IF;
IF NOT END_OF_LINE (MY_FILE) THEN
FAILED ("EOL SKIPPED LINE TERMINATOR - 11");
END IF;
SKIP_PAGE (MY_FILE);
IF PAGE (MY_FILE) /= 2 THEN
FAILED ("INCORRECT PAGE NUMBER");
END IF;
IF NOT END_OF_LINE (MY_FILE) THEN
FAILED ("INCORRECT VALUE WHEN POSITIONED JUST BEFORE " &
"TERMINATOR");
END IF;
BEGIN
DELETE (MY_FILE);
EXCEPTION
WHEN USE_ERROR =>
NULL;
END;
RESULT;
EXCEPTION
WHEN INCOMPLETE =>
RESULT;
END CE3404D;
|
-- -----------------------------------------------------------------------------
-- smk, the smart make
-- © 2018 Lionel Draghi <lionel.draghi@free.fr>
-- SPDX-License-Identifier: APSL-2.0
-- -----------------------------------------------------------------------------
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
-- http://www.apache.org/licenses/LICENSE-2.0
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-- -----------------------------------------------------------------------------
-- -----------------------------------------------------------------------------
-- Package: Smk.Cmd_Line body
--
-- Implementation Notes:
--
-- Portability Issues:
--
-- Anticipated Changes:
--
-- -----------------------------------------------------------------------------
with Smk.IO;
with Smk.Settings;
with Ada.Command_Line;
with Ada.Directories;
separate (Smk.Main)
procedure Analyze_Cmd_Line is
-- --------------------------------------------------------------------------
Arg_Counter : Positive := 1;
-- --------------------------------------------------------------------------
-- Procedure: Next_Arg
-- --------------------------------------------------------------------------
procedure Next_Arg is
begin
Arg_Counter := Arg_Counter + 1;
end Next_Arg;
-- --------------------------------------------------------------------------
-- Procedure: Put_Version
-- --------------------------------------------------------------------------
procedure Put_Version is
begin
IO.Put_Line (Settings.Smk_Version);
end Put_Version;
begin
if Ada.Command_Line.Argument_Count < 1 then
Put_Help;
return;
end if;
while Arg_Counter <= Ada.Command_Line.Argument_Count loop
declare
Opt : constant String := Ada.Command_Line.Argument (Arg_Counter);
begin
if Opt = "-a" or Opt = "--always-make" then
Settings.Always_Make := True;
Next_Arg;
elsif Opt = "-e" or Opt = "--explain" then
Settings.Explain := True;
Next_Arg;
elsif Opt = "-n" or Opt = "--dry-run" then
Settings.Dry_Run := True;
Next_Arg;
elsif Opt = "-i" or Opt = "--ignore-errors" then
Settings.Ignore_Errors := True;
Next_Arg;
elsif Opt = "-lm" or Opt = "--list_makefile" then
Settings.List_Makefile := True;
Next_Arg;
elsif Opt = "-ls" or Opt = "--list_saved_run" then
Settings.List_Saved_Run := True;
Next_Arg;
elsif Opt = "-lt" or Opt = "--list_targets" then
Settings.List_Targets := True;
Next_Arg;
elsif Opt = "--clean" then
Settings.Clean_Smk_Files := True;
Next_Arg;
elsif Opt = "-We" or Opt = "--Warnings=error" then
Settings.Warnings_As_Errors := True;
Next_Arg;
elsif Opt = "-v" or Opt = "--verbose" then
Settings.Verbosity := Verbose;
Next_Arg;
elsif Opt = "-q" or Opt = "--quiet" then
Settings.Verbosity := Quiet;
Next_Arg;
elsif Opt = "--version" then
Put_Version;
Next_Arg;
elsif Opt = "-h" or Opt = "--help" then
Put_Help;
Next_Arg;
elsif Opt = "-d" then
-- undocumented option
Settings.Verbosity := Debug;
Next_Arg;
elsif Ada.Directories.Exists (Opt) then
-- should be the Makefile
Settings.Set_Makefile_Name (Opt);
Next_Arg;
else
Put_Error ("Unknown Makefile or unknow option "
& Opt, With_Help => False);
end if;
if IO.Some_Error then return; end if;
-- No need to further analyze command line, or to do
-- Options_Coherency_Tests.
end;
end loop;
-- Options_Coherency_Tests;
end Analyze_Cmd_Line;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . W I D E _ T E X T _ I O . E N U M E R A T I O N _ I O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Ada.Wide_Text_IO.Enumeration_Aux;
package body Ada.Wide_Text_IO.Enumeration_IO is
package Aux renames Ada.Wide_Text_IO.Enumeration_Aux;
---------
-- Get --
---------
procedure Get (File : File_Type; Item : out Enum) is
Buf : Wide_String (1 .. Enum'Width);
Buflen : Natural;
begin
Aux.Get_Enum_Lit (File, Buf, Buflen);
Item := Enum'Wide_Value (Buf (1 .. Buflen));
exception
when Constraint_Error => raise Data_Error;
end Get;
procedure Get (Item : out Enum) is
begin
Get (Current_Input, Item);
end Get;
procedure Get
(From : Wide_String;
Item : out Enum;
Last : out Positive)
is
Start : Natural;
begin
Aux.Scan_Enum_Lit (From, Start, Last);
Item := Enum'Wide_Value (From (Start .. Last));
exception
when Constraint_Error => raise Data_Error;
end Get;
---------
-- Put --
---------
procedure Put
(File : File_Type;
Item : Enum;
Width : Field := Default_Width;
Set : Type_Set := Default_Setting)
is
Image : constant Wide_String := Enum'Wide_Image (Item);
begin
Aux.Put (File, Image, Width, Set);
end Put;
procedure Put
(Item : Enum;
Width : Field := Default_Width;
Set : Type_Set := Default_Setting)
is
begin
Put (Current_Output, Item, Width, Set);
end Put;
procedure Put
(To : out Wide_String;
Item : Enum;
Set : Type_Set := Default_Setting)
is
Image : constant Wide_String := Enum'Wide_Image (Item);
begin
Aux.Puts (To, Image, Set);
end Put;
end Ada.Wide_Text_IO.Enumeration_IO;
|
-----------------------------------------------------------------------
-- gen-commands-templates -- Template based command
-- Copyright (C) 2011, 2012, 2013, 2014, 2017, 2018, 2021 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.Text_IO;
with Ada.IO_Exceptions;
with Ada.Directories;
with Ada.Streams.Stream_IO;
with GNAT.Command_Line;
with Gen.Artifacts;
with EL.Utils;
with EL.Contexts.Default;
with EL.Functions.Namespaces;
with ASF.Contexts.Faces;
with ASF.Views.Nodes.Core;
with ASF.Beans.Resolvers;
with Util.Log.Loggers;
with Util.Files;
with Util.Streams.Files;
with Util.Streams.Texts;
with Util.Beans.Objects;
with Util.Serialize.Mappers.Record_Mapper;
with Util.Serialize.IO.XML;
package body Gen.Commands.Templates is
use Ada.Strings.Unbounded;
use GNAT.Command_Line;
Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Gen.Commands.Templates");
-- Apply the patch instruction
procedure Patch_File (Generator : in out Gen.Generator.Handler;
Info : in Patch);
function Match_Line (Line : in String;
Pattern : in String) return Boolean;
-- Check that the line does not match any of the pattern defined in the missing list.
-- Returns True if the line matches one of the pattern and False if there is no match.
function Match_Missing (Line : in String;
Missing : in Util.Strings.Vectors.Vector) return Boolean;
-- Expand a vector of strings by evaluating the EL expressions against the EL context
-- and appending the result into the target list.
procedure Expand (Source : in Util.Strings.Vectors.Vector;
Into : in out Util.Strings.Vectors.Vector;
Context : in EL.Contexts.ELContext'Class);
-- Setup the EL context to evaluate some EL expression by using the generator's
-- context and evaluate a number of EL expression by using the Process procedure.
procedure Evaluate (Generator : in out Gen.Generator.Handler;
Process : access procedure (Context : in EL.Contexts.ELContext'Class));
-- ------------------------------
-- Check if the line matches the pseudo pattern.
-- ------------------------------
function Match_Line (Line : in String;
Pattern : in String) return Boolean is
L_Pos : Natural := Line'First;
P_Pos : Natural := Pattern'First;
begin
while P_Pos <= Pattern'Last loop
if L_Pos > Line'Last then
return False;
end if;
if Line (L_Pos) = Pattern (P_Pos) then
if Pattern (P_Pos) /= ' ' then
P_Pos := P_Pos + 1;
end if;
L_Pos := L_Pos + 1;
elsif Pattern (P_Pos) = ' ' and then Line (L_Pos) = Pattern (P_Pos + 1) then
P_Pos := P_Pos + 2;
L_Pos := L_Pos + 1;
elsif Pattern (P_Pos) = ' ' and then Pattern (P_Pos + 1) = '*' then
P_Pos := P_Pos + 1;
L_Pos := L_Pos + 1;
elsif Pattern (P_Pos) = '*' and then Line (L_Pos) = Pattern (P_Pos + 1) then
P_Pos := P_Pos + 2;
L_Pos := L_Pos + 1;
elsif Pattern (P_Pos) = '*' and Line (L_Pos) /= ' ' then
L_Pos := L_Pos + 1;
else
return False;
end if;
end loop;
return True;
end Match_Line;
-- ------------------------------
-- Check that the line does not match any of the pattern defined in the missing list.
-- Returns True if the line matches one of the pattern and False if there is no match.
-- ------------------------------
function Match_Missing (Line : in String;
Missing : in Util.Strings.Vectors.Vector) return Boolean is
Iter : Util.Strings.Vectors.Cursor := Missing.First;
begin
while Util.Strings.Vectors.Has_Element (Iter) loop
declare
Match : constant String := Util.Strings.Vectors.Element (Iter);
begin
if Match_Line (Line, Match) then
return True;
end if;
Log.Debug ("Check {0} - {1}", Match, Line);
Util.Strings.Vectors.Next (Iter);
end;
end loop;
return False;
end Match_Missing;
-- ------------------------------
-- Expand a vector of strings by evaluating the EL expressions against the EL context
-- and appending the result into the target list.
-- ------------------------------
procedure Expand (Source : in Util.Strings.Vectors.Vector;
Into : in out Util.Strings.Vectors.Vector;
Context : in EL.Contexts.ELContext'Class) is
Iter : Util.Strings.Vectors.Cursor := Source.First;
begin
while Util.Strings.Vectors.Has_Element (Iter) loop
Into.Append (EL.Utils.Eval (Util.Strings.Vectors.Element (Iter), Context));
Util.Strings.Vectors.Next (Iter);
end loop;
end Expand;
-- ------------------------------
-- Setup the EL context to evaluate some EL expression by using the generator's
-- context and evaluate a number of EL expression by using the Process procedure.
-- ------------------------------
procedure Evaluate (Generator : in out Gen.Generator.Handler;
Process : access procedure (Context : in EL.Contexts.ELContext'Class)) is
Context : aliased ASF.Contexts.Faces.Faces_Context;
ELContext : aliased EL.Contexts.Default.Default_Context;
NS_Mapper : aliased EL.Functions.Namespaces.NS_Function_Mapper;
Root_Resolver : aliased ASF.Beans.Resolvers.ELResolver;
begin
-- Build the EL context to evaluate the patterns that must be verified.
-- This allows a pattern to match the module name or application name for example.
Root_Resolver.Initialize (Generator'Unchecked_Access, null);
ELContext.Set_Resolver (Root_Resolver'Unchecked_Access);
NS_Mapper.Set_Namespace (Prefix => "fn",
URI => ASF.Views.Nodes.Core.FN_URI);
NS_Mapper.Set_Namespace (Prefix => "g",
URI => Gen.Generator.G_URI);
Context.Set_ELContext (ELContext'Unchecked_Access);
Generator.Set_Context (Context'Unchecked_Access);
NS_Mapper.Set_Function_Mapper (ELContext.Get_Function_Mapper.all'Access);
ELContext.Set_Function_Mapper (NS_Mapper'Unchecked_Access);
Process (ELContext);
end Evaluate;
-- ------------------------------
-- Apply the patch instruction
-- ------------------------------
procedure Patch_File (Generator : in out Gen.Generator.Handler;
Info : in Patch) is
procedure Save_Output (H : in out Gen.Generator.Handler;
File : in String;
Content : in UString);
procedure Save_Output (H : in out Gen.Generator.Handler;
File : in String;
Content : in UString) is
type State is (MATCH_AFTER, MATCH_BEFORE, MATCH_DONE, MATCH_FAIL);
procedure Process (Line : in String);
procedure Expand (Context : in EL.Contexts.ELContext'Class);
Output_Dir : constant String := H.Get_Result_Directory;
Path : constant String := Util.Files.Compose (Output_Dir, File);
Tmp_File : constant String := Path & ".tmp";
Line_Number : Natural := 0;
After_Pos : Natural := 1;
Current_State : State := MATCH_AFTER;
Tmp_Output : aliased Util.Streams.Files.File_Stream;
Output : Util.Streams.Texts.Print_Stream;
Missing : Util.Strings.Vectors.Vector;
After : Util.Strings.Vectors.Vector;
Before : UString;
procedure Process (Line : in String) is
begin
Line_Number := Line_Number + 1;
case Current_State is
when MATCH_AFTER =>
if Match_Line (Line, After.Element (After_Pos)) then
Log.Info ("Match after at line {0}", Natural'Image (Line_Number));
After_Pos := After_Pos + 1;
if After_Pos > Natural (After.Length) then
Current_State := MATCH_BEFORE;
end if;
end if;
when MATCH_BEFORE =>
if Match_Missing (Line, Missing) then
Log.Info ("Match missing at line {0}", Natural'Image (Line_Number));
Current_State := MATCH_FAIL;
elsif Match_Line (Line, To_String (Before)) then
if Length (Info.Title) > 0 then
H.Info ("Patching file {0} at line {1}: {2}",
Path, Natural'Image (Line_Number), To_String (Info.Title));
else
H.Info ("Patching file {0} at line {1}", Path, Natural'Image (Line_Number));
end if;
Log.Info ("Add content {0}", Content);
Output.Write (Content);
Current_State := MATCH_DONE;
end if;
when MATCH_DONE | MATCH_FAIL =>
null;
end case;
Output.Write (Line);
Output.Write (ASCII.LF);
end Process;
-- ------------------------------
-- Expand the patterns.
-- ------------------------------
procedure Expand (Context : in EL.Contexts.ELContext'Class) is
begin
Expand (Info.Missing, Missing, Context);
Expand (Info.After, After, Context);
Before := To_UString (EL.Utils.Eval (To_String (Info.Before), Context));
end Expand;
begin
Evaluate (Generator, Expand'Access);
Tmp_Output.Create (Name => Tmp_File, Mode => Ada.Streams.Stream_IO.Out_File);
Output.Initialize (Tmp_Output'Unchecked_Access);
-- If the after pattern list is empty, start the missing/before check.
if After.Is_Empty then
Current_State := MATCH_BEFORE;
end if;
-- Read the file line by line and check the after/missing/before patterns.
Util.Files.Read_File (Path, Process'Access);
Output.Close;
if Current_State /= MATCH_DONE then
if not Info.Optional then
if Length (Info.Title) > 0 then
H.Error ("Patch {0} on {1} failed", To_String (Info.Title), Path);
else
H.Error ("Patch {0} failed", Path);
end if;
end if;
Ada.Directories.Delete_File (Tmp_File);
else
Ada.Directories.Delete_File (Path);
Ada.Directories.Rename (Old_Name => Tmp_File,
New_Name => Path);
end if;
exception
when Ada.IO_Exceptions.Name_Error =>
H.Error ("Cannot patch file {0}", Path);
end Save_Output;
begin
Gen.Generator.Generate (Generator, Gen.Artifacts.ITERATION_TABLE,
To_String (Info.Template), Save_Output'Access);
end Patch_File;
-- ------------------------------
-- Execute the command with the arguments.
-- ------------------------------
overriding
procedure Execute (Cmd : in out Command;
Name : in String;
Args : in Argument_List'Class;
Generator : in out Gen.Generator.Handler) is
pragma Unreferenced (Name, Args);
function Get_Output_Dir return String;
procedure Expand_Arguments (Context : in EL.Contexts.ELContext'Class);
PARAM_ERROR : exception;
function Get_Output_Dir return String is
Dir : constant String := Generator.Get_Result_Directory;
begin
if Length (Cmd.Base_Dir) = 0 then
return Dir;
else
return Util.Files.Compose (Dir, To_String (Cmd.Base_Dir));
end if;
end Get_Output_Dir;
-- ------------------------------
-- Expand the command line arguments and setup the template global variables
-- before processing the template expansion. The parameters are evaluated in
-- the order defined in the XML file. By setting a global variable with Set_Global
-- the context is changed and the new variable is made available for further evaluations.
-- ------------------------------
procedure Expand_Arguments (Context : in EL.Contexts.ELContext'Class) is
Iter : Param_Vectors.Cursor := Cmd.Params.First;
begin
while Param_Vectors.Has_Element (Iter) loop
declare
P : constant Param := Param_Vectors.Element (Iter);
Value : constant String := Get_Argument;
Result : Util.Beans.Objects.Object;
begin
if P.Value /= Null_Unbounded_String then
Result := EL.Utils.Eval (To_String (P.Value), Context);
elsif not P.Is_Optional and Value'Length = 0 then
Generator.Error ("Missing argument for {0}", To_String (P.Argument));
raise PARAM_ERROR;
elsif Value'Length /= 0 then
Result := Util.Beans.Objects.To_Object (Value);
end if;
if not P.Is_Optional and not Util.Beans.Objects.Is_Null (Result) then
Generator.Set_Global (To_String (P.Name), Result);
end if;
end;
Param_Vectors.Next (Iter);
end loop;
end Expand_Arguments;
Out_Dir : constant String := Get_Output_Dir;
begin
Generator.Read_Project ("dynamo.xml", False);
Evaluate (Generator, Expand_Arguments'Access);
Generator.Set_Force_Save (False);
Generator.Set_Result_Directory (Out_Dir);
declare
Iter : Util.Strings.Sets.Cursor := Cmd.Templates.First;
begin
while Util.Strings.Sets.Has_Element (Iter) loop
Gen.Generator.Generate (Generator, Gen.Artifacts.ITERATION_TABLE,
Util.Strings.Sets.Element (Iter),
Gen.Generator.Save_Content'Access);
Util.Strings.Sets.Next (Iter);
end loop;
end;
-- Apply the patch instructions defined for the command.
declare
Iter : Patch_Vectors.Cursor := Cmd.Patches.First;
begin
while Patch_Vectors.Has_Element (Iter) loop
Patch_File (Generator, Patch_Vectors.Element (Iter));
Patch_Vectors.Next (Iter);
end loop;
end;
exception
when PARAM_ERROR =>
return;
end Execute;
-- ------------------------------
-- Write the help associated with the command.
-- ------------------------------
overriding
procedure Help (Cmd : in out Command;
Name : in String;
Generator : in out Gen.Generator.Handler) is
pragma Unreferenced (Generator);
use Ada.Text_IO;
begin
Put_Line (Name & ": " & To_String (Cmd.Title));
Put_Line ("Usage: " & To_String (Cmd.Usage));
New_Line;
Put_Line (To_String (Cmd.Help_Msg));
end Help;
type Command_Fields is (FIELD_NAME,
FIELD_HELP,
FIELD_USAGE,
FIELD_TITLE,
FIELD_BASEDIR,
FIELD_PARAM,
FIELD_PARAM_NAME,
FIELD_PARAM_OPTIONAL,
FIELD_PARAM_ARG,
FIELD_PATCH_OPTIONAL,
FIELD_PATCH_TITLE,
FIELD_TEMPLATE,
FIELD_PATCH,
FIELD_AFTER,
FIELD_MISSING,
FIELD_BEFORE,
FIELD_INSERT_TEMPLATE,
FIELD_COMMAND);
type Command_Loader is record
Command : Command_Access := null;
P : Param;
Info : Patch;
end record;
type Command_Loader_Access is access all Command_Loader;
procedure Set_Member (Closure : in out Command_Loader;
Field : in Command_Fields;
Value : in Util.Beans.Objects.Object);
function To_String (Value : in Util.Beans.Objects.Object) return UString;
-- ------------------------------
-- Convert the object value into a string and trim any space/tab/newlines.
-- ------------------------------
function To_String (Value : in Util.Beans.Objects.Object) return UString is
Result : constant String := Util.Beans.Objects.To_String (Value);
First_Pos : Natural := Result'First;
Last_Pos : Natural := Result'Last;
C : Character;
begin
while First_Pos <= Last_Pos loop
C := Result (First_Pos);
exit when C /= ' ' and C /= ASCII.LF and C /= ASCII.CR and C /= ASCII.HT;
First_Pos := First_Pos + 1;
end loop;
while Last_Pos >= First_Pos loop
C := Result (Last_Pos);
exit when C /= ' ' and C /= ASCII.LF and C /= ASCII.CR and C /= ASCII.HT;
Last_Pos := Last_Pos - 1;
end loop;
return To_UString (Result (First_Pos .. Last_Pos));
end To_String;
procedure Set_Member (Closure : in out Command_Loader;
Field : in Command_Fields;
Value : in Util.Beans.Objects.Object) is
use Util.Beans.Objects;
begin
if Field = FIELD_COMMAND then
if Closure.Command /= null then
Log.Info ("Adding command {0}", Closure.Command.Name);
Driver.Add_Command (Name => To_String (Closure.Command.Name),
Command => Closure.Command.all'Access);
Closure.Command := null;
end if;
else
if Closure.Command = null then
Closure.Command := new Gen.Commands.Templates.Command;
end if;
case Field is
when FIELD_NAME =>
Closure.Command.Name := To_String (Value);
when FIELD_TITLE =>
Closure.Command.Title := To_String (Value);
when FIELD_USAGE =>
Closure.Command.Usage := To_String (Value);
when FIELD_HELP =>
Closure.Command.Help_Msg := To_String (Value);
when FIELD_TEMPLATE =>
Closure.Command.Templates.Include (To_String (Value));
when FIELD_PARAM_NAME =>
Closure.P.Name := To_String (Value);
when FIELD_PARAM_OPTIONAL =>
Closure.P.Is_Optional := To_Boolean (Value);
when FIELD_PARAM_ARG =>
Closure.P.Argument := To_String (Value);
when FIELD_PARAM =>
Closure.P.Value := To_String (Value);
Closure.Command.Params.Append (Closure.P);
Closure.P.Name := Ada.Strings.Unbounded.Null_Unbounded_String;
Closure.P.Argument := Ada.Strings.Unbounded.Null_Unbounded_String;
Closure.P.Value := Ada.Strings.Unbounded.Null_Unbounded_String;
Closure.P.Is_Optional := False;
when FIELD_BASEDIR =>
Closure.Command.Base_Dir := To_String (Value);
when FIELD_COMMAND =>
null;
when FIELD_PATCH_OPTIONAL =>
Closure.Info.Optional := Util.Beans.Objects.To_Boolean (Value);
when FIELD_INSERT_TEMPLATE =>
Closure.Info.Template := To_String (Value);
when FIELD_MISSING =>
Closure.Info.Missing.Append (To_String (Value));
when FIELD_AFTER =>
Closure.Info.After.Append (To_String (Value));
when FIELD_BEFORE =>
Closure.Info.Before := To_String (Value);
when FIELD_PATCH_TITLE =>
Closure.Info.Title := To_String (Value);
when FIELD_PATCH =>
Closure.Command.Patches.Append (Closure.Info);
Closure.Info.After.Clear;
Closure.Info.Missing.Clear;
Closure.Info.Optional := False;
Closure.Info.Before := To_UString ("");
Closure.Info.Title := To_UString ("");
end case;
end if;
end Set_Member;
package Command_Mapper is
new Util.Serialize.Mappers.Record_Mapper (Element_Type => Command_Loader,
Element_Type_Access => Command_Loader_Access,
Fields => Command_Fields,
Set_Member => Set_Member);
Cmd_Mapper : aliased Command_Mapper.Mapper;
-- ------------------------------
-- Read the template commands defined in dynamo configuration directory.
-- ------------------------------
procedure Read_Commands (Generator : in out Gen.Generator.Handler) is
procedure Read_Command (Name : in String;
File_Path : in String;
Done : out Boolean);
-- ------------------------------
-- Read the XML command file.
-- ------------------------------
procedure Read_Command (Name : in String;
File_Path : in String;
Done : out Boolean) is
pragma Unreferenced (Name);
Loader : aliased Command_Loader;
Reader : Util.Serialize.IO.XML.Parser;
Mapper : Util.Serialize.Mappers.Processing;
begin
Log.Info ("Reading command file '{0}'", File_Path);
Done := False;
-- Create the mapping to load the XML command file.
Mapper.Add_Mapping ("commands", Cmd_Mapper'Access);
-- Set the context for Set_Member.
Command_Mapper.Set_Context (Mapper, Loader'Unchecked_Access);
-- Read the XML command file.
Reader.Parse (File_Path, Mapper);
exception
when Ada.IO_Exceptions.Name_Error =>
Generator.Error ("Command file {0} does not exist", File_Path);
end Read_Command;
Config_Dir : constant String := Generator.Get_Config_Directory;
Cmd_Dir : constant String := Generator.Get_Parameter ("generator.commands.dir");
Path : constant String := Util.Files.Compose (Config_Dir, Cmd_Dir);
begin
Log.Debug ("Checking commands in {0}", Path);
if Ada.Directories.Exists (Path) then
Util.Files.Iterate_Files_Path (Path => Path,
Pattern => "*.xml",
Process => Read_Command'Access);
end if;
end Read_Commands;
begin
-- Setup the mapper to load XML commands.
Cmd_Mapper.Add_Mapping ("command/name", FIELD_NAME);
Cmd_Mapper.Add_Mapping ("command/title", FIELD_TITLE);
Cmd_Mapper.Add_Mapping ("command/usage", FIELD_USAGE);
Cmd_Mapper.Add_Mapping ("command/help", FIELD_HELP);
Cmd_Mapper.Add_Mapping ("command/basedir", FIELD_BASEDIR);
Cmd_Mapper.Add_Mapping ("command/param", FIELD_PARAM);
Cmd_Mapper.Add_Mapping ("command/param/@name", FIELD_PARAM_NAME);
Cmd_Mapper.Add_Mapping ("command/param/@optional", FIELD_PARAM_OPTIONAL);
Cmd_Mapper.Add_Mapping ("command/param/@arg", FIELD_PARAM_ARG);
Cmd_Mapper.Add_Mapping ("command/patch/@optional", FIELD_PATCH_OPTIONAL);
Cmd_Mapper.Add_Mapping ("command/patch/template", FIELD_INSERT_TEMPLATE);
Cmd_Mapper.Add_Mapping ("command/patch/missing", FIELD_MISSING);
Cmd_Mapper.Add_Mapping ("command/patch/after", FIELD_AFTER);
Cmd_Mapper.Add_Mapping ("command/patch/before", FIELD_BEFORE);
Cmd_Mapper.Add_Mapping ("command/patch/title", FIELD_PATCH_TITLE);
Cmd_Mapper.Add_Mapping ("command/template", FIELD_TEMPLATE);
Cmd_Mapper.Add_Mapping ("command/patch", FIELD_PATCH);
Cmd_Mapper.Add_Mapping ("command", FIELD_COMMAND);
end Gen.Commands.Templates;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . S E C U R E _ H A S H E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2009-2016, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides common supporting code for a family of secure
-- hash functions (including MD5 and the FIPS PUB 180-3 functions SHA-1,
-- SHA-224, SHA-256, SHA-384 and SHA-512).
-- This is an internal unit and should be not used directly in applications.
-- Use GNAT.MD5 and GNAT.SHA* instead.
with Ada.Streams; use Ada.Streams;
with Interfaces;
with System;
package GNAT.Secure_Hashes is
type Buffer_Type is new String;
for Buffer_Type'Alignment use 8;
-- Secure hash functions use a string buffer that is also accessed as an
-- array of words, which may require up to 64 bit alignment.
-- The function-independent part of processing state: A buffer of data
-- being accumulated until a complete block is ready for hashing.
type Message_State (Block_Length : Natural) is record
Last : Natural := 0;
-- Index of last used element in Buffer
Length : Interfaces.Unsigned_64 := 0;
-- Total length of processed data
Buffer : Buffer_Type (1 .. Block_Length);
-- Data buffer
end record;
-- The function-specific part of processing state:
-- Each hash function maintains an internal state as an array of words,
-- which is ultimately converted to a stream representation with the
-- appropriate bit order.
generic
type Word is mod <>;
-- Either 32 or 64 bits
with procedure Swap (X : System.Address);
-- Byte swapping function for a Word at X
Hash_Bit_Order : System.Bit_Order;
-- Bit order of the produced hash
package Hash_Function_State is
type State is array (Natural range <>) of Word;
-- Used to store a hash function's internal state
procedure To_Hash
(H : State;
H_Bits : out Stream_Element_Array);
-- Convert H to stream representation with the given bit order. If
-- H_Bits is smaller than the internal hash state, then the state
-- is truncated.
end Hash_Function_State;
-- Generic hashing framework: The user interface for each implemented
-- secure hash function is an instance of this generic package.
generic
Block_Words : Natural;
-- Number of words in each block
State_Words : Natural;
-- Number of words in internal state
Hash_Words : Natural;
-- Number of words in the final hash (must be no greater than
-- State_Words).
Hash_Bit_Order : System.Bit_Order;
-- Bit order used for conversion between bit representation and word
-- representation.
with package Hash_State is new Hash_Function_State (<>);
-- Hash function state package
Initial_State : Hash_State.State;
-- Initial value of the hash function state
with procedure Transform
(H : in out Hash_State.State;
M : in out Message_State);
-- Transformation function updating H by processing a complete data
-- block from M.
package H is
-- The visible part of H is the interface to secure hashing functions
-- that is exposed to user applications, and is intended to remain
-- a stable interface.
pragma Assert (Hash_Words <= State_Words);
type Context is private;
-- The internal processing state of the hashing function
function "=" (L, R : Context) return Boolean is abstract;
-- Context is the internal, implementation defined intermediate state
-- in a hash computation, and no specific semantics can be expected on
-- equality of context values. Only equality of final hash values (as
-- returned by the [Wide_]Digest functions below) is meaningful.
Initial_Context : constant Context;
-- Initial value of a Context object. May be used to reinitialize
-- a Context value by simple assignment of this value to the object.
function HMAC_Initial_Context (Key : String) return Context;
-- Initial Context for HMAC computation with the given Key
procedure Update (C : in out Context; Input : String);
procedure Wide_Update (C : in out Context; Input : Wide_String);
procedure Update
(C : in out Context;
Input : Stream_Element_Array);
-- Update C to process the given input. Successive calls to Update are
-- equivalent to a single call with the concatenation of the inputs. For
-- the Wide_String version, each Wide_Character is processed low order
-- byte first.
Word_Length : constant Natural := Hash_State.Word'Size / 8;
Hash_Length : constant Natural := Hash_Words * Word_Length;
subtype Binary_Message_Digest is
Stream_Element_Array (1 .. Stream_Element_Offset (Hash_Length));
-- The fixed-length byte array returned by Digest, providing
-- the hash in binary representation.
function Digest (C : Context) return Binary_Message_Digest;
-- Return hash or HMAC for the data accumulated with C
function Digest (S : String) return Binary_Message_Digest;
function Wide_Digest (W : Wide_String) return Binary_Message_Digest;
function Digest
(A : Stream_Element_Array) return Binary_Message_Digest;
-- These functions are equivalent to the corresponding Update (or
-- Wide_Update) on a default initialized Context, followed by Digest
-- on the resulting Context.
subtype Message_Digest is String (1 .. 2 * Hash_Length);
-- The fixed-length string returned by Digest, providing the hash in
-- hexadecimal representation.
function Digest (C : Context) return Message_Digest;
-- Return hash or HMAC for the data accumulated with C in hexadecimal
-- representation.
function Digest (S : String) return Message_Digest;
function Wide_Digest (W : Wide_String) return Message_Digest;
function Digest (A : Stream_Element_Array) return Message_Digest;
-- These functions are equivalent to the corresponding Update (or
-- Wide_Update) on a default initialized Context, followed by Digest
-- on the resulting Context.
type Hash_Stream (C : access Context) is
new Root_Stream_Type with private;
-- Stream wrapper converting Write calls to Update calls on C.
-- Arbitrary data structures can thus be conveniently hashed using
-- their stream attributes.
private
Block_Length : constant Natural := Block_Words * Word_Length;
-- Length in bytes of a data block
subtype Key_Length is
Stream_Element_Offset range 0 .. Stream_Element_Offset (Block_Length);
-- KL is 0 for a normal hash context, > 0 for HMAC
type Context (KL : Key_Length := 0) is record
Key : Stream_Element_Array (1 .. KL);
-- HMAC key
H_State : Hash_State.State (0 .. State_Words - 1) := Initial_State;
-- Function-specific state
M_State : Message_State (Block_Length);
-- Function-independent state (block buffer)
end record;
Initial_Context : constant Context (KL => 0) := (others => <>);
-- Initial values are provided by default initialization of Context
type Hash_Stream (C : access Context) is
new Root_Stream_Type with null record;
procedure Read
(Stream : in out Hash_Stream;
Item : out Stream_Element_Array;
Last : out Stream_Element_Offset);
-- Raise Program_Error: hash streams are write-only
procedure Write
(Stream : in out Hash_Stream;
Item : Stream_Element_Array);
-- Call Update
end H;
end GNAT.Secure_Hashes;
|
with Ada.Finalization;
with Ada.Streams;
with Google.Protobuf.Any;
with Google.Protobuf.Duration;
with Google.Protobuf.Field_Mask;
with Google.Protobuf.Struct;
with Google.Protobuf.Timestamp;
with Google.Protobuf.Wrappers;
with Interfaces;
with League.Stream_Element_Vectors;
with League.String_Vectors;
with League.Strings;
with PB_Support.Boolean_Vectors;
with PB_Support.IEEE_Float_32_Vectors;
with PB_Support.IEEE_Float_64_Vectors;
with PB_Support.Integer_32_Vectors;
with PB_Support.Integer_64_Vectors;
with PB_Support.Stream_Element_Vector_Vectors;
with PB_Support.Unsigned_32_Vectors;
with PB_Support.Unsigned_64_Vectors;
with PB_Support.Vectors;
package Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3 is
type Foreign_Enum is (FOREIGN_FOO, FOREIGN_BAR, FOREIGN_BAZ);
for Foreign_Enum use (FOREIGN_FOO => 0, FOREIGN_BAR => 1, FOREIGN_BAZ => 2);
package Foreign_Enum_Vectors is new PB_Support.Vectors (Foreign_Enum);
type Nested_Enum is (NEG, FOO, BAR, BAZ);
for Nested_Enum use (NEG => - 1, FOO => 0, BAR => 1, BAZ => 2);
package Nested_Enum_Vectors is new PB_Support.Vectors (Nested_Enum);
type Aliased_Enum is (ALIAS_FOO, ALIAS_BAR, ALIAS_BAZ);
for Aliased_Enum use (ALIAS_FOO => 0, ALIAS_BAR => 1, ALIAS_BAZ => 2);
function QUX return Aliased_Enum is (ALIAS_BAZ);
function bAz return Aliased_Enum is (QUX);
package Aliased_Enum_Vectors is new PB_Support.Vectors (Aliased_Enum);
type Test_All_Types_Proto_3_Vector is tagged private
with Variable_Indexing => Get_Test_All_Types_Proto_3_Variable_Reference,
Constant_Indexing => Get_Test_All_Types_Proto_3_Constant_Reference;
type Nested_Message_Vector is tagged private
with Variable_Indexing => Get_Nested_Message_Variable_Reference,
Constant_Indexing => Get_Nested_Message_Constant_Reference;
type Map_Int_32Int_32Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Int_32Int_32Entry_Variable_Reference,
Constant_Indexing => Get_Map_Int_32Int_32Entry_Constant_Reference;
type Map_Int_64Int_64Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Int_64Int_64Entry_Variable_Reference,
Constant_Indexing => Get_Map_Int_64Int_64Entry_Constant_Reference;
type Map_Uint_32Uint_32Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Uint_32Uint_32Entry_Variable_Reference,
Constant_Indexing => Get_Map_Uint_32Uint_32Entry_Constant_Reference;
type Map_Uint_64Uint_64Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Uint_64Uint_64Entry_Variable_Reference,
Constant_Indexing => Get_Map_Uint_64Uint_64Entry_Constant_Reference;
type Map_Sint_32Sint_32Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Sint_32Sint_32Entry_Variable_Reference,
Constant_Indexing => Get_Map_Sint_32Sint_32Entry_Constant_Reference;
type Map_Sint_64Sint_64Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Sint_64Sint_64Entry_Variable_Reference,
Constant_Indexing => Get_Map_Sint_64Sint_64Entry_Constant_Reference;
type Map_Fixed_32Fixed_32Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_Fixed_32Fixed_32Entry_Variable_Reference,
Constant_Indexing => Get_Map_Fixed_32Fixed_32Entry_Constant_Reference;
type Map_Fixed_64Fixed_64Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_Fixed_64Fixed_64Entry_Variable_Reference,
Constant_Indexing => Get_Map_Fixed_64Fixed_64Entry_Constant_Reference;
type Map_Sfixed_32Sfixed_32Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_Sfixed_32Sfixed_32Entry_Variable_Reference,
Constant_Indexing => Get_Map_Sfixed_32Sfixed_32Entry_Constant_Reference;
type Map_Sfixed_64Sfixed_64Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_Sfixed_64Sfixed_64Entry_Variable_Reference,
Constant_Indexing => Get_Map_Sfixed_64Sfixed_64Entry_Constant_Reference;
type Map_Int_32Float_Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Int_32Float_Entry_Variable_Reference,
Constant_Indexing => Get_Map_Int_32Float_Entry_Constant_Reference;
type Map_Int_32Double_Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Int_32Double_Entry_Variable_Reference,
Constant_Indexing => Get_Map_Int_32Double_Entry_Constant_Reference;
type Map_Bool_Bool_Entry_Vector is tagged private
with Variable_Indexing => Get_Map_Bool_Bool_Entry_Variable_Reference,
Constant_Indexing => Get_Map_Bool_Bool_Entry_Constant_Reference;
type Map_String_String_Entry_Vector is tagged private
with Variable_Indexing => Get_Map_String_String_Entry_Variable_Reference,
Constant_Indexing => Get_Map_String_String_Entry_Constant_Reference;
type Map_String_Bytes_Entry_Vector is tagged private
with Variable_Indexing => Get_Map_String_Bytes_Entry_Variable_Reference,
Constant_Indexing => Get_Map_String_Bytes_Entry_Constant_Reference;
type Map_String_Nested_Message_Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_String_Nested_Message_Entry_Variable_Reference,
Constant_Indexing =>
Get_Map_String_Nested_Message_Entry_Constant_Reference;
type Map_String_Foreign_Message_Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_String_Foreign_Message_Entry_Variable_Reference,
Constant_Indexing =>
Get_Map_String_Foreign_Message_Entry_Constant_Reference;
type Map_String_Nested_Enum_Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_String_Nested_Enum_Entry_Variable_Reference,
Constant_Indexing => Get_Map_String_Nested_Enum_Entry_Constant_Reference;
type Map_String_Foreign_Enum_Entry_Vector is tagged private
with Variable_Indexing =>
Get_Map_String_Foreign_Enum_Entry_Variable_Reference,
Constant_Indexing => Get_Map_String_Foreign_Enum_Entry_Constant_Reference;
type Foreign_Message_Vector is tagged private
with Variable_Indexing => Get_Foreign_Message_Variable_Reference,
Constant_Indexing => Get_Foreign_Message_Constant_Reference;
type Map_Int_32Int_32Entry is
record
Key : Interfaces.Integer_32 := 0;
Value : Interfaces.Integer_32 := 0;
end record;
type Optional_Map_Int_32Int_32Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Int_32Int_32Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Int_32Int_32Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Int_32Int_32Entry_Vector);
procedure Append
(Self : in out Map_Int_32Int_32Entry_Vector;
V : Map_Int_32Int_32Entry);
type Map_Int_32Int_32Entry_Variable_Reference
(Element : not null access Map_Int_32Int_32Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_32Int_32Entry_Variable_Reference
(Self : aliased in out Map_Int_32Int_32Entry_Vector;
Index : Positive)
return Map_Int_32Int_32Entry_Variable_Reference
with Inline;
type Map_Int_32Int_32Entry_Constant_Reference
(Element : not null access constant Map_Int_32Int_32Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_32Int_32Entry_Constant_Reference
(Self : aliased Map_Int_32Int_32Entry_Vector;
Index : Positive)
return Map_Int_32Int_32Entry_Constant_Reference
with Inline;
type Map_Int_64Int_64Entry is
record
Key : Interfaces.Integer_64 := 0;
Value : Interfaces.Integer_64 := 0;
end record;
type Optional_Map_Int_64Int_64Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Int_64Int_64Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Int_64Int_64Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Int_64Int_64Entry_Vector);
procedure Append
(Self : in out Map_Int_64Int_64Entry_Vector;
V : Map_Int_64Int_64Entry);
type Map_Int_64Int_64Entry_Variable_Reference
(Element : not null access Map_Int_64Int_64Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_64Int_64Entry_Variable_Reference
(Self : aliased in out Map_Int_64Int_64Entry_Vector;
Index : Positive)
return Map_Int_64Int_64Entry_Variable_Reference
with Inline;
type Map_Int_64Int_64Entry_Constant_Reference
(Element : not null access constant Map_Int_64Int_64Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_64Int_64Entry_Constant_Reference
(Self : aliased Map_Int_64Int_64Entry_Vector;
Index : Positive)
return Map_Int_64Int_64Entry_Constant_Reference
with Inline;
type Map_Uint_32Uint_32Entry is
record
Key : Interfaces.Unsigned_32 := 0;
Value : Interfaces.Unsigned_32 := 0;
end record;
type Optional_Map_Uint_32Uint_32Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Uint_32Uint_32Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Uint_32Uint_32Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Uint_32Uint_32Entry_Vector);
procedure Append
(Self : in out Map_Uint_32Uint_32Entry_Vector;
V : Map_Uint_32Uint_32Entry);
type Map_Uint_32Uint_32Entry_Variable_Reference
(Element : not null access Map_Uint_32Uint_32Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Uint_32Uint_32Entry_Variable_Reference
(Self : aliased in out Map_Uint_32Uint_32Entry_Vector;
Index : Positive)
return Map_Uint_32Uint_32Entry_Variable_Reference
with Inline;
type Map_Uint_32Uint_32Entry_Constant_Reference
(Element : not null access constant Map_Uint_32Uint_32Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Uint_32Uint_32Entry_Constant_Reference
(Self : aliased Map_Uint_32Uint_32Entry_Vector;
Index : Positive)
return Map_Uint_32Uint_32Entry_Constant_Reference
with Inline;
type Map_Uint_64Uint_64Entry is
record
Key : Interfaces.Unsigned_64 := 0;
Value : Interfaces.Unsigned_64 := 0;
end record;
type Optional_Map_Uint_64Uint_64Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Uint_64Uint_64Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Uint_64Uint_64Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Uint_64Uint_64Entry_Vector);
procedure Append
(Self : in out Map_Uint_64Uint_64Entry_Vector;
V : Map_Uint_64Uint_64Entry);
type Map_Uint_64Uint_64Entry_Variable_Reference
(Element : not null access Map_Uint_64Uint_64Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Uint_64Uint_64Entry_Variable_Reference
(Self : aliased in out Map_Uint_64Uint_64Entry_Vector;
Index : Positive)
return Map_Uint_64Uint_64Entry_Variable_Reference
with Inline;
type Map_Uint_64Uint_64Entry_Constant_Reference
(Element : not null access constant Map_Uint_64Uint_64Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Uint_64Uint_64Entry_Constant_Reference
(Self : aliased Map_Uint_64Uint_64Entry_Vector;
Index : Positive)
return Map_Uint_64Uint_64Entry_Constant_Reference
with Inline;
type Map_Sint_32Sint_32Entry is
record
Key : Interfaces.Integer_32 := 0;
Value : Interfaces.Integer_32 := 0;
end record;
type Optional_Map_Sint_32Sint_32Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Sint_32Sint_32Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Sint_32Sint_32Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Sint_32Sint_32Entry_Vector);
procedure Append
(Self : in out Map_Sint_32Sint_32Entry_Vector;
V : Map_Sint_32Sint_32Entry);
type Map_Sint_32Sint_32Entry_Variable_Reference
(Element : not null access Map_Sint_32Sint_32Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sint_32Sint_32Entry_Variable_Reference
(Self : aliased in out Map_Sint_32Sint_32Entry_Vector;
Index : Positive)
return Map_Sint_32Sint_32Entry_Variable_Reference
with Inline;
type Map_Sint_32Sint_32Entry_Constant_Reference
(Element : not null access constant Map_Sint_32Sint_32Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sint_32Sint_32Entry_Constant_Reference
(Self : aliased Map_Sint_32Sint_32Entry_Vector;
Index : Positive)
return Map_Sint_32Sint_32Entry_Constant_Reference
with Inline;
type Map_Sint_64Sint_64Entry is
record
Key : Interfaces.Integer_64 := 0;
Value : Interfaces.Integer_64 := 0;
end record;
type Optional_Map_Sint_64Sint_64Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Sint_64Sint_64Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Sint_64Sint_64Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Sint_64Sint_64Entry_Vector);
procedure Append
(Self : in out Map_Sint_64Sint_64Entry_Vector;
V : Map_Sint_64Sint_64Entry);
type Map_Sint_64Sint_64Entry_Variable_Reference
(Element : not null access Map_Sint_64Sint_64Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sint_64Sint_64Entry_Variable_Reference
(Self : aliased in out Map_Sint_64Sint_64Entry_Vector;
Index : Positive)
return Map_Sint_64Sint_64Entry_Variable_Reference
with Inline;
type Map_Sint_64Sint_64Entry_Constant_Reference
(Element : not null access constant Map_Sint_64Sint_64Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sint_64Sint_64Entry_Constant_Reference
(Self : aliased Map_Sint_64Sint_64Entry_Vector;
Index : Positive)
return Map_Sint_64Sint_64Entry_Constant_Reference
with Inline;
type Map_Fixed_32Fixed_32Entry is
record
Key : Interfaces.Unsigned_32 := 0;
Value : Interfaces.Unsigned_32 := 0;
end record;
type Optional_Map_Fixed_32Fixed_32Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Fixed_32Fixed_32Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Fixed_32Fixed_32Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Fixed_32Fixed_32Entry_Vector);
procedure Append
(Self : in out Map_Fixed_32Fixed_32Entry_Vector;
V : Map_Fixed_32Fixed_32Entry);
type Map_Fixed_32Fixed_32Entry_Variable_Reference
(Element : not null access Map_Fixed_32Fixed_32Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Fixed_32Fixed_32Entry_Variable_Reference
(Self : aliased in out Map_Fixed_32Fixed_32Entry_Vector;
Index : Positive)
return Map_Fixed_32Fixed_32Entry_Variable_Reference
with Inline;
type Map_Fixed_32Fixed_32Entry_Constant_Reference
(Element : not null access constant Map_Fixed_32Fixed_32Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Fixed_32Fixed_32Entry_Constant_Reference
(Self : aliased Map_Fixed_32Fixed_32Entry_Vector;
Index : Positive)
return Map_Fixed_32Fixed_32Entry_Constant_Reference
with Inline;
type Map_Fixed_64Fixed_64Entry is
record
Key : Interfaces.Unsigned_64 := 0;
Value : Interfaces.Unsigned_64 := 0;
end record;
type Optional_Map_Fixed_64Fixed_64Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Fixed_64Fixed_64Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Fixed_64Fixed_64Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Fixed_64Fixed_64Entry_Vector);
procedure Append
(Self : in out Map_Fixed_64Fixed_64Entry_Vector;
V : Map_Fixed_64Fixed_64Entry);
type Map_Fixed_64Fixed_64Entry_Variable_Reference
(Element : not null access Map_Fixed_64Fixed_64Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Fixed_64Fixed_64Entry_Variable_Reference
(Self : aliased in out Map_Fixed_64Fixed_64Entry_Vector;
Index : Positive)
return Map_Fixed_64Fixed_64Entry_Variable_Reference
with Inline;
type Map_Fixed_64Fixed_64Entry_Constant_Reference
(Element : not null access constant Map_Fixed_64Fixed_64Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Fixed_64Fixed_64Entry_Constant_Reference
(Self : aliased Map_Fixed_64Fixed_64Entry_Vector;
Index : Positive)
return Map_Fixed_64Fixed_64Entry_Constant_Reference
with Inline;
type Map_Sfixed_32Sfixed_32Entry is
record
Key : Interfaces.Integer_32 := 0;
Value : Interfaces.Integer_32 := 0;
end record;
type Optional_Map_Sfixed_32Sfixed_32Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Sfixed_32Sfixed_32Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Sfixed_32Sfixed_32Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Sfixed_32Sfixed_32Entry_Vector);
procedure Append
(Self : in out Map_Sfixed_32Sfixed_32Entry_Vector;
V : Map_Sfixed_32Sfixed_32Entry);
type Map_Sfixed_32Sfixed_32Entry_Variable_Reference
(Element : not null access Map_Sfixed_32Sfixed_32Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sfixed_32Sfixed_32Entry_Variable_Reference
(Self : aliased in out Map_Sfixed_32Sfixed_32Entry_Vector;
Index : Positive)
return Map_Sfixed_32Sfixed_32Entry_Variable_Reference
with Inline;
type Map_Sfixed_32Sfixed_32Entry_Constant_Reference
(Element : not null access constant Map_Sfixed_32Sfixed_32Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sfixed_32Sfixed_32Entry_Constant_Reference
(Self : aliased Map_Sfixed_32Sfixed_32Entry_Vector;
Index : Positive)
return Map_Sfixed_32Sfixed_32Entry_Constant_Reference
with Inline;
type Map_Sfixed_64Sfixed_64Entry is
record
Key : Interfaces.Integer_64 := 0;
Value : Interfaces.Integer_64 := 0;
end record;
type Optional_Map_Sfixed_64Sfixed_64Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Sfixed_64Sfixed_64Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Sfixed_64Sfixed_64Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Sfixed_64Sfixed_64Entry_Vector);
procedure Append
(Self : in out Map_Sfixed_64Sfixed_64Entry_Vector;
V : Map_Sfixed_64Sfixed_64Entry);
type Map_Sfixed_64Sfixed_64Entry_Variable_Reference
(Element : not null access Map_Sfixed_64Sfixed_64Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sfixed_64Sfixed_64Entry_Variable_Reference
(Self : aliased in out Map_Sfixed_64Sfixed_64Entry_Vector;
Index : Positive)
return Map_Sfixed_64Sfixed_64Entry_Variable_Reference
with Inline;
type Map_Sfixed_64Sfixed_64Entry_Constant_Reference
(Element : not null access constant Map_Sfixed_64Sfixed_64Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Sfixed_64Sfixed_64Entry_Constant_Reference
(Self : aliased Map_Sfixed_64Sfixed_64Entry_Vector;
Index : Positive)
return Map_Sfixed_64Sfixed_64Entry_Constant_Reference
with Inline;
type Map_Int_32Float_Entry is
record
Key : Interfaces.Integer_32 := 0;
Value : Interfaces.IEEE_Float_32 := 0.0;
end record;
type Optional_Map_Int_32Float_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Int_32Float_Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Int_32Float_Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Int_32Float_Entry_Vector);
procedure Append
(Self : in out Map_Int_32Float_Entry_Vector;
V : Map_Int_32Float_Entry);
type Map_Int_32Float_Entry_Variable_Reference
(Element : not null access Map_Int_32Float_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_32Float_Entry_Variable_Reference
(Self : aliased in out Map_Int_32Float_Entry_Vector;
Index : Positive)
return Map_Int_32Float_Entry_Variable_Reference
with Inline;
type Map_Int_32Float_Entry_Constant_Reference
(Element : not null access constant Map_Int_32Float_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_32Float_Entry_Constant_Reference
(Self : aliased Map_Int_32Float_Entry_Vector;
Index : Positive)
return Map_Int_32Float_Entry_Constant_Reference
with Inline;
type Map_Int_32Double_Entry is
record
Key : Interfaces.Integer_32 := 0;
Value : Interfaces.IEEE_Float_64 := 0.0;
end record;
type Optional_Map_Int_32Double_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Int_32Double_Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Int_32Double_Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Int_32Double_Entry_Vector);
procedure Append
(Self : in out Map_Int_32Double_Entry_Vector;
V : Map_Int_32Double_Entry);
type Map_Int_32Double_Entry_Variable_Reference
(Element : not null access Map_Int_32Double_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_32Double_Entry_Variable_Reference
(Self : aliased in out Map_Int_32Double_Entry_Vector;
Index : Positive)
return Map_Int_32Double_Entry_Variable_Reference
with Inline;
type Map_Int_32Double_Entry_Constant_Reference
(Element : not null access constant Map_Int_32Double_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Int_32Double_Entry_Constant_Reference
(Self : aliased Map_Int_32Double_Entry_Vector;
Index : Positive)
return Map_Int_32Double_Entry_Constant_Reference
with Inline;
type Map_Bool_Bool_Entry is
record
Key : Boolean := False;
Value : Boolean := False;
end record;
type Optional_Map_Bool_Bool_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_Bool_Bool_Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_Bool_Bool_Entry_Vector) return Natural;
procedure Clear (Self : in out Map_Bool_Bool_Entry_Vector);
procedure Append
(Self : in out Map_Bool_Bool_Entry_Vector;
V : Map_Bool_Bool_Entry);
type Map_Bool_Bool_Entry_Variable_Reference
(Element : not null access Map_Bool_Bool_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Bool_Bool_Entry_Variable_Reference
(Self : aliased in out Map_Bool_Bool_Entry_Vector;
Index : Positive)
return Map_Bool_Bool_Entry_Variable_Reference
with Inline;
type Map_Bool_Bool_Entry_Constant_Reference
(Element : not null access constant Map_Bool_Bool_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_Bool_Bool_Entry_Constant_Reference
(Self : aliased Map_Bool_Bool_Entry_Vector;
Index : Positive)
return Map_Bool_Bool_Entry_Constant_Reference
with Inline;
type Map_String_String_Entry is
record
Key : League.Strings.Universal_String;
Value : League.Strings.Universal_String;
end record;
type Optional_Map_String_String_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_String_String_Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_String_String_Entry_Vector) return Natural;
procedure Clear (Self : in out Map_String_String_Entry_Vector);
procedure Append
(Self : in out Map_String_String_Entry_Vector;
V : Map_String_String_Entry);
type Map_String_String_Entry_Variable_Reference
(Element : not null access Map_String_String_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_String_Entry_Variable_Reference
(Self : aliased in out Map_String_String_Entry_Vector;
Index : Positive)
return Map_String_String_Entry_Variable_Reference
with Inline;
type Map_String_String_Entry_Constant_Reference
(Element : not null access constant Map_String_String_Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_String_Entry_Constant_Reference
(Self : aliased Map_String_String_Entry_Vector;
Index : Positive)
return Map_String_String_Entry_Constant_Reference
with Inline;
type Map_String_Bytes_Entry is
record
Key : League.Strings.Universal_String;
Value : League.Stream_Element_Vectors.Stream_Element_Vector;
end record;
type Optional_Map_String_Bytes_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_String_Bytes_Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_String_Bytes_Entry_Vector) return Natural;
procedure Clear (Self : in out Map_String_Bytes_Entry_Vector);
procedure Append
(Self : in out Map_String_Bytes_Entry_Vector;
V : Map_String_Bytes_Entry);
type Map_String_Bytes_Entry_Variable_Reference
(Element : not null access Map_String_Bytes_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Bytes_Entry_Variable_Reference
(Self : aliased in out Map_String_Bytes_Entry_Vector;
Index : Positive)
return Map_String_Bytes_Entry_Variable_Reference
with Inline;
type Map_String_Bytes_Entry_Constant_Reference
(Element : not null access constant Map_String_Bytes_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Bytes_Entry_Constant_Reference
(Self : aliased Map_String_Bytes_Entry_Vector;
Index : Positive)
return Map_String_Bytes_Entry_Constant_Reference
with Inline;
type Map_String_Nested_Enum_Entry is
record
Key : League.Strings.Universal_String;
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Nested_Enum :=
Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3.FOO;
end record;
type Optional_Map_String_Nested_Enum_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_String_Nested_Enum_Entry;
when False =>
null;
end case;
end record;
function Length (Self : Map_String_Nested_Enum_Entry_Vector) return Natural;
procedure Clear (Self : in out Map_String_Nested_Enum_Entry_Vector);
procedure Append
(Self : in out Map_String_Nested_Enum_Entry_Vector;
V : Map_String_Nested_Enum_Entry);
type Map_String_Nested_Enum_Entry_Variable_Reference
(Element : not null access Map_String_Nested_Enum_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Nested_Enum_Entry_Variable_Reference
(Self : aliased in out Map_String_Nested_Enum_Entry_Vector;
Index : Positive)
return Map_String_Nested_Enum_Entry_Variable_Reference
with Inline;
type Map_String_Nested_Enum_Entry_Constant_Reference
(Element : not null access constant Map_String_Nested_Enum_Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Nested_Enum_Entry_Constant_Reference
(Self : aliased Map_String_Nested_Enum_Entry_Vector;
Index : Positive)
return Map_String_Nested_Enum_Entry_Constant_Reference
with Inline;
type Map_String_Foreign_Enum_Entry is
record
Key : League.Strings.Universal_String;
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Foreign_Enum :=
Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3.FOREIGN_FOO;
end record;
type Optional_Map_String_Foreign_Enum_Entry (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_String_Foreign_Enum_Entry;
when False =>
null;
end case;
end record;
function Length
(Self : Map_String_Foreign_Enum_Entry_Vector)
return Natural;
procedure Clear (Self : in out Map_String_Foreign_Enum_Entry_Vector);
procedure Append
(Self : in out Map_String_Foreign_Enum_Entry_Vector;
V : Map_String_Foreign_Enum_Entry);
type Map_String_Foreign_Enum_Entry_Variable_Reference
(Element : not null access Map_String_Foreign_Enum_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Foreign_Enum_Entry_Variable_Reference
(Self : aliased in out Map_String_Foreign_Enum_Entry_Vector;
Index : Positive)
return Map_String_Foreign_Enum_Entry_Variable_Reference
with Inline;
type Map_String_Foreign_Enum_Entry_Constant_Reference
(Element : not null access constant Map_String_Foreign_Enum_Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Foreign_Enum_Entry_Constant_Reference
(Self : aliased Map_String_Foreign_Enum_Entry_Vector;
Index : Positive)
return Map_String_Foreign_Enum_Entry_Constant_Reference
with Inline;
type Foreign_Message is record C : Interfaces.Integer_32 := 0; end record;
type Optional_Foreign_Message (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Foreign_Message;
when False =>
null;
end case;
end record;
function Length (Self : Foreign_Message_Vector) return Natural;
procedure Clear (Self : in out Foreign_Message_Vector);
procedure Append
(Self : in out Foreign_Message_Vector;
V : Foreign_Message);
type Foreign_Message_Variable_Reference
(Element : not null access Foreign_Message) is null record
with Implicit_Dereference => Element;
not overriding function Get_Foreign_Message_Variable_Reference
(Self : aliased in out Foreign_Message_Vector;
Index : Positive)
return Foreign_Message_Variable_Reference
with Inline;
type Foreign_Message_Constant_Reference
(Element : not null access constant Foreign_Message) is null record
with Implicit_Dereference => Element;
not overriding function Get_Foreign_Message_Constant_Reference
(Self : aliased Foreign_Message_Vector;
Index : Positive)
return Foreign_Message_Constant_Reference
with Inline;
type Map_String_Foreign_Message_Entry is
record
Key : League.Strings.Universal_String;
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Optional_Foreign_Message;
end record;
type Optional_Map_String_Foreign_Message_Entry
(Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_String_Foreign_Message_Entry;
when False =>
null;
end case;
end record;
function Length
(Self : Map_String_Foreign_Message_Entry_Vector)
return Natural;
procedure Clear (Self : in out Map_String_Foreign_Message_Entry_Vector);
procedure Append
(Self : in out Map_String_Foreign_Message_Entry_Vector;
V : Map_String_Foreign_Message_Entry);
type Map_String_Foreign_Message_Entry_Variable_Reference
(Element : not null access Map_String_Foreign_Message_Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Foreign_Message_Entry_Variable_Reference
(Self : aliased in out Map_String_Foreign_Message_Entry_Vector;
Index : Positive)
return Map_String_Foreign_Message_Entry_Variable_Reference
with Inline;
type Map_String_Foreign_Message_Entry_Constant_Reference
(Element : not null access constant Map_String_Foreign_Message_Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Foreign_Message_Entry_Constant_Reference
(Self : aliased Map_String_Foreign_Message_Entry_Vector;
Index : Positive)
return Map_String_Foreign_Message_Entry_Constant_Reference
with Inline;
type Nested_Message is
record
A : Interfaces.Integer_32 := 0;
Corecursive : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Test_All_Types_Proto_3_Vector;
end record;
type Optional_Nested_Message (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Nested_Message;
when False =>
null;
end case;
end record;
function Length (Self : Nested_Message_Vector) return Natural;
procedure Clear (Self : in out Nested_Message_Vector);
procedure Append
(Self : in out Nested_Message_Vector;
V : Nested_Message);
type Nested_Message_Variable_Reference
(Element : not null access Nested_Message) is null record
with Implicit_Dereference => Element;
not overriding function Get_Nested_Message_Variable_Reference
(Self : aliased in out Nested_Message_Vector;
Index : Positive)
return Nested_Message_Variable_Reference
with Inline;
type Nested_Message_Constant_Reference
(Element : not null access constant Nested_Message) is null record
with Implicit_Dereference => Element;
not overriding function Get_Nested_Message_Constant_Reference
(Self : aliased Nested_Message_Vector;
Index : Positive)
return Nested_Message_Constant_Reference
with Inline;
type Map_String_Nested_Message_Entry is
record
Key : League.Strings.Universal_String;
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Optional_Nested_Message;
end record;
type Optional_Map_String_Nested_Message_Entry
(Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Map_String_Nested_Message_Entry;
when False =>
null;
end case;
end record;
function Length
(Self : Map_String_Nested_Message_Entry_Vector)
return Natural;
procedure Clear (Self : in out Map_String_Nested_Message_Entry_Vector);
procedure Append
(Self : in out Map_String_Nested_Message_Entry_Vector;
V : Map_String_Nested_Message_Entry);
type Map_String_Nested_Message_Entry_Variable_Reference
(Element : not null access Map_String_Nested_Message_Entry) is null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Nested_Message_Entry_Variable_Reference
(Self : aliased in out Map_String_Nested_Message_Entry_Vector;
Index : Positive)
return Map_String_Nested_Message_Entry_Variable_Reference
with Inline;
type Map_String_Nested_Message_Entry_Constant_Reference
(Element : not null access constant Map_String_Nested_Message_Entry) is
null record
with Implicit_Dereference => Element;
not overriding function Get_Map_String_Nested_Message_Entry_Constant_Reference
(Self : aliased Map_String_Nested_Message_Entry_Vector;
Index : Positive)
return Map_String_Nested_Message_Entry_Constant_Reference
with Inline;
type Test_All_Types_Proto_3_Variant_Kind is
(Oneof_Field_Not_Set,
Oneof_Uint_32_Kind ,
Oneof_Nested_Message_Kind,
Oneof_String_Kind ,
Oneof_Bytes_Kind ,
Oneof_Bool_Kind ,
Oneof_Uint_64_Kind ,
Oneof_Float_Kind ,
Oneof_Double_Kind ,
Oneof_Enum_Kind );
type Test_All_Types_Proto_3_Variant
(Oneof_Field : Test_All_Types_Proto_3_Variant_Kind := Oneof_Field_Not_Set) is
record
case Oneof_Field is
when Oneof_Field_Not_Set =>
null;
when Oneof_Uint_32_Kind =>
Oneof_Uint_32 : Interfaces.Unsigned_32 := 0;
when Oneof_Nested_Message_Kind =>
Oneof_Nested_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Nested_Message;
when Oneof_String_Kind =>
Oneof_String : League.Strings.Universal_String;
when Oneof_Bytes_Kind =>
Oneof_Bytes : League.Stream_Element_Vectors
.Stream_Element_Vector;
when Oneof_Bool_Kind =>
Oneof_Bool : Boolean := False;
when Oneof_Uint_64_Kind =>
Oneof_Uint_64 : Interfaces.Unsigned_64 := 0;
when Oneof_Float_Kind =>
Oneof_Float : Interfaces.IEEE_Float_32 := 0.0;
when Oneof_Double_Kind =>
Oneof_Double : Interfaces.IEEE_Float_64 := 0.0;
when Oneof_Enum_Kind =>
Oneof_Enum : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Nested_Enum :=
Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3.FOO;
end case;
end record;
type Test_All_Types_Proto_3 is
record
Optional_Int_32 : Interfaces.Integer_32 := 0;
Optional_Int_64 : Interfaces.Integer_64 := 0;
Optional_Uint_32 : Interfaces.Unsigned_32 := 0;
Optional_Uint_64 : Interfaces.Unsigned_64 := 0;
Optional_Sint_32 : Interfaces.Integer_32 := 0;
Optional_Sint_64 : Interfaces.Integer_64 := 0;
Optional_Fixed_32 : Interfaces.Unsigned_32 := 0;
Optional_Fixed_64 : Interfaces.Unsigned_64 := 0;
Optional_Sfixed_32 : Interfaces.Integer_32 := 0;
Optional_Sfixed_64 : Interfaces.Integer_64 := 0;
Optional_Float : Interfaces.IEEE_Float_32 := 0.0;
Optional_Double : Interfaces.IEEE_Float_64 := 0.0;
Optional_Bool : Boolean := False;
Optional_String : League.Strings.Universal_String;
Optional_Bytes : League.Stream_Element_Vectors
.Stream_Element_Vector;
Optional_Nested_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Optional_Nested_Message;
Optional_Foreign_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Optional_Foreign_Message;
Optional_Nested_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Nested_Enum :=
Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3.FOO;
Optional_Foreign_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Foreign_Enum :=
Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3.FOREIGN_FOO;
Optional_Aliased_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Aliased_Enum :=
Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3.ALIAS_FOO;
Optional_String_Piece : League.Strings.Universal_String;
Optional_Cord : League.Strings.Universal_String;
Recursive_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Test_All_Types_Proto_3_Vector;
Repeated_Int_32 : PB_Support.Integer_32_Vectors.Vector;
Repeated_Int_64 : PB_Support.Integer_64_Vectors.Vector;
Repeated_Uint_32 : PB_Support.Unsigned_32_Vectors.Vector;
Repeated_Uint_64 : PB_Support.Unsigned_64_Vectors.Vector;
Repeated_Sint_32 : PB_Support.Integer_32_Vectors.Vector;
Repeated_Sint_64 : PB_Support.Integer_64_Vectors.Vector;
Repeated_Fixed_32 : PB_Support.Unsigned_32_Vectors.Vector;
Repeated_Fixed_64 : PB_Support.Unsigned_64_Vectors.Vector;
Repeated_Sfixed_32 : PB_Support.Integer_32_Vectors.Vector;
Repeated_Sfixed_64 : PB_Support.Integer_64_Vectors.Vector;
Repeated_Float : PB_Support.IEEE_Float_32_Vectors.Vector;
Repeated_Double : PB_Support.IEEE_Float_64_Vectors.Vector;
Repeated_Bool : PB_Support.Boolean_Vectors.Vector;
Repeated_String : League.String_Vectors
.Universal_String_Vector;
Repeated_Bytes : PB_Support.Stream_Element_Vector_Vectors
.Vector;
Repeated_Nested_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Nested_Message_Vector;
Repeated_Foreign_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Foreign_Message_Vector;
Repeated_Nested_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Nested_Enum_Vectors.Vector;
Repeated_Foreign_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Foreign_Enum_Vectors.Vector;
Repeated_String_Piece : League.String_Vectors
.Universal_String_Vector;
Repeated_Cord : League.String_Vectors
.Universal_String_Vector;
Packed_Int_32 : PB_Support.Integer_32_Vectors.Vector;
Packed_Int_64 : PB_Support.Integer_64_Vectors.Vector;
Packed_Uint_32 : PB_Support.Unsigned_32_Vectors.Vector;
Packed_Uint_64 : PB_Support.Unsigned_64_Vectors.Vector;
Packed_Sint_32 : PB_Support.Integer_32_Vectors.Vector;
Packed_Sint_64 : PB_Support.Integer_64_Vectors.Vector;
Packed_Fixed_32 : PB_Support.Unsigned_32_Vectors.Vector;
Packed_Fixed_64 : PB_Support.Unsigned_64_Vectors.Vector;
Packed_Sfixed_32 : PB_Support.Integer_32_Vectors.Vector;
Packed_Sfixed_64 : PB_Support.Integer_64_Vectors.Vector;
Packed_Float : PB_Support.IEEE_Float_32_Vectors.Vector;
Packed_Double : PB_Support.IEEE_Float_64_Vectors.Vector;
Packed_Bool : PB_Support.Boolean_Vectors.Vector;
Packed_Nested_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Nested_Enum_Vectors.Vector;
Unpacked_Int_32 : PB_Support.Integer_32_Vectors.Vector;
Unpacked_Int_64 : PB_Support.Integer_64_Vectors.Vector;
Unpacked_Uint_32 : PB_Support.Unsigned_32_Vectors.Vector;
Unpacked_Uint_64 : PB_Support.Unsigned_64_Vectors.Vector;
Unpacked_Sint_32 : PB_Support.Integer_32_Vectors.Vector;
Unpacked_Sint_64 : PB_Support.Integer_64_Vectors.Vector;
Unpacked_Fixed_32 : PB_Support.Unsigned_32_Vectors.Vector;
Unpacked_Fixed_64 : PB_Support.Unsigned_64_Vectors.Vector;
Unpacked_Sfixed_32 : PB_Support.Integer_32_Vectors.Vector;
Unpacked_Sfixed_64 : PB_Support.Integer_64_Vectors.Vector;
Unpacked_Float : PB_Support.IEEE_Float_32_Vectors.Vector;
Unpacked_Double : PB_Support.IEEE_Float_64_Vectors.Vector;
Unpacked_Bool : PB_Support.Boolean_Vectors.Vector;
Unpacked_Nested_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Nested_Enum_Vectors.Vector;
Map_Int_32_Int_32 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Int_32Int_32Entry_Vector;
Map_Int_64_Int_64 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Int_64Int_64Entry_Vector;
Map_Uint_32_Uint_32 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Uint_32Uint_32Entry_Vector;
Map_Uint_64_Uint_64 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Uint_64Uint_64Entry_Vector;
Map_Sint_32_Sint_32 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Sint_32Sint_32Entry_Vector;
Map_Sint_64_Sint_64 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Sint_64Sint_64Entry_Vector;
Map_Fixed_32_Fixed_32 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Fixed_32Fixed_32Entry_Vector;
Map_Fixed_64_Fixed_64 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Fixed_64Fixed_64Entry_Vector;
Map_Sfixed_32_Sfixed_32 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Sfixed_32Sfixed_32Entry_Vector;
Map_Sfixed_64_Sfixed_64 : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Sfixed_64Sfixed_64Entry_Vector;
Map_Int_32_Float : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Int_32Float_Entry_Vector;
Map_Int_32_Double : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Int_32Double_Entry_Vector;
Map_Bool_Bool : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_Bool_Bool_Entry_Vector;
Map_String_String : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_String_String_Entry_Vector;
Map_String_Bytes : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_String_Bytes_Entry_Vector;
Map_String_Nested_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_String_Nested_Message_Entry_Vector;
Map_String_Foreign_Message : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_String_Foreign_Message_Entry_Vector;
Map_String_Nested_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_String_Nested_Enum_Entry_Vector;
Map_String_Foreign_Enum : Protobuf_Test_Messages.Proto_3
.Test_Messages_Proto_3.Map_String_Foreign_Enum_Entry_Vector;
Optional_Bool_Wrapper : Google.Protobuf.Wrappers
.Optional_Bool_Value;
Optional_Int_32_Wrapper : Google.Protobuf.Wrappers
.Optional_Int_32Value;
Optional_Int_64_Wrapper : Google.Protobuf.Wrappers
.Optional_Int_64Value;
Optional_Uint_32_Wrapper : Google.Protobuf.Wrappers
.Optional_UInt_32Value;
Optional_Uint_64_Wrapper : Google.Protobuf.Wrappers
.Optional_UInt_64Value;
Optional_Float_Wrapper : Google.Protobuf.Wrappers
.Optional_Float_Value;
Optional_Double_Wrapper : Google.Protobuf.Wrappers
.Optional_Double_Value;
Optional_String_Wrapper : Google.Protobuf.Wrappers
.Optional_String_Value;
Optional_Bytes_Wrapper : Google.Protobuf.Wrappers
.Optional_Bytes_Value;
Repeated_Bool_Wrapper : Google.Protobuf.Wrappers
.Bool_Value_Vector;
Repeated_Int_32_Wrapper : Google.Protobuf.Wrappers
.Int_32Value_Vector;
Repeated_Int_64_Wrapper : Google.Protobuf.Wrappers
.Int_64Value_Vector;
Repeated_Uint_32_Wrapper : Google.Protobuf.Wrappers
.UInt_32Value_Vector;
Repeated_Uint_64_Wrapper : Google.Protobuf.Wrappers
.UInt_64Value_Vector;
Repeated_Float_Wrapper : Google.Protobuf.Wrappers
.Float_Value_Vector;
Repeated_Double_Wrapper : Google.Protobuf.Wrappers
.Double_Value_Vector;
Repeated_String_Wrapper : Google.Protobuf.Wrappers
.String_Value_Vector;
Repeated_Bytes_Wrapper : Google.Protobuf.Wrappers
.Bytes_Value_Vector;
Optional_Duration : Google.Protobuf.Duration
.Optional_Duration;
Optional_Timestamp : Google.Protobuf.Timestamp
.Optional_Timestamp;
Optional_Field_Mask : Google.Protobuf.Field_Mask
.Optional_Field_Mask;
Optional_Struct : Google.Protobuf.Struct.Optional_Struct;
Optional_Any : Google.Protobuf.Any.Optional_Any;
Optional_Value : Google.Protobuf.Struct.Optional_Value;
Repeated_Duration : Google.Protobuf.Duration.Duration_Vector;
Repeated_Timestamp : Google.Protobuf.Timestamp
.Timestamp_Vector;
Repeated_Fieldmask : Google.Protobuf.Field_Mask
.Field_Mask_Vector;
Repeated_Struct : Google.Protobuf.Struct.Struct_Vector;
Repeated_Any : Google.Protobuf.Any.Any_Vector;
Repeated_Value : Google.Protobuf.Struct.Value_Vector;
Repeated_List_Value : Google.Protobuf.Struct.List_Value_Vector;
Fieldname_1 : Interfaces.Integer_32 := 0;
Field_Name_2 : Interfaces.Integer_32 := 0;
Field_Name_3 : Interfaces.Integer_32 := 0;
Field_Name_4 : Interfaces.Integer_32 := 0;
Field_0name_5 : Interfaces.Integer_32 := 0;
Field_0_Name_6 : Interfaces.Integer_32 := 0;
Field_Name_7 : Interfaces.Integer_32 := 0;
Field_Name_8 : Interfaces.Integer_32 := 0;
Field_Name_9 : Interfaces.Integer_32 := 0;
Field_Name_10 : Interfaces.Integer_32 := 0;
FIELD_NAME11 : Interfaces.Integer_32 := 0;
FIELD_Name_12 : Interfaces.Integer_32 := 0;
Field_Name_13 : Interfaces.Integer_32 := 0;
Field_Name_14 : Interfaces.Integer_32 := 0;
Field_Name_15 : Interfaces.Integer_32 := 0;
Field_Name_16 : Interfaces.Integer_32 := 0;
Field_Name_17 : Interfaces.Integer_32 := 0;
Field_Name_18 : Interfaces.Integer_32 := 0;
Variant : Test_All_Types_Proto_3_Variant;
end record;
type Optional_Test_All_Types_Proto_3 (Is_Set : Boolean := False) is
record
case Is_Set is
when True =>
Value : Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3
.Test_All_Types_Proto_3;
when False =>
null;
end case;
end record;
function Length (Self : Test_All_Types_Proto_3_Vector) return Natural;
procedure Clear (Self : in out Test_All_Types_Proto_3_Vector);
procedure Append
(Self : in out Test_All_Types_Proto_3_Vector;
V : Test_All_Types_Proto_3);
type Test_All_Types_Proto_3_Variable_Reference
(Element : not null access Test_All_Types_Proto_3) is null record
with Implicit_Dereference => Element;
not overriding function Get_Test_All_Types_Proto_3_Variable_Reference
(Self : aliased in out Test_All_Types_Proto_3_Vector;
Index : Positive)
return Test_All_Types_Proto_3_Variable_Reference
with Inline;
type Test_All_Types_Proto_3_Constant_Reference
(Element : not null access constant Test_All_Types_Proto_3) is null record
with Implicit_Dereference => Element;
not overriding function Get_Test_All_Types_Proto_3_Constant_Reference
(Self : aliased Test_All_Types_Proto_3_Vector;
Index : Positive)
return Test_All_Types_Proto_3_Constant_Reference
with Inline;
private
procedure Read_Nested_Message
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Nested_Message);
procedure Write_Nested_Message
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Nested_Message);
for Nested_Message'Read use Read_Nested_Message;
for Nested_Message'Write use Write_Nested_Message;
type Nested_Message_Array is
array (Positive range <>) of aliased Nested_Message;
type Nested_Message_Array_Access is access Nested_Message_Array;
type Nested_Message_Vector is
new Ada.Finalization.Controlled
with record
Data : Nested_Message_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Nested_Message_Vector);
overriding procedure Finalize (Self : in out Nested_Message_Vector);
procedure Read_Map_Int_32Int_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Int_32Int_32Entry);
procedure Write_Map_Int_32Int_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Int_32Int_32Entry);
for Map_Int_32Int_32Entry'Read use Read_Map_Int_32Int_32Entry;
for Map_Int_32Int_32Entry'Write use Write_Map_Int_32Int_32Entry;
type Map_Int_32Int_32Entry_Array is
array (Positive range <>) of aliased Map_Int_32Int_32Entry;
type Map_Int_32Int_32Entry_Array_Access is
access Map_Int_32Int_32Entry_Array;
type Map_Int_32Int_32Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Int_32Int_32Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Int_32Int_32Entry_Vector);
overriding procedure Finalize (Self : in out Map_Int_32Int_32Entry_Vector);
procedure Read_Map_Int_64Int_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Int_64Int_64Entry);
procedure Write_Map_Int_64Int_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Int_64Int_64Entry);
for Map_Int_64Int_64Entry'Read use Read_Map_Int_64Int_64Entry;
for Map_Int_64Int_64Entry'Write use Write_Map_Int_64Int_64Entry;
type Map_Int_64Int_64Entry_Array is
array (Positive range <>) of aliased Map_Int_64Int_64Entry;
type Map_Int_64Int_64Entry_Array_Access is
access Map_Int_64Int_64Entry_Array;
type Map_Int_64Int_64Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Int_64Int_64Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Int_64Int_64Entry_Vector);
overriding procedure Finalize (Self : in out Map_Int_64Int_64Entry_Vector);
procedure Read_Map_Uint_32Uint_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Uint_32Uint_32Entry);
procedure Write_Map_Uint_32Uint_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Uint_32Uint_32Entry);
for Map_Uint_32Uint_32Entry'Read use Read_Map_Uint_32Uint_32Entry;
for Map_Uint_32Uint_32Entry'Write use Write_Map_Uint_32Uint_32Entry;
type Map_Uint_32Uint_32Entry_Array is
array (Positive range <>) of aliased Map_Uint_32Uint_32Entry;
type Map_Uint_32Uint_32Entry_Array_Access is
access Map_Uint_32Uint_32Entry_Array;
type Map_Uint_32Uint_32Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Uint_32Uint_32Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Uint_32Uint_32Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Uint_32Uint_32Entry_Vector);
procedure Read_Map_Uint_64Uint_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Uint_64Uint_64Entry);
procedure Write_Map_Uint_64Uint_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Uint_64Uint_64Entry);
for Map_Uint_64Uint_64Entry'Read use Read_Map_Uint_64Uint_64Entry;
for Map_Uint_64Uint_64Entry'Write use Write_Map_Uint_64Uint_64Entry;
type Map_Uint_64Uint_64Entry_Array is
array (Positive range <>) of aliased Map_Uint_64Uint_64Entry;
type Map_Uint_64Uint_64Entry_Array_Access is
access Map_Uint_64Uint_64Entry_Array;
type Map_Uint_64Uint_64Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Uint_64Uint_64Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Uint_64Uint_64Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Uint_64Uint_64Entry_Vector);
procedure Read_Map_Sint_32Sint_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Sint_32Sint_32Entry);
procedure Write_Map_Sint_32Sint_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Sint_32Sint_32Entry);
for Map_Sint_32Sint_32Entry'Read use Read_Map_Sint_32Sint_32Entry;
for Map_Sint_32Sint_32Entry'Write use Write_Map_Sint_32Sint_32Entry;
type Map_Sint_32Sint_32Entry_Array is
array (Positive range <>) of aliased Map_Sint_32Sint_32Entry;
type Map_Sint_32Sint_32Entry_Array_Access is
access Map_Sint_32Sint_32Entry_Array;
type Map_Sint_32Sint_32Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Sint_32Sint_32Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Sint_32Sint_32Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Sint_32Sint_32Entry_Vector);
procedure Read_Map_Sint_64Sint_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Sint_64Sint_64Entry);
procedure Write_Map_Sint_64Sint_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Sint_64Sint_64Entry);
for Map_Sint_64Sint_64Entry'Read use Read_Map_Sint_64Sint_64Entry;
for Map_Sint_64Sint_64Entry'Write use Write_Map_Sint_64Sint_64Entry;
type Map_Sint_64Sint_64Entry_Array is
array (Positive range <>) of aliased Map_Sint_64Sint_64Entry;
type Map_Sint_64Sint_64Entry_Array_Access is
access Map_Sint_64Sint_64Entry_Array;
type Map_Sint_64Sint_64Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Sint_64Sint_64Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Sint_64Sint_64Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Sint_64Sint_64Entry_Vector);
procedure Read_Map_Fixed_32Fixed_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Fixed_32Fixed_32Entry);
procedure Write_Map_Fixed_32Fixed_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Fixed_32Fixed_32Entry);
for Map_Fixed_32Fixed_32Entry'Read use Read_Map_Fixed_32Fixed_32Entry;
for Map_Fixed_32Fixed_32Entry'Write use Write_Map_Fixed_32Fixed_32Entry;
type Map_Fixed_32Fixed_32Entry_Array is
array (Positive range <>) of aliased Map_Fixed_32Fixed_32Entry;
type Map_Fixed_32Fixed_32Entry_Array_Access is
access Map_Fixed_32Fixed_32Entry_Array;
type Map_Fixed_32Fixed_32Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Fixed_32Fixed_32Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_Fixed_32Fixed_32Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Fixed_32Fixed_32Entry_Vector);
procedure Read_Map_Fixed_64Fixed_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Fixed_64Fixed_64Entry);
procedure Write_Map_Fixed_64Fixed_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Fixed_64Fixed_64Entry);
for Map_Fixed_64Fixed_64Entry'Read use Read_Map_Fixed_64Fixed_64Entry;
for Map_Fixed_64Fixed_64Entry'Write use Write_Map_Fixed_64Fixed_64Entry;
type Map_Fixed_64Fixed_64Entry_Array is
array (Positive range <>) of aliased Map_Fixed_64Fixed_64Entry;
type Map_Fixed_64Fixed_64Entry_Array_Access is
access Map_Fixed_64Fixed_64Entry_Array;
type Map_Fixed_64Fixed_64Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Fixed_64Fixed_64Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_Fixed_64Fixed_64Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Fixed_64Fixed_64Entry_Vector);
procedure Read_Map_Sfixed_32Sfixed_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Sfixed_32Sfixed_32Entry);
procedure Write_Map_Sfixed_32Sfixed_32Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Sfixed_32Sfixed_32Entry);
for Map_Sfixed_32Sfixed_32Entry'Read use Read_Map_Sfixed_32Sfixed_32Entry;
for Map_Sfixed_32Sfixed_32Entry'Write use Write_Map_Sfixed_32Sfixed_32Entry;
type Map_Sfixed_32Sfixed_32Entry_Array is
array (Positive range <>) of aliased Map_Sfixed_32Sfixed_32Entry;
type Map_Sfixed_32Sfixed_32Entry_Array_Access is
access Map_Sfixed_32Sfixed_32Entry_Array;
type Map_Sfixed_32Sfixed_32Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Sfixed_32Sfixed_32Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_Sfixed_32Sfixed_32Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Sfixed_32Sfixed_32Entry_Vector);
procedure Read_Map_Sfixed_64Sfixed_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Sfixed_64Sfixed_64Entry);
procedure Write_Map_Sfixed_64Sfixed_64Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Sfixed_64Sfixed_64Entry);
for Map_Sfixed_64Sfixed_64Entry'Read use Read_Map_Sfixed_64Sfixed_64Entry;
for Map_Sfixed_64Sfixed_64Entry'Write use Write_Map_Sfixed_64Sfixed_64Entry;
type Map_Sfixed_64Sfixed_64Entry_Array is
array (Positive range <>) of aliased Map_Sfixed_64Sfixed_64Entry;
type Map_Sfixed_64Sfixed_64Entry_Array_Access is
access Map_Sfixed_64Sfixed_64Entry_Array;
type Map_Sfixed_64Sfixed_64Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Sfixed_64Sfixed_64Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_Sfixed_64Sfixed_64Entry_Vector);
overriding procedure Finalize
(Self : in out Map_Sfixed_64Sfixed_64Entry_Vector);
procedure Read_Map_Int_32Float_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Int_32Float_Entry);
procedure Write_Map_Int_32Float_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Int_32Float_Entry);
for Map_Int_32Float_Entry'Read use Read_Map_Int_32Float_Entry;
for Map_Int_32Float_Entry'Write use Write_Map_Int_32Float_Entry;
type Map_Int_32Float_Entry_Array is
array (Positive range <>) of aliased Map_Int_32Float_Entry;
type Map_Int_32Float_Entry_Array_Access is
access Map_Int_32Float_Entry_Array;
type Map_Int_32Float_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Int_32Float_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Int_32Float_Entry_Vector);
overriding procedure Finalize (Self : in out Map_Int_32Float_Entry_Vector);
procedure Read_Map_Int_32Double_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Int_32Double_Entry);
procedure Write_Map_Int_32Double_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Int_32Double_Entry);
for Map_Int_32Double_Entry'Read use Read_Map_Int_32Double_Entry;
for Map_Int_32Double_Entry'Write use Write_Map_Int_32Double_Entry;
type Map_Int_32Double_Entry_Array is
array (Positive range <>) of aliased Map_Int_32Double_Entry;
type Map_Int_32Double_Entry_Array_Access is
access Map_Int_32Double_Entry_Array;
type Map_Int_32Double_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Int_32Double_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Int_32Double_Entry_Vector);
overriding procedure Finalize (Self : in out Map_Int_32Double_Entry_Vector);
procedure Read_Map_Bool_Bool_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_Bool_Bool_Entry);
procedure Write_Map_Bool_Bool_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_Bool_Bool_Entry);
for Map_Bool_Bool_Entry'Read use Read_Map_Bool_Bool_Entry;
for Map_Bool_Bool_Entry'Write use Write_Map_Bool_Bool_Entry;
type Map_Bool_Bool_Entry_Array is
array (Positive range <>) of aliased Map_Bool_Bool_Entry;
type Map_Bool_Bool_Entry_Array_Access is access Map_Bool_Bool_Entry_Array;
type Map_Bool_Bool_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_Bool_Bool_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_Bool_Bool_Entry_Vector);
overriding procedure Finalize (Self : in out Map_Bool_Bool_Entry_Vector);
procedure Read_Map_String_String_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_String_String_Entry);
procedure Write_Map_String_String_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_String_String_Entry);
for Map_String_String_Entry'Read use Read_Map_String_String_Entry;
for Map_String_String_Entry'Write use Write_Map_String_String_Entry;
type Map_String_String_Entry_Array is
array (Positive range <>) of aliased Map_String_String_Entry;
type Map_String_String_Entry_Array_Access is
access Map_String_String_Entry_Array;
type Map_String_String_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_String_String_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_String_String_Entry_Vector);
overriding procedure Finalize
(Self : in out Map_String_String_Entry_Vector);
procedure Read_Map_String_Bytes_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_String_Bytes_Entry);
procedure Write_Map_String_Bytes_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_String_Bytes_Entry);
for Map_String_Bytes_Entry'Read use Read_Map_String_Bytes_Entry;
for Map_String_Bytes_Entry'Write use Write_Map_String_Bytes_Entry;
type Map_String_Bytes_Entry_Array is
array (Positive range <>) of aliased Map_String_Bytes_Entry;
type Map_String_Bytes_Entry_Array_Access is
access Map_String_Bytes_Entry_Array;
type Map_String_Bytes_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_String_Bytes_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Map_String_Bytes_Entry_Vector);
overriding procedure Finalize (Self : in out Map_String_Bytes_Entry_Vector);
procedure Read_Map_String_Nested_Message_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_String_Nested_Message_Entry);
procedure Write_Map_String_Nested_Message_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_String_Nested_Message_Entry);
for Map_String_Nested_Message_Entry'Read use Read_Map_String_Nested_Message_Entry;
for Map_String_Nested_Message_Entry'Write use Write_Map_String_Nested_Message_Entry;
type Map_String_Nested_Message_Entry_Array is
array (Positive range <>) of aliased Map_String_Nested_Message_Entry;
type Map_String_Nested_Message_Entry_Array_Access is
access Map_String_Nested_Message_Entry_Array;
type Map_String_Nested_Message_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_String_Nested_Message_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_String_Nested_Message_Entry_Vector);
overriding procedure Finalize
(Self : in out Map_String_Nested_Message_Entry_Vector);
procedure Read_Map_String_Foreign_Message_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_String_Foreign_Message_Entry);
procedure Write_Map_String_Foreign_Message_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_String_Foreign_Message_Entry);
for Map_String_Foreign_Message_Entry'Read use Read_Map_String_Foreign_Message_Entry;
for Map_String_Foreign_Message_Entry'Write use Write_Map_String_Foreign_Message_Entry;
type Map_String_Foreign_Message_Entry_Array is
array (Positive range <>) of aliased Map_String_Foreign_Message_Entry;
type Map_String_Foreign_Message_Entry_Array_Access is
access Map_String_Foreign_Message_Entry_Array;
type Map_String_Foreign_Message_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_String_Foreign_Message_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_String_Foreign_Message_Entry_Vector);
overriding procedure Finalize
(Self : in out Map_String_Foreign_Message_Entry_Vector);
procedure Read_Map_String_Nested_Enum_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_String_Nested_Enum_Entry);
procedure Write_Map_String_Nested_Enum_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_String_Nested_Enum_Entry);
for Map_String_Nested_Enum_Entry'Read use Read_Map_String_Nested_Enum_Entry;
for Map_String_Nested_Enum_Entry'Write use Write_Map_String_Nested_Enum_Entry;
type Map_String_Nested_Enum_Entry_Array is
array (Positive range <>) of aliased Map_String_Nested_Enum_Entry;
type Map_String_Nested_Enum_Entry_Array_Access is
access Map_String_Nested_Enum_Entry_Array;
type Map_String_Nested_Enum_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_String_Nested_Enum_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_String_Nested_Enum_Entry_Vector);
overriding procedure Finalize
(Self : in out Map_String_Nested_Enum_Entry_Vector);
procedure Read_Map_String_Foreign_Enum_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Map_String_Foreign_Enum_Entry);
procedure Write_Map_String_Foreign_Enum_Entry
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Map_String_Foreign_Enum_Entry);
for Map_String_Foreign_Enum_Entry'Read use Read_Map_String_Foreign_Enum_Entry;
for Map_String_Foreign_Enum_Entry'Write use Write_Map_String_Foreign_Enum_Entry;
type Map_String_Foreign_Enum_Entry_Array is
array (Positive range <>) of aliased Map_String_Foreign_Enum_Entry;
type Map_String_Foreign_Enum_Entry_Array_Access is
access Map_String_Foreign_Enum_Entry_Array;
type Map_String_Foreign_Enum_Entry_Vector is
new Ada.Finalization.Controlled
with record
Data : Map_String_Foreign_Enum_Entry_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust
(Self : in out Map_String_Foreign_Enum_Entry_Vector);
overriding procedure Finalize
(Self : in out Map_String_Foreign_Enum_Entry_Vector);
procedure Read_Test_All_Types_Proto_3
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Test_All_Types_Proto_3);
procedure Write_Test_All_Types_Proto_3
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Test_All_Types_Proto_3);
for Test_All_Types_Proto_3'Read use Read_Test_All_Types_Proto_3;
for Test_All_Types_Proto_3'Write use Write_Test_All_Types_Proto_3;
type Test_All_Types_Proto_3_Array is
array (Positive range <>) of aliased Test_All_Types_Proto_3;
type Test_All_Types_Proto_3_Array_Access is
access Test_All_Types_Proto_3_Array;
type Test_All_Types_Proto_3_Vector is
new Ada.Finalization.Controlled
with record
Data : Test_All_Types_Proto_3_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Test_All_Types_Proto_3_Vector);
overriding procedure Finalize (Self : in out Test_All_Types_Proto_3_Vector);
procedure Read_Foreign_Message
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : out Foreign_Message);
procedure Write_Foreign_Message
(Stream : access Ada.Streams.Root_Stream_Type'Class;
V : Foreign_Message);
for Foreign_Message'Read use Read_Foreign_Message;
for Foreign_Message'Write use Write_Foreign_Message;
type Foreign_Message_Array is
array (Positive range <>) of aliased Foreign_Message;
type Foreign_Message_Array_Access is access Foreign_Message_Array;
type Foreign_Message_Vector is
new Ada.Finalization.Controlled
with record
Data : Foreign_Message_Array_Access;
Length : Natural := 0;
end record;
overriding procedure Adjust (Self : in out Foreign_Message_Vector);
overriding procedure Finalize (Self : in out Foreign_Message_Vector);
end Protobuf_Test_Messages.Proto_3.Test_Messages_Proto_3; |
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Generic_Collections;
package AMF.UML.Abstractions.Collections is
pragma Preelaborate;
package UML_Abstraction_Collections is
new AMF.Generic_Collections
(UML_Abstraction,
UML_Abstraction_Access);
type Set_Of_UML_Abstraction is
new UML_Abstraction_Collections.Set with null record;
Empty_Set_Of_UML_Abstraction : constant Set_Of_UML_Abstraction;
type Ordered_Set_Of_UML_Abstraction is
new UML_Abstraction_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Abstraction : constant Ordered_Set_Of_UML_Abstraction;
type Bag_Of_UML_Abstraction is
new UML_Abstraction_Collections.Bag with null record;
Empty_Bag_Of_UML_Abstraction : constant Bag_Of_UML_Abstraction;
type Sequence_Of_UML_Abstraction is
new UML_Abstraction_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Abstraction : constant Sequence_Of_UML_Abstraction;
private
Empty_Set_Of_UML_Abstraction : constant Set_Of_UML_Abstraction
:= (UML_Abstraction_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Abstraction : constant Ordered_Set_Of_UML_Abstraction
:= (UML_Abstraction_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Abstraction : constant Bag_Of_UML_Abstraction
:= (UML_Abstraction_Collections.Bag with null record);
Empty_Sequence_Of_UML_Abstraction : constant Sequence_Of_UML_Abstraction
:= (UML_Abstraction_Collections.Sequence with null record);
end AMF.UML.Abstractions.Collections;
|
with
ada.numerics.discrete_Random;
procedure lace.Containers.shuffle_Vector (the_Vector : in out vectors.Vector)
is
use type vectors.Index_type;
begin
for i in reverse 2 .. vectors.Index_type (the_Vector.Length) -- Start from 2, since swapping the
loop -- first element with itself is useless.
declare
subtype Index is vectors.Index_type range vectors.Index_type'First
.. vectors.Index_type'First + i - 1;
package random_Index is new ada.numerics.discrete_Random (Index);
use random_Index;
the_Generator : random_Index.Generator;
begin
the_Vector.swap (Random (the_Generator),
Index'Last);
end;
end loop;
end lace.Containers.shuffle_Vector;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . N U M E R I C S . G E N E R I C _ C O M P L E X _ T Y P E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2006, 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. --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
generic
type Real is digits <>;
package Ada.Numerics.Generic_Complex_Types is
pragma Pure;
type Complex is record
Re, Im : Real'Base;
end record;
pragma Complex_Representation (Complex);
type Imaginary is private;
i : constant Imaginary;
j : constant Imaginary;
function Re (X : Complex) return Real'Base;
function Im (X : Complex) return Real'Base;
function Im (X : Imaginary) return Real'Base;
procedure Set_Re (X : in out Complex; Re : Real'Base);
procedure Set_Im (X : in out Complex; Im : Real'Base);
procedure Set_Im (X : out Imaginary; Im : Real'Base);
function Compose_From_Cartesian (Re, Im : Real'Base) return Complex;
function Compose_From_Cartesian (Re : Real'Base) return Complex;
function Compose_From_Cartesian (Im : Imaginary) return Complex;
function Modulus (X : Complex) return Real'Base;
function "abs" (Right : Complex) return Real'Base renames Modulus;
function Argument (X : Complex) return Real'Base;
function Argument (X : Complex; Cycle : Real'Base) return Real'Base;
function Compose_From_Polar (
Modulus, Argument : Real'Base)
return Complex;
function Compose_From_Polar (
Modulus, Argument, Cycle : Real'Base)
return Complex;
function "+" (Right : Complex) return Complex;
function "-" (Right : Complex) return Complex;
function Conjugate (X : Complex) return Complex;
function "+" (Left, Right : Complex) return Complex;
function "-" (Left, Right : Complex) return Complex;
function "*" (Left, Right : Complex) return Complex;
function "/" (Left, Right : Complex) return Complex;
function "**" (Left : Complex; Right : Integer) return Complex;
function "+" (Right : Imaginary) return Imaginary;
function "-" (Right : Imaginary) return Imaginary;
function Conjugate (X : Imaginary) return Imaginary renames "-";
function "abs" (Right : Imaginary) return Real'Base;
function "+" (Left, Right : Imaginary) return Imaginary;
function "-" (Left, Right : Imaginary) return Imaginary;
function "*" (Left, Right : Imaginary) return Real'Base;
function "/" (Left, Right : Imaginary) return Real'Base;
function "**" (Left : Imaginary; Right : Integer) return Complex;
function "<" (Left, Right : Imaginary) return Boolean;
function "<=" (Left, Right : Imaginary) return Boolean;
function ">" (Left, Right : Imaginary) return Boolean;
function ">=" (Left, Right : Imaginary) return Boolean;
function "+" (Left : Complex; Right : Real'Base) return Complex;
function "+" (Left : Real'Base; Right : Complex) return Complex;
function "-" (Left : Complex; Right : Real'Base) return Complex;
function "-" (Left : Real'Base; Right : Complex) return Complex;
function "*" (Left : Complex; Right : Real'Base) return Complex;
function "*" (Left : Real'Base; Right : Complex) return Complex;
function "/" (Left : Complex; Right : Real'Base) return Complex;
function "/" (Left : Real'Base; Right : Complex) return Complex;
function "+" (Left : Complex; Right : Imaginary) return Complex;
function "+" (Left : Imaginary; Right : Complex) return Complex;
function "-" (Left : Complex; Right : Imaginary) return Complex;
function "-" (Left : Imaginary; Right : Complex) return Complex;
function "*" (Left : Complex; Right : Imaginary) return Complex;
function "*" (Left : Imaginary; Right : Complex) return Complex;
function "/" (Left : Complex; Right : Imaginary) return Complex;
function "/" (Left : Imaginary; Right : Complex) return Complex;
function "+" (Left : Imaginary; Right : Real'Base) return Complex;
function "+" (Left : Real'Base; Right : Imaginary) return Complex;
function "-" (Left : Imaginary; Right : Real'Base) return Complex;
function "-" (Left : Real'Base; Right : Imaginary) return Complex;
function "*" (Left : Imaginary; Right : Real'Base) return Imaginary;
function "*" (Left : Real'Base; Right : Imaginary) return Imaginary;
function "/" (Left : Imaginary; Right : Real'Base) return Imaginary;
function "/" (Left : Real'Base; Right : Imaginary) return Imaginary;
private
type Imaginary is new Real'Base;
i : constant Imaginary := 1.0;
j : constant Imaginary := 1.0;
pragma Inline ("+");
pragma Inline ("-");
pragma Inline ("*");
pragma Inline ("<");
pragma Inline ("<=");
pragma Inline (">");
pragma Inline (">=");
pragma Inline ("abs");
pragma Inline (Compose_From_Cartesian);
pragma Inline (Conjugate);
pragma Inline (Im);
pragma Inline (Re);
pragma Inline (Set_Im);
pragma Inline (Set_Re);
end Ada.Numerics.Generic_Complex_Types;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUNTIME COMPONENTS --
-- --
-- A D A . S T R I N G S . U N B O U N D E D --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2001 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- 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.Strings.Fixed;
with Ada.Strings.Search;
with Ada.Unchecked_Deallocation;
package body Ada.Strings.Unbounded is
use Ada.Finalization;
---------
-- "&" --
---------
function "&" (Left, Right : Unbounded_String) return Unbounded_String is
L_Length : constant Integer := Left.Reference.all'Length;
R_Length : constant Integer := Right.Reference.all'Length;
Length : constant Integer := L_Length + R_Length;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Length);
Result.Reference.all (1 .. L_Length) := Left.Reference.all;
Result.Reference.all (L_Length + 1 .. Length) := Right.Reference.all;
return Result;
end "&";
function "&"
(Left : Unbounded_String;
Right : String)
return Unbounded_String
is
L_Length : constant Integer := Left.Reference.all'Length;
Length : constant Integer := L_Length + Right'Length;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Length);
Result.Reference.all (1 .. L_Length) := Left.Reference.all;
Result.Reference.all (L_Length + 1 .. Length) := Right;
return Result;
end "&";
function "&"
(Left : String;
Right : Unbounded_String)
return Unbounded_String
is
R_Length : constant Integer := Right.Reference.all'Length;
Length : constant Integer := Left'Length + R_Length;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Length);
Result.Reference.all (1 .. Left'Length) := Left;
Result.Reference.all (Left'Length + 1 .. Length) := Right.Reference.all;
return Result;
end "&";
function "&"
(Left : Unbounded_String;
Right : Character)
return Unbounded_String
is
Length : constant Integer := Left.Reference.all'Length + 1;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Length);
Result.Reference.all (1 .. Length - 1) := Left.Reference.all;
Result.Reference.all (Length) := Right;
return Result;
end "&";
function "&"
(Left : Character;
Right : Unbounded_String)
return Unbounded_String
is
Length : constant Integer := Right.Reference.all'Length + 1;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Length);
Result.Reference.all (1) := Left;
Result.Reference.all (2 .. Length) := Right.Reference.all;
return Result;
end "&";
---------
-- "*" --
---------
function "*"
(Left : Natural;
Right : Character)
return Unbounded_String
is
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Left);
for J in Result.Reference'Range loop
Result.Reference (J) := Right;
end loop;
return Result;
end "*";
function "*"
(Left : Natural;
Right : String)
return Unbounded_String
is
Len : constant Integer := Right'Length;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Left * Len);
for J in 1 .. Left loop
Result.Reference.all (Len * J - Len + 1 .. Len * J) := Right;
end loop;
return Result;
end "*";
function "*"
(Left : Natural;
Right : Unbounded_String)
return Unbounded_String
is
Len : constant Integer := Right.Reference.all'Length;
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Left * Len);
for I in 1 .. Left loop
Result.Reference.all (Len * I - Len + 1 .. Len * I) :=
Right.Reference.all;
end loop;
return Result;
end "*";
---------
-- "<" --
---------
function "<" (Left, Right : in Unbounded_String) return Boolean is
begin
return Left.Reference.all < Right.Reference.all;
end "<";
function "<"
(Left : in Unbounded_String;
Right : in String)
return Boolean
is
begin
return Left.Reference.all < Right;
end "<";
function "<"
(Left : in String;
Right : in Unbounded_String)
return Boolean
is
begin
return Left < Right.Reference.all;
end "<";
----------
-- "<=" --
----------
function "<=" (Left, Right : in Unbounded_String) return Boolean is
begin
return Left.Reference.all <= Right.Reference.all;
end "<=";
function "<="
(Left : in Unbounded_String;
Right : in String)
return Boolean
is
begin
return Left.Reference.all <= Right;
end "<=";
function "<="
(Left : in String;
Right : in Unbounded_String)
return Boolean
is
begin
return Left <= Right.Reference.all;
end "<=";
---------
-- "=" --
---------
function "=" (Left, Right : in Unbounded_String) return Boolean is
begin
return Left.Reference.all = Right.Reference.all;
end "=";
function "="
(Left : in Unbounded_String;
Right : in String)
return Boolean
is
begin
return Left.Reference.all = Right;
end "=";
function "="
(Left : in String;
Right : in Unbounded_String)
return Boolean
is
begin
return Left = Right.Reference.all;
end "=";
---------
-- ">" --
---------
function ">" (Left, Right : in Unbounded_String) return Boolean is
begin
return Left.Reference.all > Right.Reference.all;
end ">";
function ">"
(Left : in Unbounded_String;
Right : in String)
return Boolean
is
begin
return Left.Reference.all > Right;
end ">";
function ">"
(Left : in String;
Right : in Unbounded_String)
return Boolean
is
begin
return Left > Right.Reference.all;
end ">";
----------
-- ">=" --
----------
function ">=" (Left, Right : in Unbounded_String) return Boolean is
begin
return Left.Reference.all >= Right.Reference.all;
end ">=";
function ">="
(Left : in Unbounded_String;
Right : in String)
return Boolean
is
begin
return Left.Reference.all >= Right;
end ">=";
function ">="
(Left : in String;
Right : in Unbounded_String)
return Boolean
is
begin
return Left >= Right.Reference.all;
end ">=";
------------
-- Adjust --
------------
procedure Adjust (Object : in out Unbounded_String) is
begin
-- Copy string, except we do not copy the statically allocated null
-- string, since it can never be deallocated.
if Object.Reference /= Null_String'Access then
Object.Reference := new String'(Object.Reference.all);
end if;
end Adjust;
------------
-- Append --
------------
procedure Append
(Source : in out Unbounded_String;
New_Item : in Unbounded_String)
is
S_Length : constant Integer := Source.Reference.all'Length;
Length : constant Integer := S_Length + New_Item.Reference.all'Length;
Tmp : String_Access;
begin
Tmp := new String (1 .. Length);
Tmp (1 .. S_Length) := Source.Reference.all;
Tmp (S_Length + 1 .. Length) := New_Item.Reference.all;
Free (Source.Reference);
Source.Reference := Tmp;
end Append;
procedure Append
(Source : in out Unbounded_String;
New_Item : in String)
is
S_Length : constant Integer := Source.Reference.all'Length;
Length : constant Integer := S_Length + New_Item'Length;
Tmp : String_Access;
begin
Tmp := new String (1 .. Length);
Tmp (1 .. S_Length) := Source.Reference.all;
Tmp (S_Length + 1 .. Length) := New_Item;
Free (Source.Reference);
Source.Reference := Tmp;
end Append;
procedure Append
(Source : in out Unbounded_String;
New_Item : in Character)
is
S_Length : constant Integer := Source.Reference.all'Length;
Length : constant Integer := S_Length + 1;
Tmp : String_Access;
begin
Tmp := new String (1 .. Length);
Tmp (1 .. S_Length) := Source.Reference.all;
Tmp (S_Length + 1) := New_Item;
Free (Source.Reference);
Source.Reference := Tmp;
end Append;
-----------
-- Count --
-----------
function Count
(Source : Unbounded_String;
Pattern : String;
Mapping : Maps.Character_Mapping := Maps.Identity)
return Natural
is
begin
return Search.Count (Source.Reference.all, Pattern, Mapping);
end Count;
function Count
(Source : in Unbounded_String;
Pattern : in String;
Mapping : in Maps.Character_Mapping_Function)
return Natural
is
begin
return Search.Count (Source.Reference.all, Pattern, Mapping);
end Count;
function Count
(Source : Unbounded_String;
Set : Maps.Character_Set)
return Natural
is
begin
return Search.Count (Source.Reference.all, Set);
end Count;
------------
-- Delete --
------------
function Delete
(Source : Unbounded_String;
From : Positive;
Through : Natural)
return Unbounded_String
is
begin
return
To_Unbounded_String
(Fixed.Delete (Source.Reference.all, From, Through));
end Delete;
procedure Delete
(Source : in out Unbounded_String;
From : in Positive;
Through : in Natural)
is
Old : String_Access := Source.Reference;
begin
Source.Reference :=
new String' (Fixed.Delete (Old.all, From, Through));
Free (Old);
end Delete;
-------------
-- Element --
-------------
function Element
(Source : Unbounded_String;
Index : Positive)
return Character
is
begin
if Index <= Source.Reference.all'Last then
return Source.Reference.all (Index);
else
raise Strings.Index_Error;
end if;
end Element;
--------------
-- Finalize --
--------------
procedure Finalize (Object : in out Unbounded_String) is
procedure Deallocate is
new Ada.Unchecked_Deallocation (String, String_Access);
begin
-- Note: Don't try to free statically allocated null string
if Object.Reference /= Null_String'Access then
Deallocate (Object.Reference);
Object.Reference := Null_Unbounded_String.Reference;
end if;
end Finalize;
----------------
-- Find_Token --
----------------
procedure Find_Token
(Source : Unbounded_String;
Set : Maps.Character_Set;
Test : Strings.Membership;
First : out Positive;
Last : out Natural)
is
begin
Search.Find_Token (Source.Reference.all, Set, Test, First, Last);
end Find_Token;
----------
-- Free --
----------
procedure Free (X : in out String_Access) is
procedure Deallocate is
new Ada.Unchecked_Deallocation (String, String_Access);
begin
-- Note: Don't try to free statically allocated null string
if X /= Null_Unbounded_String.Reference then
Deallocate (X);
end if;
end Free;
----------
-- Head --
----------
function Head
(Source : Unbounded_String;
Count : Natural;
Pad : Character := Space)
return Unbounded_String
is
begin
return
To_Unbounded_String (Fixed.Head (Source.Reference.all, Count, Pad));
end Head;
procedure Head
(Source : in out Unbounded_String;
Count : in Natural;
Pad : in Character := Space)
is
Old : String_Access := Source.Reference;
begin
Source.Reference := new String'(Fixed.Head (Old.all, Count, Pad));
Free (Old);
end Head;
-----------
-- Index --
-----------
function Index
(Source : Unbounded_String;
Pattern : String;
Going : Strings.Direction := Strings.Forward;
Mapping : Maps.Character_Mapping := Maps.Identity)
return Natural
is
begin
return Search.Index (Source.Reference.all, Pattern, Going, Mapping);
end Index;
function Index
(Source : in Unbounded_String;
Pattern : in String;
Going : in Direction := Forward;
Mapping : in Maps.Character_Mapping_Function)
return Natural
is
begin
return Search.Index (Source.Reference.all, Pattern, Going, Mapping);
end Index;
function Index
(Source : Unbounded_String;
Set : Maps.Character_Set;
Test : Strings.Membership := Strings.Inside;
Going : Strings.Direction := Strings.Forward)
return Natural
is
begin
return Search.Index (Source.Reference.all, Set, Test, Going);
end Index;
function Index_Non_Blank
(Source : Unbounded_String;
Going : Strings.Direction := Strings.Forward)
return Natural
is
begin
return Search.Index_Non_Blank (Source.Reference.all, Going);
end Index_Non_Blank;
----------------
-- Initialize --
----------------
procedure Initialize (Object : in out Unbounded_String) is
begin
Object.Reference := Null_Unbounded_String.Reference;
end Initialize;
------------
-- Insert --
------------
function Insert
(Source : Unbounded_String;
Before : Positive;
New_Item : String)
return Unbounded_String
is
begin
return
To_Unbounded_String
(Fixed.Insert (Source.Reference.all, Before, New_Item));
end Insert;
procedure Insert
(Source : in out Unbounded_String;
Before : in Positive;
New_Item : in String)
is
Old : String_Access := Source.Reference;
begin
Source.Reference :=
new String' (Fixed.Insert (Source.Reference.all, Before, New_Item));
Free (Old);
end Insert;
------------
-- Length --
------------
function Length (Source : Unbounded_String) return Natural is
begin
return Source.Reference.all'Length;
end Length;
---------------
-- Overwrite --
---------------
function Overwrite
(Source : Unbounded_String;
Position : Positive;
New_Item : String)
return Unbounded_String is
begin
return To_Unbounded_String
(Fixed.Overwrite (Source.Reference.all, Position, New_Item));
end Overwrite;
procedure Overwrite
(Source : in out Unbounded_String;
Position : in Positive;
New_Item : in String)
is
NL : constant Integer := New_Item'Length;
begin
if Position <= Source.Reference'Length - NL + 1 then
Source.Reference (Position .. Position + NL - 1) := New_Item;
else
declare
Old : String_Access := Source.Reference;
begin
Source.Reference := new
String'(Fixed.Overwrite (Old.all, Position, New_Item));
Free (Old);
end;
end if;
end Overwrite;
---------------------
-- Replace_Element --
---------------------
procedure Replace_Element
(Source : in out Unbounded_String;
Index : Positive;
By : Character)
is
begin
if Index <= Source.Reference.all'Last then
Source.Reference.all (Index) := By;
else
raise Strings.Index_Error;
end if;
end Replace_Element;
-------------------
-- Replace_Slice --
-------------------
function Replace_Slice
(Source : Unbounded_String;
Low : Positive;
High : Natural;
By : String)
return Unbounded_String
is
begin
return
To_Unbounded_String
(Fixed.Replace_Slice (Source.Reference.all, Low, High, By));
end Replace_Slice;
procedure Replace_Slice
(Source : in out Unbounded_String;
Low : in Positive;
High : in Natural;
By : in String)
is
Old : String_Access := Source.Reference;
begin
Source.Reference :=
new String'(Fixed.Replace_Slice (Old.all, Low, High, By));
Free (Old);
end Replace_Slice;
-----------
-- Slice --
-----------
function Slice
(Source : Unbounded_String;
Low : Positive;
High : Natural)
return String
is
Length : constant Natural := Source.Reference'Length;
begin
-- Note: test of High > Length is in accordance with AI95-00128
if Low > Length + 1 or else High > Length then
raise Index_Error;
else
return Source.Reference.all (Low .. High);
end if;
end Slice;
----------
-- Tail --
----------
function Tail
(Source : Unbounded_String;
Count : Natural;
Pad : Character := Space)
return Unbounded_String is
begin
return
To_Unbounded_String (Fixed.Tail (Source.Reference.all, Count, Pad));
end Tail;
procedure Tail
(Source : in out Unbounded_String;
Count : in Natural;
Pad : in Character := Space)
is
Old : String_Access := Source.Reference;
begin
Source.Reference := new String'(Fixed.Tail (Old.all, Count, Pad));
Free (Old);
end Tail;
---------------
-- To_String --
---------------
function To_String (Source : Unbounded_String) return String is
begin
return Source.Reference.all;
end To_String;
-------------------------
-- To_Unbounded_String --
-------------------------
function To_Unbounded_String (Source : String) return Unbounded_String is
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Source'Length);
Result.Reference.all := Source;
return Result;
end To_Unbounded_String;
function To_Unbounded_String
(Length : in Natural)
return Unbounded_String
is
Result : Unbounded_String;
begin
Result.Reference := new String (1 .. Length);
return Result;
end To_Unbounded_String;
---------------
-- Translate --
---------------
function Translate
(Source : Unbounded_String;
Mapping : Maps.Character_Mapping)
return Unbounded_String
is
begin
return
To_Unbounded_String (Fixed.Translate (Source.Reference.all, Mapping));
end Translate;
procedure Translate
(Source : in out Unbounded_String;
Mapping : Maps.Character_Mapping)
is
begin
Fixed.Translate (Source.Reference.all, Mapping);
end Translate;
function Translate
(Source : in Unbounded_String;
Mapping : in Maps.Character_Mapping_Function)
return Unbounded_String
is
begin
return
To_Unbounded_String (Fixed.Translate (Source.Reference.all, Mapping));
end Translate;
procedure Translate
(Source : in out Unbounded_String;
Mapping : in Maps.Character_Mapping_Function)
is
begin
Fixed.Translate (Source.Reference.all, Mapping);
end Translate;
----------
-- Trim --
----------
function Trim
(Source : in Unbounded_String;
Side : in Trim_End)
return Unbounded_String
is
begin
return To_Unbounded_String (Fixed.Trim (Source.Reference.all, Side));
end Trim;
procedure Trim
(Source : in out Unbounded_String;
Side : in Trim_End)
is
Old : String_Access := Source.Reference;
begin
Source.Reference := new String'(Fixed.Trim (Old.all, Side));
Free (Old);
end Trim;
function Trim
(Source : in Unbounded_String;
Left : in Maps.Character_Set;
Right : in Maps.Character_Set)
return Unbounded_String
is
begin
return
To_Unbounded_String (Fixed.Trim (Source.Reference.all, Left, Right));
end Trim;
procedure Trim
(Source : in out Unbounded_String;
Left : in Maps.Character_Set;
Right : in Maps.Character_Set)
is
Old : String_Access := Source.Reference;
begin
Source.Reference := new String'(Fixed.Trim (Old.all, Left, Right));
Free (Old);
end Trim;
end Ada.Strings.Unbounded;
|
with GESTE;
pragma Style_Checks (Off);
package Game_Assets.Tileset is
Tiles : aliased constant GESTE.Tile_Array :=
(
1 => (( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1),
( 1, 1, 1, 1, 1, 1, 1, 1)),
2 => (( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2),
( 2, 2, 2, 2, 2, 2, 2, 2)),
3 => (( 0, 0, 0, 0, 3, 4, 3, 3),
( 0, 0, 0, 5, 3, 4, 6, 3),
( 0, 0, 0, 5, 3, 4, 7, 3),
( 0, 0, 0, 5, 3, 4, 6, 3),
( 0, 0, 0, 5, 3, 4, 3, 3),
( 0, 0, 0, 5, 4, 7, 4, 4),
( 0, 0, 0, 4, 4, 7, 4, 4),
( 0, 0, 0, 0, 4, 7, 4, 4)),
4 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 8, 12, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
5 => (( 15, 16, 16, 16, 16, 16, 16, 15),
( 16, 16, 16, 16, 16, 16, 17, 17),
( 16, 16, 15, 17, 17, 15, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 15, 16, 16, 15, 17, 17),
( 16, 16, 17, 17, 17, 17, 17, 17),
( 15, 17, 17, 17, 17, 17, 17, 15)),
6 => (( 17, 16, 17, 16, 17, 17, 17, 15),
( 17, 15, 15, 17, 15, 17, 15, 15),
( 15, 17, 16, 16, 15, 15, 15, 15),
( 17, 15, 16, 15, 17, 17, 15, 17),
( 17, 17, 16, 15, 15, 17, 15, 17),
( 15, 15, 16, 17, 17, 15, 17, 15),
( 17, 15, 15, 15, 15, 15, 15, 17),
( 17, 17, 17, 17, 15, 17, 17, 17)),
7 => (( 15, 16, 16, 16, 16, 16, 16, 15),
( 16, 16, 16, 16, 16, 16, 17, 17),
( 16, 16, 15, 17, 17, 15, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17)),
8 => (( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 17, 15, 15, 16, 17, 17),
( 16, 16, 15, 16, 16, 15, 17, 17),
( 16, 16, 17, 17, 17, 17, 17, 17),
( 15, 17, 17, 17, 17, 17, 17, 15)),
9 => (( 16, 16, 16, 16, 16, 16, 16, 17),
( 16, 15, 15, 15, 15, 15, 15, 17),
( 16, 15, 16, 16, 16, 17, 15, 17),
( 16, 15, 16, 15, 15, 17, 15, 17),
( 16, 15, 16, 15, 15, 17, 15, 17),
( 16, 15, 16, 17, 17, 17, 15, 17),
( 16, 15, 15, 15, 15, 15, 15, 17),
( 16, 17, 17, 17, 17, 17, 17, 17)),
10 => (( 17, 17, 17, 17, 17, 17, 17, 16),
( 17, 15, 15, 15, 15, 15, 15, 16),
( 17, 15, 17, 17, 17, 16, 15, 16),
( 17, 15, 17, 15, 15, 16, 15, 16),
( 17, 15, 17, 15, 15, 16, 15, 16),
( 17, 15, 17, 16, 16, 16, 15, 16),
( 17, 15, 15, 15, 15, 15, 15, 16),
( 17, 16, 16, 16, 16, 16, 16, 16)),
11 => (( 0, 0, 0, 0, 0, 0, 0, 18),
( 0, 0, 0, 0, 19, 19, 19, 19),
( 0, 0, 0, 19, 20, 20, 20, 20),
( 0, 0, 0, 19, 20, 20, 20, 20),
( 0, 0, 0, 19, 19, 20, 20, 20),
( 0, 0, 0, 19, 20, 20, 20, 18),
( 0, 0, 0, 19, 20, 20, 20, 21),
( 0, 0, 0, 0, 21, 21, 21, 21)),
12 => (( 15, 16, 16, 15, 15, 16, 16, 15),
( 16, 16, 16, 16, 16, 16, 17, 17),
( 16, 16, 15, 17, 17, 15, 17, 17),
( 15, 16, 17, 22, 18, 16, 17, 15),
( 15, 16, 17, 18, 23, 16, 17, 15),
( 16, 16, 15, 16, 16, 15, 17, 17),
( 16, 16, 17, 17, 17, 17, 17, 17),
( 15, 17, 17, 15, 15, 17, 17, 15)),
13 => (( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 23, 0, 0, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0)),
14 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 24),
( 0, 0, 0, 0, 0, 0, 24, 24),
( 0, 0, 0, 0, 0, 0, 24, 24),
( 0, 0, 0, 0, 0, 0, 24, 24),
( 0, 0, 0, 0, 0, 24, 24, 24)),
15 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 24, 24, 25, 0, 0, 0, 0, 0),
( 24, 24, 24, 25, 0, 0, 0, 0),
( 24, 24, 24, 24, 25, 0, 0, 0),
( 24, 24, 24, 24, 25, 0, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0)),
16 => (( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0)),
17 => (( 0, 0, 0, 0, 24, 24, 24, 24),
( 0, 0, 0, 0, 24, 24, 24, 24),
( 0, 0, 0, 24, 24, 24, 24, 24),
( 0, 0, 0, 24, 24, 24, 24, 24),
( 0, 0, 0, 24, 24, 24, 24, 24),
( 0, 0, 0, 0, 24, 24, 24, 24),
( 0, 0, 0, 24, 24, 24, 24, 24),
( 0, 0, 24, 24, 24, 24, 24, 24)),
18 => (( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 24, 24, 25, 0),
( 24, 24, 24, 24, 24, 24, 25, 0),
( 24, 24, 24, 24, 24, 24, 25, 0),
( 24, 24, 24, 24, 24, 24, 25, 0),
( 24, 24, 24, 24, 24, 24, 25, 0),
( 24, 24, 24, 24, 24, 24, 25, 0),
( 24, 24, 24, 24, 24, 25, 0, 0)),
19 => (( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 22, 22, 23, 0, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 22, 22, 18, 23, 0, 0, 0),
( 22, 22, 18, 23, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0)),
20 => (( 0, 0, 24, 24, 24, 24, 24, 24),
( 0, 24, 24, 24, 24, 24, 24, 24),
( 0, 24, 24, 24, 24, 24, 24, 24),
( 0, 24, 24, 24, 24, 24, 24, 24),
( 0, 24, 24, 24, 24, 24, 24, 24),
( 0, 0, 24, 24, 24, 24, 24, 24),
( 0, 0, 24, 24, 24, 24, 24, 24),
( 0, 0, 0, 24, 24, 24, 24, 24)),
21 => (( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 25, 0, 0, 0),
( 24, 24, 24, 25, 0, 0, 0, 0),
( 24, 24, 24, 24, 25, 0, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0)),
22 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 22, 18),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 22, 18, 23),
( 0, 0, 0, 0, 22, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 22, 0),
( 0, 0, 0, 0, 0, 0, 0, 18),
( 0, 0, 0, 0, 0, 0, 0, 0)),
23 => (( 0, 0, 0, 24, 24, 24, 24, 24),
( 0, 0, 0, 24, 24, 24, 24, 24),
( 0, 0, 0, 0, 24, 24, 24, 24),
( 0, 0, 0, 0, 24, 24, 24, 24),
( 0, 0, 0, 0, 24, 24, 24, 24),
( 0, 0, 0, 0, 0, 24, 24, 24),
( 0, 0, 0, 0, 0, 24, 24, 24),
( 0, 0, 0, 0, 0, 25, 25, 25)),
24 => (( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 24, 25, 0, 0),
( 24, 24, 24, 24, 25, 0, 0, 0),
( 24, 24, 24, 24, 25, 0, 0, 0),
( 24, 24, 24, 25, 0, 0, 0, 0),
( 24, 24, 25, 0, 0, 0, 0, 0),
( 25, 25, 0, 0, 0, 0, 0, 0)),
25 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 18, 18),
( 0, 0, 0, 0, 0, 22, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 22, 18),
( 0, 0, 0, 0, 0, 0, 22, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 18)),
26 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 18),
( 0, 0, 0, 0, 18, 0, 22, 18),
( 0, 0, 0, 26, 26, 22, 18, 18),
( 0, 0, 0, 26, 18, 23, 0, 18),
( 0, 0, 0, 0, 18, 0, 0, 23),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
27 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 23, 0, 0, 0, 0, 0, 0, 0),
( 18, 23, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 18, 23, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0)),
28 => (( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 18, 23, 0, 0, 0, 0, 0, 0),
( 22, 18, 0, 0, 0, 0, 0, 0),
( 18, 23, 0, 0, 0, 0, 0, 0),
( 23, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
29 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 23, 23, 0, 23, 23, 0),
( 23, 23, 18, 18, 0, 18, 18, 23),
( 18, 18, 22, 22, 23, 22, 22, 18),
( 22, 22, 22, 22, 22, 22, 22, 22)),
30 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 23, 23, 0, 0, 23, 0, 0),
( 23, 18, 18, 23, 23, 18, 23, 23),
( 18, 22, 22, 18, 18, 22, 18, 18),
( 22, 22, 22, 22, 22, 22, 22, 22)),
31 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 23, 0, 0, 0),
( 0, 0, 23, 23, 18, 23, 0, 0),
( 23, 23, 22, 18, 22, 18, 23, 23),
( 18, 18, 22, 22, 22, 22, 18, 18),
( 22, 22, 22, 22, 22, 22, 22, 22)),
32 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 23, 0, 0, 0, 0, 0, 0, 0),
( 18, 23, 23, 0, 0, 0, 0, 0),
( 22, 18, 23, 0, 0, 0, 0, 0),
( 22, 18, 18, 23, 0, 0, 0, 0)),
33 => (( 0, 0, 23, 18, 22, 18, 22, 22),
( 0, 0, 0, 23, 18, 23, 18, 18),
( 0, 0, 0, 0, 0, 0, 23, 23),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
34 => (( 22, 22, 22, 22, 22, 22, 22, 22),
( 18, 18, 22, 22, 22, 22, 18, 18),
( 23, 23, 18, 22, 18, 22, 23, 23),
( 0, 0, 23, 18, 23, 23, 0, 0),
( 0, 0, 0, 23, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
35 => (( 22, 22, 22, 22, 22, 22, 22, 22),
( 18, 18, 22, 18, 18, 22, 22, 18),
( 23, 23, 18, 23, 23, 18, 18, 23),
( 0, 0, 23, 0, 0, 23, 23, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
36 => (( 22, 22, 22, 22, 22, 22, 22, 22),
( 18, 22, 22, 23, 22, 22, 18, 18),
( 23, 18, 18, 0, 18, 18, 23, 23),
( 0, 23, 23, 0, 23, 23, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
37 => (( 22, 22, 22, 18, 23, 0, 0, 0),
( 18, 18, 18, 23, 0, 0, 0, 0),
( 23, 18, 23, 23, 0, 0, 0, 0),
( 0, 23, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
38 => (( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 23, 18, 22, 22, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 23, 22, 22, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22)),
39 => (( 0, 0, 0, 22, 0, 0, 0, 0),
( 0, 22, 0, 22, 22, 0, 0, 0),
( 0, 22, 22, 0, 18, 0, 0, 0),
( 23, 23, 18, 23, 0, 22, 0, 0),
( 23, 18, 18, 0, 0, 22, 22, 0),
( 0, 0, 22, 22, 0, 0, 0, 0),
( 0, 0, 0, 22, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
40 => (( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 0, 23, 18, 22)),
41 => (( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 0, 0, 23, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 23, 18, 22, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22)),
42 => (( 18, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 22, 0, 0, 0, 0, 0, 0),
( 18, 22, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 22, 0, 0, 0, 0, 0),
( 18, 18, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
43 => (( 0, 0, 26, 0, 0, 0, 0, 0),
( 0, 26, 6, 0, 0, 0, 0, 23),
( 27, 27, 26, 6, 0, 22, 22, 23),
( 26, 27, 26, 18, 22, 22, 18, 18),
( 0, 26, 26, 26, 6, 18, 23, 18),
( 26, 26, 26, 26, 23, 18, 0, 23),
( 0, 26, 6, 0, 0, 0, 0, 23),
( 0, 26, 0, 0, 0, 0, 0, 0)),
44 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 18),
( 0, 0, 0, 0, 0, 0, 19, 19),
( 0, 0, 0, 0, 0, 19, 20, 20),
( 0, 0, 0, 0, 0, 19, 20, 18),
( 0, 0, 0, 0, 0, 0, 21, 21),
( 0, 0, 0, 0, 0, 0, 0, 0)),
45 => (( 0, 0, 0, 5, 0, 0, 0, 0),
( 0, 0, 0, 5, 0, 0, 0, 0),
( 28, 27, 0, 5, 4, 0, 0, 3),
( 27, 27, 29, 5, 4, 3, 4, 3),
( 27, 29, 29, 5, 4, 3, 4, 3),
( 29, 29, 0, 5, 4, 0, 0, 3),
( 0, 0, 0, 5, 0, 0, 0, 0),
( 0, 0, 0, 5, 0, 0, 0, 0)),
46 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 5, 3, 3),
( 0, 0, 0, 0, 0, 5, 4, 4),
( 0, 3, 3, 3, 3, 5, 4, 4),
( 0, 3, 3, 4, 4, 5, 3, 3),
( 0, 3, 3, 3, 3, 4, 4, 4),
( 0, 4, 4, 4, 4, 4, 4, 4),
( 0, 0, 0, 0, 0, 0, 0, 0)),
47 => (( 15, 17, 17, 15, 15, 17, 17, 15),
( 17, 17, 17, 17, 17, 17, 17, 16),
( 17, 17, 15, 15, 15, 15, 16, 16),
( 15, 17, 15, 5, 30, 15, 16, 15),
( 15, 17, 15, 30, 7, 15, 16, 15),
( 17, 17, 15, 15, 15, 15, 16, 16),
( 17, 17, 16, 16, 16, 16, 16, 16),
( 15, 16, 16, 15, 15, 16, 16, 15)),
48 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 22, 0, 0, 0),
( 0, 0, 0, 0, 22, 22, 0, 0),
( 0, 22, 22, 0, 0, 18, 18, 23),
( 0, 0, 22, 0, 23, 18, 23, 23),
( 0, 0, 0, 18, 0, 22, 22, 0),
( 0, 0, 0, 22, 22, 0, 22, 0),
( 0, 0, 0, 0, 22, 0, 0, 0)),
49 => (( 31, 2, 32, 32, 2, 2, 32, 32),
( 31, 2, 32, 32, 2, 2, 32, 32),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 35, 35, 35, 35, 35, 35)),
50 => (( 2, 2, 32, 32, 2, 2, 32, 32),
( 2, 2, 32, 32, 2, 2, 32, 32),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 37, 35, 35, 35, 35, 35, 35, 35)),
51 => (( 2, 2, 32, 32, 2, 2, 32, 32),
( 2, 2, 32, 32, 2, 2, 32, 32),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 37, 35, 35, 35, 35, 35, 31, 2)),
52 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 23),
( 0, 0, 0, 0, 0, 0, 23, 18),
( 0, 0, 0, 0, 0, 0, 18, 22),
( 0, 0, 0, 0, 0, 0, 23, 18),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22)),
53 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 18, 0, 0, 0, 0, 0, 0, 0),
( 0, 22, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 22, 0, 0, 0, 0),
( 23, 18, 22, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 18, 22, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
54 => (( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 23, 18, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 23, 18),
( 0, 0, 0, 0, 0, 0, 0, 23),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
55 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 23, 0, 0, 18, 0, 0, 0, 0),
( 18, 0, 23, 18, 26, 0, 0, 0),
( 18, 18, 22, 26, 26, 0, 0, 0),
( 18, 22, 0, 18, 0, 0, 0, 0),
( 18, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
56 => (( 0, 0, 0, 0, 0, 23, 18, 22),
( 0, 0, 0, 0, 0, 23, 23, 18),
( 0, 0, 0, 0, 0, 0, 0, 23),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
57 => (( 0, 38, 39, 39, 38, 0, 0, 0),
( 38, 39, 40, 40, 39, 38, 0, 0),
( 38, 40, 41, 41, 40, 39, 38, 0),
( 38, 41, 42, 43, 41, 39, 39, 38),
( 38, 41, 42, 42, 41, 39, 39, 38),
( 38, 40, 41, 41, 40, 39, 38, 0),
( 38, 39, 40, 40, 39, 38, 0, 0),
( 0, 38, 39, 39, 38, 0, 0, 0)),
58 => (( 31, 2, 37, 37, 37, 37, 37, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 35, 35, 35, 35, 35, 35)),
59 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 4, 4, 4, 4, 4, 4, 4),
( 0, 3, 3, 3, 3, 4, 4, 4),
( 0, 3, 3, 4, 4, 5, 3, 3),
( 0, 3, 3, 3, 3, 5, 4, 4),
( 0, 0, 0, 0, 0, 5, 4, 4),
( 0, 0, 0, 0, 0, 5, 3, 3),
( 0, 0, 0, 0, 0, 0, 0, 0)),
60 => (( 2, 2, 37, 37, 37, 37, 37, 35),
( 2, 2, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 37, 35, 35, 35, 35, 35, 35, 35)),
61 => (( 31, 2, 37, 37, 37, 37, 37, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 35, 35, 35, 35, 35, 35)),
62 => (( 0, 0, 0, 44, 44, 44, 0, 0),
( 0, 0, 0, 44, 0, 44, 0, 0),
( 45, 44, 44, 44, 0, 0, 0, 0),
( 45, 45, 44, 44, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 45, 45, 44, 0, 0, 0, 0, 0),
( 45, 45, 45, 44, 44, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
63 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 23),
( 0, 0, 0, 0, 0, 0, 23, 18),
( 0, 0, 0, 0, 0, 0, 18, 22),
( 0, 0, 0, 0, 0, 23, 18, 22)),
64 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 23, 23, 0, 0, 0, 0, 0, 0),
( 18, 18, 23, 18, 23, 0, 0, 0),
( 22, 22, 18, 22, 18, 23, 0, 0)),
65 => (( 0, 0, 0, 0, 0, 0, 18, 0),
( 0, 0, 0, 0, 0, 18, 18, 0),
( 0, 0, 0, 18, 0, 0, 23, 0),
( 0, 0, 18, 23, 22, 23, 22, 22),
( 0, 0, 0, 0, 22, 22, 23, 22),
( 0, 0, 0, 0, 0, 18, 23, 0),
( 0, 0, 0, 0, 18, 18, 0, 0),
( 0, 0, 0, 0, 0, 18, 0, 0)),
66 => (( 36, 37, 37, 37, 37, 37, 37, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 32, 32, 2, 2, 32, 32, 2, 2),
( 32, 32, 2, 2, 32, 32, 2, 2)),
67 => (( 36, 37, 37, 37, 37, 37, 37, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 37, 35, 35, 35, 35, 35, 35, 35)),
68 => (( 0, 0, 0, 5, 0, 0, 0, 0),
( 0, 0, 0, 5, 0, 0, 0, 0),
( 0, 0, 0, 5, 4, 0, 0, 3),
( 0, 0, 0, 5, 4, 3, 4, 3),
( 0, 0, 0, 5, 4, 3, 4, 3),
( 0, 0, 0, 5, 4, 0, 0, 3),
( 0, 0, 0, 5, 0, 0, 0, 0),
( 0, 0, 0, 5, 0, 0, 0, 0)),
69 => (( 0, 0, 0, 0, 0, 15, 3, 3),
( 0, 0, 3, 4, 0, 15, 46, 3),
( 0, 0, 3, 7, 4, 15, 7, 3),
( 0, 0, 3, 7, 7, 15, 46, 3),
( 0, 0, 3, 7, 7, 15, 3, 3),
( 0, 0, 3, 7, 7, 17, 4, 4),
( 0, 0, 4, 4, 7, 17, 4, 4),
( 0, 0, 0, 4, 4, 17, 4, 4)),
70 => (( 47, 47, 47, 47, 47, 47, 47, 47),
( 31, 31, 31, 31, 31, 31, 31, 31),
( 31, 0, 0, 0, 31, 0, 0, 0),
( 31, 31, 0, 0, 31, 31, 0, 0),
( 31, 31, 31, 0, 31, 31, 31, 0),
( 31, 0, 0, 31, 31, 0, 0, 31),
( 47, 47, 47, 47, 47, 47, 47, 47),
( 31, 31, 31, 31, 31, 31, 31, 31)),
71 => (( 0, 0, 0, 0, 0, 0, 0, 16),
( 0, 0, 0, 0, 0, 0, 16, 15),
( 0, 0, 0, 19, 20, 20, 20, 15),
( 0, 0, 19, 20, 20, 20, 20, 16),
( 0, 0, 21, 19, 19, 19, 20, 15),
( 0, 0, 0, 21, 21, 21, 21, 17),
( 0, 0, 0, 0, 0, 0, 17, 15),
( 0, 0, 0, 0, 0, 0, 0, 17)),
72 => (( 31, 2, 37, 37, 37, 37, 37, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 33, 32, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 31, 2, 34, 34, 34, 34, 34, 35),
( 33, 32, 2, 2, 32, 32, 2, 2),
( 33, 32, 2, 2, 32, 32, 2, 2)),
73 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 36, 36, 36, 36, 36, 36),
( 0, 36, 34, 34, 34, 34, 34, 34),
( 0, 36, 34, 35, 35, 35, 35, 35),
( 0, 36, 34, 35, 36, 36, 36, 36),
( 0, 36, 34, 35, 36, 34, 34, 34),
( 0, 36, 34, 35, 36, 34, 35, 35),
( 0, 36, 34, 35, 36, 34, 35, 0)),
74 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 36, 36, 36, 36, 35, 36, 36, 36),
( 34, 34, 34, 36, 35, 34, 34, 34),
( 35, 35, 35, 36, 35, 35, 35, 35),
( 36, 36, 36, 36, 35, 36, 36, 36),
( 34, 34, 34, 36, 35, 34, 34, 34),
( 35, 35, 35, 36, 35, 35, 35, 35),
( 0, 0, 0, 0, 0, 0, 0, 0)),
75 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 36, 36, 36, 36, 36, 36, 36, 36),
( 34, 34, 34, 34, 34, 34, 34, 34),
( 35, 35, 35, 35, 35, 35, 35, 35),
( 36, 36, 36, 36, 36, 36, 36, 36),
( 34, 34, 34, 34, 34, 34, 34, 34),
( 35, 35, 35, 35, 35, 35, 35, 35),
( 0, 0, 0, 0, 0, 0, 0, 0)),
76 => (( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0)),
77 => (( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 36, 36, 36, 36, 36, 35),
( 0, 36, 35, 35, 35, 35, 35, 35),
( 0, 36, 35, 34, 35, 34, 35, 35),
( 0, 36, 35, 34, 35, 34, 35, 35),
( 0, 36, 35, 35, 35, 35, 35, 35),
( 0, 35, 35, 35, 35, 35, 35, 35),
( 0, 36, 34, 35, 36, 34, 35, 0)),
78 => (( 36, 37, 37, 37, 37, 37, 37, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 2, 2),
( 37, 35, 35, 35, 35, 35, 2, 2)),
79 => (( 36, 37, 37, 37, 37, 37, 37, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 32, 32, 34, 34, 34, 34, 34, 35),
( 32, 32, 35, 35, 35, 35, 35, 35)),
80 => (( 36, 37, 37, 37, 37, 37, 33, 32),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 37, 35, 35, 35, 35, 35, 31, 2)),
81 => (( 47, 47, 47, 47, 47, 47, 47, 31),
( 47, 35, 35, 35, 35, 35, 35, 31),
( 47, 34, 31, 34, 31, 34, 31, 31),
( 47, 34, 31, 34, 31, 34, 31, 31),
( 47, 34, 31, 34, 31, 34, 31, 31),
( 47, 34, 31, 34, 31, 34, 31, 31),
( 47, 35, 35, 35, 35, 35, 35, 31),
( 47, 31, 31, 31, 31, 31, 31, 31)),
82 => (( 0, 0, 31, 48, 0, 0, 0, 0),
( 31, 31, 31, 48, 0, 0, 0, 0),
( 0, 0, 31, 48, 0, 0, 0, 0),
( 0, 0, 31, 48, 0, 0, 0, 0),
( 0, 0, 31, 48, 0, 0, 0, 0),
( 0, 0, 31, 48, 0, 0, 0, 0),
( 31, 31, 31, 48, 0, 0, 0, 0),
( 0, 0, 31, 48, 0, 0, 0, 0)),
83 => (( 36, 37, 37, 37, 37, 37, 32, 32),
( 36, 34, 34, 34, 34, 34, 32, 32),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 36, 34, 34, 34, 34, 34, 34, 35),
( 37, 35, 35, 35, 35, 35, 35, 35)),
84 => (( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 31, 31, 31),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0)),
85 => (( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 31, 31, 31),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 31, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
86 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 31, 31, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 31, 31, 31),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0),
( 0, 0, 0, 0, 31, 0, 0, 0)),
87 => (( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 36),
( 0, 36, 34, 35, 36, 34, 34, 34),
( 0, 36, 34, 35, 36, 35, 35, 35),
( 0, 36, 34, 35, 36, 36, 36, 36),
( 0, 36, 34, 34, 34, 34, 34, 34),
( 0, 0, 35, 35, 35, 35, 35, 35),
( 0, 0, 0, 0, 0, 0, 0, 0)),
88 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 36, 36, 36, 36, 36, 36, 0, 0),
( 34, 34, 34, 34, 34, 34, 35, 0),
( 35, 35, 35, 35, 35, 34, 35, 0),
( 36, 36, 36, 35, 36, 34, 35, 0),
( 34, 34, 34, 35, 36, 34, 35, 0),
( 35, 35, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0)),
89 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 31, 47, 31, 47, 31, 47, 31, 47),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 31, 47, 31, 47, 31, 47, 31, 47),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
90 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 34, 34, 35, 35, 0, 0),
( 31, 34, 35, 35, 35, 35, 47, 0),
( 0, 34, 35, 35, 0, 47, 31, 0),
( 0, 34, 35, 35, 0, 0, 31, 0),
( 31, 34, 35, 35, 0, 0, 31, 0),
( 0, 0, 35, 35, 0, 31, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
91 => (( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 36, 36, 36, 36, 36, 0),
( 0, 35, 35, 35, 35, 35, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0),
( 0, 36, 34, 35, 36, 34, 35, 0)),
92 => (( 0, 36, 34, 35, 36, 34, 35, 0),
( 36, 36, 34, 35, 36, 34, 35, 0),
( 34, 34, 34, 35, 36, 34, 35, 0),
( 35, 35, 35, 35, 36, 34, 35, 0),
( 36, 36, 36, 36, 36, 34, 35, 0),
( 34, 34, 34, 34, 34, 34, 35, 0),
( 35, 35, 35, 35, 35, 35, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
93 => (( 36, 37, 37, 37, 37, 37, 33, 32),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 36, 34, 34, 34, 34, 34, 31, 2),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 36, 34, 34, 34, 34, 34, 33, 32),
( 32, 32, 2, 2, 32, 32, 2, 2),
( 32, 32, 2, 2, 32, 32, 2, 2)),
94 => (( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50),
( 49, 50, 50, 50, 50, 50, 50, 50)),
95 => (( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 50, 50, 50, 50, 50, 50, 50)),
96 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 49, 49, 49, 0, 0, 0, 0),
( 49, 50, 50, 51, 0, 0, 0, 0),
( 49, 50, 50, 51, 0, 0, 0, 0),
( 0, 51, 51, 51, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
97 => (( 18, 23, 0, 0, 0, 0, 0, 0),
( 22, 18, 0, 0, 0, 0, 0, 0),
( 18, 23, 0, 0, 0, 0, 0, 0),
( 23, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
98 => (( 16, 16, 16, 16, 16, 16, 16, 15),
( 16, 16, 16, 16, 16, 16, 17, 17),
( 17, 17, 17, 17, 17, 15, 17, 17),
( 15, 15, 15, 15, 15, 16, 17, 17),
( 15, 15, 15, 15, 15, 16, 17, 17),
( 16, 16, 16, 16, 16, 15, 17, 17),
( 17, 17, 17, 17, 17, 17, 17, 17),
( 17, 17, 17, 17, 17, 17, 17, 15)),
99 => (( 15, 16, 16, 16, 16, 16, 16, 16),
( 16, 16, 16, 16, 16, 16, 16, 16),
( 16, 16, 15, 17, 17, 17, 17, 17),
( 16, 16, 17, 15, 15, 15, 15, 15),
( 16, 16, 17, 15, 15, 15, 15, 15),
( 16, 16, 15, 16, 16, 16, 16, 16),
( 16, 16, 17, 17, 17, 17, 17, 17),
( 15, 17, 17, 17, 17, 17, 17, 17)),
100 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 23, 0),
( 0, 0, 0, 0, 23, 23, 18, 23),
( 0, 0, 0, 0, 23, 18, 18, 18),
( 0, 0, 0, 23, 18, 22, 22, 22)),
101 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 52, 52, 55, 56, 52),
( 52, 54, 52, 55, 52, 56, 56, 52),
( 52, 54, 52, 55, 56, 56, 57, 52),
( 52, 55, 52, 56, 56, 57, 57, 52),
( 52, 52, 52, 52, 52, 52, 52, 52)),
102 => (( 0, 0, 52, 52, 52, 52, 52, 52),
( 0, 52, 52, 53, 54, 54, 55, 52),
( 52, 52, 53, 54, 54, 55, 55, 52),
( 52, 53, 54, 52, 55, 55, 52, 52),
( 52, 54, 52, 52, 55, 56, 52, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 56, 56, 57, 57, 52),
( 0, 52, 52, 52, 52, 52, 52, 52)),
103 => (( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 58, 53, 53, 54, 54, 55, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 52, 54, 54, 55, 52, 52, 52),
( 0, 52, 52, 55, 55, 56, 52, 0),
( 52, 52, 55, 55, 56, 52, 52, 52),
( 52, 55, 55, 56, 56, 57, 57, 52),
( 52, 52, 52, 52, 52, 52, 52, 52)),
104 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 54, 52, 55, 56, 52),
( 52, 54, 52, 55, 52, 56, 56, 52),
( 52, 54, 52, 55, 52, 56, 57, 52),
( 52, 55, 52, 52, 52, 57, 57, 52),
( 52, 52, 52, 0, 52, 52, 52, 52)),
105 => (( 0, 0, 52, 52, 52, 0, 0, 0),
( 0, 0, 52, 53, 52, 0, 0, 0),
( 0, 0, 52, 54, 52, 0, 0, 0),
( 0, 0, 52, 54, 52, 0, 0, 0),
( 0, 0, 52, 55, 52, 0, 0, 0),
( 0, 0, 52, 55, 52, 0, 0, 0),
( 0, 0, 52, 52, 52, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
106 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 52, 52, 55, 56, 52),
( 52, 54, 52, 52, 52, 56, 56, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 56, 56, 57, 52, 52),
( 0, 52, 52, 52, 52, 52, 52, 0)),
107 => (( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 58, 53, 53, 54, 54, 55, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 52, 52, 52, 52, 55, 56, 52),
( 52, 52, 52, 52, 55, 56, 52, 52),
( 52, 54, 55, 55, 56, 52, 52, 0),
( 52, 55, 55, 56, 52, 52, 0, 0),
( 52, 52, 52, 52, 52, 0, 0, 0)),
108 => (( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 58, 53, 53, 54, 54, 55, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 52, 55, 55, 52, 52),
( 52, 54, 52, 52, 55, 56, 52, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 56, 56, 52, 57, 52),
( 0, 52, 52, 52, 52, 52, 52, 52)),
109 => (( 52, 52, 52, 0, 0, 0, 0, 0),
( 52, 58, 52, 0, 0, 0, 0, 0),
( 52, 53, 52, 52, 52, 52, 52, 52),
( 52, 53, 54, 54, 55, 55, 56, 52),
( 52, 54, 54, 55, 55, 56, 56, 52),
( 52, 54, 52, 52, 52, 52, 52, 52),
( 52, 55, 52, 0, 0, 0, 0, 0),
( 52, 52, 52, 0, 0, 0, 0, 0)),
110 => (( 52, 52, 52, 0, 0, 52, 52, 52),
( 52, 58, 52, 0, 0, 52, 55, 52),
( 52, 53, 52, 52, 52, 52, 55, 52),
( 52, 53, 54, 54, 55, 55, 56, 52),
( 52, 54, 54, 55, 55, 56, 56, 52),
( 52, 54, 52, 52, 52, 52, 57, 52),
( 52, 55, 52, 0, 0, 52, 57, 52),
( 52, 52, 52, 0, 0, 52, 52, 52)),
111 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 52, 52, 55, 56, 52),
( 52, 54, 52, 0, 52, 56, 56, 52),
( 52, 54, 52, 0, 52, 56, 57, 52),
( 52, 55, 52, 0, 52, 57, 57, 52),
( 52, 52, 52, 0, 52, 52, 52, 52)),
112 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 53, 54, 52, 55, 55, 56, 52),
( 52, 54, 54, 52, 55, 56, 56, 52),
( 52, 52, 52, 52, 52, 52, 52, 52),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
113 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 5, 30, 0, 0, 0),
( 0, 0, 0, 30, 7, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
114 => (( 52, 52, 52, 52, 52, 0, 0, 0),
( 52, 58, 53, 53, 52, 52, 0, 0),
( 52, 53, 53, 54, 54, 52, 52, 52),
( 52, 52, 52, 54, 55, 55, 56, 52),
( 52, 52, 52, 55, 55, 56, 56, 52),
( 52, 54, 55, 55, 56, 52, 52, 52),
( 52, 55, 55, 56, 52, 52, 0, 0),
( 52, 52, 52, 52, 52, 0, 0, 0)),
115 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 12, 10, 0),
( 9, 11, 12, 13, 12, 8, 14, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 59, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
116 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 53, 53, 54, 54, 52, 55, 52),
( 52, 53, 54, 54, 55, 52, 52, 52),
( 52, 52, 54, 55, 52, 52, 0, 0),
( 0, 52, 52, 52, 52, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
117 => (( 0, 52, 52, 52, 52, 52, 52, 52),
( 52, 52, 53, 52, 52, 54, 55, 52),
( 52, 53, 53, 54, 52, 55, 55, 52),
( 52, 53, 54, 54, 52, 55, 56, 52),
( 52, 54, 52, 55, 55, 56, 56, 52),
( 52, 54, 52, 55, 56, 56, 57, 52),
( 52, 52, 52, 52, 56, 57, 52, 52),
( 0, 0, 0, 52, 52, 52, 52, 0)),
118 => (( 0, 0, 38, 39, 39, 38, 0, 0),
( 0, 38, 39, 40, 40, 39, 38, 0),
( 0, 38, 40, 41, 41, 40, 39, 38),
( 0, 38, 41, 41, 42, 43, 39, 38),
( 0, 38, 41, 41, 42, 42, 39, 38),
( 0, 38, 40, 41, 41, 40, 39, 38),
( 0, 38, 39, 40, 40, 39, 38, 0),
( 0, 0, 38, 39, 39, 38, 0, 0)),
119 => (( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 58, 53, 53, 54, 54, 55, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 52, 52, 54, 55, 52, 52, 52),
( 52, 52, 52, 55, 55, 52, 52, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 55, 55, 56, 56, 57, 57, 52),
( 52, 52, 52, 52, 52, 52, 52, 52)),
120 => (( 0, 0, 0, 38, 39, 39, 38, 0),
( 0, 0, 38, 39, 40, 40, 39, 38),
( 0, 0, 38, 40, 41, 41, 40, 38),
( 0, 0, 38, 42, 43, 41, 41, 38),
( 0, 0, 38, 42, 42, 41, 41, 38),
( 0, 0, 38, 40, 41, 41, 40, 38),
( 0, 0, 38, 39, 40, 40, 39, 38),
( 0, 0, 0, 38, 39, 39, 38, 0)),
121 => (( 60, 61, 61, 61, 61, 61, 62, 0),
( 61, 63, 64, 64, 63, 64, 63, 65),
( 61, 64, 65, 61, 64, 65, 65, 65),
( 61, 64, 65, 61, 64, 65, 0, 0),
( 61, 64, 65, 61, 64, 65, 0, 0),
( 62, 64, 61, 60, 63, 65, 0, 0),
( 0, 62, 64, 63, 65, 65, 0, 0),
( 0, 0, 65, 65, 65, 0, 0, 0)),
122 => (( 60, 61, 61, 61, 61, 61, 62, 0),
( 62, 64, 64, 62, 63, 64, 63, 65),
( 0, 65, 65, 61, 64, 65, 65, 65),
( 0, 0, 0, 61, 64, 65, 0, 0),
( 0, 0, 0, 61, 64, 65, 0, 0),
( 60, 61, 61, 60, 62, 61, 62, 0),
( 62, 64, 64, 64, 64, 64, 63, 65),
( 0, 65, 65, 65, 65, 65, 65, 65)),
123 => (( 0, 60, 61, 61, 61, 62, 0, 0),
( 60, 63, 64, 64, 64, 62, 62, 0),
( 61, 64, 65, 65, 65, 61, 64, 65),
( 61, 64, 65, 0, 0, 61, 64, 65),
( 61, 64, 65, 0, 0, 61, 64, 65),
( 62, 64, 61, 0, 61, 60, 63, 65),
( 0, 62, 64, 65, 62, 63, 65, 65),
( 0, 0, 65, 65, 0, 65, 65, 0)),
124 => (( 60, 61, 61, 61, 61, 61, 62, 2),
( 62, 64, 64, 64, 64, 62, 64, 65),
( 0, 65, 65, 65, 65, 66, 64, 65),
( 0, 0, 0, 0, 0, 61, 64, 65),
( 0, 0, 0, 0, 0, 61, 64, 65),
( 0, 0, 0, 0, 0, 61, 64, 65),
( 0, 0, 0, 0, 0, 62, 63, 65),
( 0, 0, 0, 0, 0, 0, 65, 65)),
125 => (( 60, 61, 61, 61, 61, 61, 62, 0),
( 61, 63, 64, 62, 64, 62, 64, 65),
( 61, 64, 65, 66, 65, 66, 64, 65),
( 61, 64, 65, 61, 65, 61, 64, 65),
( 61, 64, 65, 61, 65, 61, 64, 65),
( 61, 64, 65, 61, 65, 61, 64, 65),
( 62, 63, 65, 0, 65, 62, 63, 65),
( 0, 65, 65, 0, 0, 0, 65, 65)),
126 => (( 60, 61, 61, 61, 61, 61, 62, 0),
( 61, 63, 64, 64, 63, 64, 63, 65),
( 61, 64, 65, 61, 62, 65, 65, 65),
( 61, 64, 65, 61, 61, 62, 0, 0),
( 61, 64, 65, 61, 64, 61, 62, 0),
( 62, 64, 61, 60, 65, 62, 66, 65),
( 0, 62, 64, 63, 65, 0, 62, 65),
( 0, 0, 65, 65, 65, 0, 0, 65)),
127 => (( 0, 0, 52, 52, 52, 0, 0, 0),
( 52, 52, 52, 53, 52, 0, 0, 0),
( 52, 53, 53, 54, 52, 0, 0, 0),
( 52, 53, 54, 52, 52, 0, 0, 0),
( 52, 52, 52, 52, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
128 => (( 0, 60, 61, 61, 61, 61, 62, 0),
( 60, 63, 64, 62, 63, 64, 63, 65),
( 61, 64, 65, 61, 64, 65, 65, 65),
( 61, 64, 65, 61, 64, 65, 0, 0),
( 61, 64, 65, 61, 64, 65, 0, 0),
( 62, 62, 61, 60, 62, 61, 62, 0),
( 0, 62, 64, 64, 64, 64, 63, 65),
( 0, 0, 65, 65, 65, 65, 65, 65)),
129 => (( 0, 52, 52, 52, 52, 52, 52, 52),
( 0, 52, 53, 53, 54, 54, 55, 52),
( 0, 52, 53, 54, 54, 55, 55, 52),
( 0, 52, 54, 52, 52, 52, 52, 52),
( 0, 52, 54, 52, 52, 52, 52, 52),
( 0, 52, 55, 55, 56, 56, 57, 52),
( 0, 52, 52, 56, 56, 57, 57, 52),
( 0, 0, 52, 52, 52, 52, 52, 52)),
130 => (( 60, 61, 61, 62, 0, 0, 0, 0),
( 62, 64, 64, 64, 62, 0, 0, 0),
( 0, 65, 65, 61, 64, 65, 0, 0),
( 0, 0, 0, 61, 62, 61, 61, 0),
( 0, 0, 0, 61, 63, 64, 63, 65),
( 60, 61, 61, 60, 63, 65, 65, 65),
( 62, 64, 64, 63, 65, 65, 0, 0),
( 0, 65, 65, 65, 65, 0, 0, 0)),
131 => (( 60, 61, 61, 61, 61, 61, 62, 0),
( 61, 63, 64, 64, 64, 62, 64, 65),
( 61, 64, 65, 65, 65, 66, 64, 65),
( 61, 64, 65, 0, 0, 61, 64, 65),
( 61, 64, 65, 0, 0, 61, 64, 65),
( 62, 64, 66, 61, 61, 60, 63, 65),
( 0, 62, 64, 64, 64, 63, 65, 65),
( 0, 0, 65, 65, 65, 65, 65, 0)),
132 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 60, 61, 61, 61, 61, 61, 62, 0),
( 62, 64, 64, 64, 64, 64, 63, 65),
( 0, 65, 65, 65, 65, 65, 65, 65),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
133 => (( 52, 52, 52, 52, 52, 52, 52, 0),
( 52, 58, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 52, 52, 52, 52, 55, 56, 52),
( 0, 0, 0, 0, 52, 52, 56, 52),
( 0, 0, 0, 0, 0, 52, 57, 52),
( 0, 0, 0, 0, 0, 52, 57, 52),
( 0, 0, 0, 0, 0, 52, 52, 52)),
134 => (( 60, 62, 0, 0, 0, 0, 0, 0),
( 61, 64, 65, 0, 0, 0, 0, 0),
( 61, 64, 65, 0, 0, 0, 0, 0),
( 61, 62, 66, 61, 61, 61, 62, 0),
( 61, 63, 64, 64, 64, 64, 63, 65),
( 61, 64, 65, 65, 65, 65, 65, 65),
( 62, 63, 65, 0, 0, 0, 0, 0),
( 0, 65, 65, 0, 0, 0, 0, 0)),
135 => (( 0, 60, 61, 62, 60, 62, 0, 0),
( 60, 63, 64, 62, 62, 61, 62, 0),
( 61, 64, 65, 66, 64, 61, 64, 65),
( 61, 64, 65, 61, 64, 61, 64, 65),
( 61, 64, 65, 61, 64, 61, 64, 65),
( 62, 64, 65, 62, 64, 62, 63, 65),
( 0, 62, 65, 0, 62, 63, 65, 65),
( 0, 0, 65, 0, 0, 65, 65, 0)),
136 => (( 0, 0, 0, 0, 3, 15, 3, 3),
( 0, 0, 0, 5, 3, 15, 46, 3),
( 0, 0, 0, 5, 3, 15, 7, 3),
( 0, 0, 0, 5, 3, 15, 46, 3),
( 0, 0, 0, 5, 3, 15, 3, 3),
( 0, 0, 0, 5, 4, 17, 4, 4),
( 0, 0, 0, 4, 4, 17, 4, 4),
( 0, 0, 0, 0, 4, 17, 4, 4)),
137 => (( 67, 68, 0, 0, 0, 0, 0, 0),
( 69, 70, 71, 0, 0, 0, 0, 0),
( 69, 70, 71, 0, 0, 0, 0, 0),
( 69, 68, 72, 69, 69, 69, 68, 0),
( 69, 73, 70, 70, 70, 70, 73, 71),
( 69, 70, 71, 71, 71, 71, 71, 71),
( 68, 73, 71, 0, 0, 0, 0, 0),
( 0, 71, 71, 0, 0, 0, 0, 0)),
138 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 69, 73, 70, 68, 73, 70, 73, 71),
( 69, 70, 71, 72, 70, 71, 71, 71),
( 69, 70, 71, 69, 70, 71, 0, 0),
( 69, 70, 71, 69, 70, 71, 0, 0),
( 69, 70, 71, 68, 73, 71, 0, 0),
( 68, 73, 71, 0, 71, 71, 0, 0),
( 0, 71, 71, 0, 0, 0, 0, 0)),
139 => (( 0, 67, 69, 68, 67, 68, 0, 0),
( 67, 73, 70, 68, 68, 69, 68, 0),
( 69, 70, 71, 72, 70, 69, 70, 71),
( 69, 70, 71, 69, 70, 69, 70, 71),
( 69, 70, 71, 69, 70, 69, 70, 71),
( 68, 70, 71, 68, 70, 68, 73, 71),
( 0, 68, 71, 0, 68, 73, 71, 71),
( 0, 0, 71, 0, 0, 71, 71, 0)),
140 => (( 0, 67, 69, 69, 69, 69, 68, 0),
( 67, 73, 70, 68, 73, 70, 73, 71),
( 69, 70, 71, 69, 70, 71, 71, 71),
( 69, 70, 71, 69, 70, 71, 0, 0),
( 69, 70, 71, 69, 70, 71, 0, 0),
( 68, 68, 69, 67, 68, 69, 68, 0),
( 0, 68, 70, 70, 70, 70, 73, 71),
( 0, 0, 71, 71, 71, 71, 71, 71)),
141 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 68, 69, 73, 70, 70, 70, 73, 71),
( 0, 68, 69, 68, 71, 71, 71, 71),
( 0, 0, 68, 69, 68, 0, 0, 0),
( 0, 0, 0, 68, 69, 68, 0, 0),
( 67, 69, 69, 69, 68, 69, 68, 0),
( 68, 70, 70, 70, 70, 70, 73, 71),
( 0, 71, 71, 71, 71, 71, 71, 71)),
142 => (( 0, 67, 69, 69, 69, 68, 0, 0),
( 67, 73, 70, 70, 70, 68, 68, 0),
( 69, 70, 71, 71, 71, 69, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 68, 70, 69, 0, 69, 67, 73, 71),
( 0, 68, 70, 71, 68, 73, 71, 71),
( 0, 0, 71, 71, 0, 71, 71, 0)),
143 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 67, 69, 69, 69, 69, 69, 68, 0),
( 68, 70, 70, 70, 70, 70, 73, 71),
( 0, 71, 71, 71, 71, 71, 71, 71),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
144 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 69, 73, 70, 70, 73, 70, 73, 71),
( 69, 70, 71, 69, 70, 71, 71, 71),
( 69, 70, 71, 69, 70, 71, 0, 0),
( 69, 70, 71, 69, 70, 71, 0, 0),
( 68, 70, 69, 67, 73, 71, 0, 0),
( 0, 68, 70, 73, 71, 71, 0, 0),
( 0, 0, 71, 71, 71, 0, 0, 0)),
145 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 69, 73, 70, 70, 73, 70, 73, 71),
( 69, 70, 71, 69, 68, 71, 71, 71),
( 69, 70, 71, 69, 69, 68, 0, 0),
( 69, 70, 71, 69, 70, 69, 68, 0),
( 68, 70, 69, 67, 71, 68, 72, 71),
( 0, 68, 70, 73, 71, 0, 68, 71),
( 0, 0, 71, 71, 71, 0, 0, 71)),
146 => (( 0, 67, 69, 69, 69, 68, 0, 0),
( 67, 73, 70, 70, 70, 70, 68, 0),
( 69, 70, 71, 71, 71, 69, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 68, 70, 69, 69, 69, 69, 73, 71),
( 0, 68, 70, 70, 70, 73, 71, 71),
( 0, 0, 71, 71, 71, 71, 71, 0)),
147 => (( 67, 69, 69, 69, 69, 69, 68, 2),
( 68, 70, 70, 70, 70, 68, 70, 71),
( 0, 71, 71, 71, 71, 72, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 0, 0, 0, 0, 0, 68, 73, 71),
( 0, 0, 0, 0, 0, 0, 71, 71)),
148 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 68, 69, 73, 70, 70, 70, 73, 71),
( 0, 68, 69, 68, 71, 71, 71, 71),
( 0, 0, 68, 69, 68, 0, 0, 0),
( 0, 67, 72, 73, 71, 71, 0, 0),
( 67, 72, 73, 70, 68, 69, 68, 0),
( 68, 70, 70, 70, 70, 70, 73, 71),
( 0, 71, 71, 71, 71, 71, 71, 71)),
149 => (( 0, 67, 69, 69, 69, 68, 0, 0),
( 67, 73, 70, 70, 70, 70, 68, 0),
( 69, 70, 71, 71, 71, 69, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 69, 70, 71, 67, 69, 69, 70, 71),
( 68, 70, 71, 69, 70, 67, 73, 71),
( 0, 68, 71, 68, 70, 73, 71, 71),
( 0, 0, 71, 0, 71, 71, 71, 0)),
150 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 69, 73, 70, 70, 70, 68, 70, 71),
( 69, 70, 71, 71, 71, 72, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 69, 70, 71, 0, 0, 69, 70, 71),
( 68, 70, 72, 69, 69, 67, 73, 71),
( 0, 68, 70, 70, 70, 73, 71, 71),
( 0, 0, 71, 71, 71, 71, 71, 0)),
151 => (( 0, 69, 69, 69, 69, 69, 68, 0),
( 67, 73, 70, 68, 70, 68, 70, 71),
( 69, 70, 71, 69, 71, 69, 70, 71),
( 69, 70, 71, 69, 71, 69, 70, 71),
( 69, 70, 71, 69, 71, 67, 70, 71),
( 68, 72, 69, 68, 67, 70, 73, 71),
( 0, 68, 70, 71, 68, 73, 71, 71),
( 0, 0, 71, 71, 0, 71, 71, 0)),
152 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 69, 73, 70, 68, 70, 68, 70, 71),
( 69, 70, 71, 72, 71, 72, 70, 71),
( 69, 70, 71, 69, 71, 69, 70, 71),
( 69, 70, 71, 69, 71, 69, 70, 71),
( 69, 70, 71, 69, 71, 69, 70, 71),
( 68, 73, 71, 0, 71, 68, 73, 71),
( 0, 71, 71, 0, 0, 0, 71, 71)),
153 => (( 0, 0, 69, 69, 70, 0, 0, 0),
( 0, 0, 69, 72, 70, 0, 0, 0),
( 69, 69, 69, 72, 70, 70, 70, 0),
( 69, 72, 72, 72, 72, 72, 70, 71),
( 70, 70, 70, 72, 73, 73, 73, 71),
( 0, 0, 70, 72, 73, 71, 71, 71),
( 0, 0, 70, 70, 73, 71, 0, 0),
( 0, 0, 0, 71, 71, 71, 0, 0)),
154 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 67, 72, 0, 67, 72, 0, 0),
( 0, 72, 70, 71, 72, 70, 71, 0),
( 0, 0, 71, 71, 0, 71, 71, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
155 => (( 67, 69, 69, 68, 0, 0, 0, 0),
( 68, 70, 70, 70, 68, 0, 0, 0),
( 0, 71, 71, 69, 70, 71, 0, 0),
( 0, 0, 0, 69, 68, 69, 69, 0),
( 0, 0, 0, 69, 73, 70, 73, 71),
( 67, 69, 69, 67, 73, 71, 71, 71),
( 68, 70, 70, 73, 71, 71, 0, 0),
( 0, 71, 71, 71, 71, 0, 0, 0)),
156 => (( 67, 69, 69, 68, 0, 0, 0, 0),
( 68, 70, 68, 69, 68, 0, 0, 0),
( 0, 71, 71, 68, 69, 68, 0, 0),
( 0, 0, 0, 0, 68, 69, 68, 0),
( 0, 0, 0, 0, 72, 73, 71, 71),
( 67, 69, 67, 72, 73, 71, 71, 0),
( 68, 70, 70, 73, 71, 71, 0, 0),
( 0, 71, 71, 71, 71, 0, 0, 0)),
157 => (( 0, 0, 67, 68, 0, 0, 0, 0),
( 0, 0, 69, 70, 71, 0, 0, 0),
( 0, 0, 69, 70, 71, 0, 0, 0),
( 0, 0, 69, 70, 71, 0, 0, 0),
( 0, 0, 69, 70, 71, 0, 0, 0),
( 0, 0, 69, 70, 71, 0, 0, 0),
( 0, 0, 68, 73, 71, 0, 0, 0),
( 0, 0, 0, 71, 71, 0, 0, 0)),
158 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 67, 72, 0, 0),
( 0, 0, 0, 0, 72, 70, 71, 0),
( 0, 0, 0, 0, 0, 71, 71, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
159 => (( 67, 69, 69, 69, 69, 69, 68, 0),
( 68, 70, 70, 68, 73, 70, 73, 71),
( 0, 71, 71, 69, 70, 71, 71, 71),
( 0, 0, 0, 69, 70, 71, 0, 0),
( 0, 0, 0, 69, 70, 71, 0, 0),
( 67, 69, 69, 67, 68, 69, 68, 0),
( 68, 70, 70, 70, 70, 70, 73, 71),
( 0, 71, 71, 71, 71, 71, 71, 71)),
160 => (( 67, 69, 69, 69, 69, 68, 0, 0),
( 68, 70, 70, 70, 70, 70, 68, 0),
( 0, 71, 71, 71, 71, 69, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 67, 69, 69, 69, 69, 67, 73, 71),
( 68, 70, 70, 70, 70, 73, 71, 71),
( 0, 71, 71, 71, 71, 71, 71, 0)),
161 => (( 0, 67, 69, 69, 69, 68, 0, 0),
( 67, 73, 70, 70, 70, 70, 68, 0),
( 69, 70, 71, 71, 71, 68, 70, 71),
( 69, 70, 71, 0, 0, 72, 70, 71),
( 69, 70, 71, 0, 69, 68, 70, 71),
( 68, 70, 69, 69, 68, 68, 73, 71),
( 0, 68, 70, 70, 70, 73, 71, 71),
( 0, 0, 71, 71, 71, 71, 71, 0)),
162 => (( 0, 0, 67, 69, 72, 0, 0, 0),
( 0, 0, 69, 72, 68, 71, 0, 0),
( 0, 0, 69, 72, 68, 71, 0, 0),
( 69, 69, 67, 72, 70, 68, 68, 0),
( 0, 68, 72, 72, 72, 70, 71, 71),
( 0, 0, 68, 72, 70, 71, 71, 0),
( 0, 0, 0, 68, 71, 71, 0, 0),
( 0, 0, 0, 0, 71, 0, 0, 0)),
163 => (( 67, 69, 0, 0, 0, 67, 68, 0),
( 68, 70, 68, 68, 69, 72, 73, 71),
( 0, 71, 69, 72, 72, 73, 71, 71),
( 0, 0, 0, 72, 73, 71, 71, 0),
( 0, 0, 72, 72, 70, 71, 0, 0),
( 0, 72, 73, 70, 72, 69, 69, 0),
( 68, 73, 71, 71, 70, 70, 73, 71),
( 0, 71, 71, 0, 0, 71, 71, 71)),
164 => (( 0, 0, 0, 0, 67, 68, 0, 0),
( 0, 0, 0, 0, 70, 70, 68, 0),
( 0, 0, 0, 0, 0, 72, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 0, 0, 0, 0, 0, 69, 70, 71),
( 67, 69, 69, 69, 69, 67, 73, 71),
( 68, 70, 70, 70, 70, 73, 71, 71),
( 0, 71, 71, 71, 71, 71, 71, 0)),
165 => (( 0, 0, 60, 61, 66, 0, 0, 0),
( 0, 0, 61, 66, 62, 65, 0, 0),
( 0, 0, 61, 66, 62, 65, 0, 0),
( 61, 61, 60, 66, 64, 62, 62, 0),
( 0, 62, 66, 66, 66, 64, 65, 65),
( 0, 0, 62, 66, 64, 65, 65, 0),
( 0, 0, 0, 62, 65, 65, 0, 0),
( 0, 0, 0, 0, 65, 0, 0, 0)),
166 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
167 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 54, 52, 52, 55, 56, 52),
( 52, 54, 54, 52, 52, 56, 56, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 56, 56, 57, 52, 52),
( 0, 52, 52, 52, 52, 52, 52, 0)),
168 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 52, 52, 52, 52, 0, 0, 0, 0),
( 52, 53, 53, 52, 52, 52, 52, 52),
( 52, 53, 54, 54, 55, 55, 56, 52),
( 52, 52, 54, 55, 55, 56, 56, 52),
( 0, 52, 52, 52, 52, 52, 52, 52),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
169 => (( 0, 0, 0, 52, 52, 52, 52, 0),
( 52, 52, 52, 52, 54, 54, 52, 52),
( 52, 53, 52, 54, 54, 55, 55, 52),
( 52, 53, 52, 54, 55, 55, 56, 52),
( 52, 54, 54, 55, 52, 56, 56, 52),
( 52, 54, 55, 55, 52, 56, 57, 52),
( 52, 52, 55, 52, 52, 57, 57, 52),
( 0, 52, 52, 52, 52, 52, 52, 52)),
170 => (( 52, 52, 52, 0, 52, 52, 52, 52),
( 52, 58, 52, 52, 52, 54, 55, 52),
( 52, 53, 52, 54, 52, 55, 55, 52),
( 52, 53, 52, 54, 52, 55, 56, 52),
( 52, 54, 54, 55, 55, 56, 56, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 52, 56, 57, 52, 52),
( 0, 52, 52, 52, 52, 52, 52, 0)),
171 => (( 0, 52, 52, 52, 52, 52, 0, 0),
( 52, 52, 53, 53, 54, 52, 52, 0),
( 52, 53, 53, 54, 54, 55, 52, 0),
( 52, 53, 52, 52, 55, 55, 52, 0),
( 52, 52, 52, 52, 55, 56, 52, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 55, 55, 56, 56, 57, 57, 52),
( 52, 52, 52, 52, 52, 52, 52, 52)),
172 => (( 52, 52, 52, 52, 52, 52, 52, 52),
( 52, 58, 53, 53, 52, 54, 55, 52),
( 52, 53, 53, 54, 52, 55, 55, 52),
( 52, 53, 52, 54, 52, 55, 56, 52),
( 52, 54, 52, 55, 55, 56, 56, 52),
( 52, 54, 52, 55, 56, 56, 57, 52),
( 52, 55, 52, 52, 56, 57, 52, 52),
( 52, 52, 52, 52, 52, 52, 52, 0)),
173 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 53, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 54, 52, 55, 56, 52),
( 52, 54, 52, 55, 52, 56, 56, 52),
( 52, 52, 52, 55, 56, 56, 57, 52),
( 0, 0, 52, 52, 56, 57, 52, 52),
( 0, 0, 0, 52, 52, 52, 52, 0)),
174 => (( 52, 52, 52, 0, 0, 0, 0, 0),
( 52, 58, 52, 52, 52, 52, 52, 52),
( 52, 53, 52, 52, 54, 55, 55, 52),
( 52, 53, 52, 54, 55, 55, 56, 52),
( 52, 54, 54, 55, 55, 52, 52, 52),
( 52, 54, 55, 55, 52, 52, 0, 0),
( 52, 52, 55, 52, 52, 0, 0, 0),
( 0, 52, 52, 52, 0, 0, 0, 0)),
175 => (( 0, 52, 52, 52, 52, 52, 52, 0),
( 52, 52, 53, 52, 54, 54, 52, 52),
( 52, 53, 53, 54, 54, 55, 55, 52),
( 52, 53, 52, 54, 52, 55, 56, 52),
( 52, 54, 54, 55, 55, 56, 56, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 52, 56, 57, 52, 52),
( 0, 52, 52, 52, 52, 52, 52, 0)),
176 => (( 0, 52, 52, 52, 0, 0, 0, 0),
( 52, 52, 53, 52, 52, 52, 52, 52),
( 52, 53, 53, 54, 52, 55, 55, 52),
( 52, 53, 52, 54, 52, 55, 56, 52),
( 52, 54, 52, 55, 52, 56, 56, 52),
( 52, 54, 55, 55, 56, 56, 57, 52),
( 52, 52, 55, 56, 56, 57, 52, 52),
( 0, 52, 52, 52, 52, 52, 52, 0)),
177 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 52, 52, 52, 52),
( 0, 0, 0, 0, 52, 55, 55, 52),
( 0, 0, 0, 0, 52, 55, 56, 52),
( 0, 0, 0, 0, 52, 52, 52, 52),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
178 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 74, 74, 74, 0),
( 0, 0, 0, 74, 32, 32, 32, 75),
( 0, 0, 0, 74, 32, 33, 76, 75),
( 0, 0, 0, 0, 76, 76, 75, 0),
( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
179 => (( 0, 0, 0, 38, 39, 39, 38, 0),
( 0, 0, 38, 39, 40, 40, 39, 38),
( 0, 0, 38, 40, 41, 41, 40, 38),
( 0, 0, 38, 41, 41, 42, 43, 38),
( 0, 0, 38, 41, 41, 42, 42, 38),
( 0, 0, 38, 40, 41, 41, 40, 38),
( 0, 0, 38, 39, 40, 40, 39, 38),
( 0, 0, 0, 38, 39, 39, 38, 0)),
180 => (( 0, 0, 0, 38, 39, 39, 38, 0),
( 0, 0, 38, 39, 40, 40, 39, 38),
( 0, 0, 38, 40, 41, 41, 40, 38),
( 0, 0, 38, 41, 42, 43, 41, 38),
( 0, 0, 38, 41, 42, 42, 41, 38),
( 0, 0, 38, 40, 41, 41, 40, 38),
( 0, 0, 38, 39, 40, 40, 39, 38),
( 0, 0, 0, 38, 39, 39, 38, 0)),
181 => (( 0, 0, 38, 39, 39, 38, 0, 0),
( 0, 38, 39, 40, 40, 39, 38, 0),
( 0, 38, 40, 41, 41, 40, 39, 38),
( 0, 38, 42, 43, 41, 41, 39, 38),
( 0, 38, 42, 42, 41, 41, 39, 38),
( 0, 38, 40, 41, 41, 40, 39, 38),
( 0, 38, 39, 40, 40, 39, 38, 0),
( 0, 0, 38, 39, 39, 38, 0, 0)),
182 => (( 0, 38, 39, 39, 38, 0, 0, 0),
( 38, 39, 40, 40, 39, 38, 0, 0),
( 38, 40, 41, 41, 40, 39, 38, 0),
( 38, 42, 43, 41, 41, 39, 39, 38),
( 38, 42, 42, 41, 41, 39, 39, 38),
( 38, 40, 41, 41, 40, 39, 38, 0),
( 38, 39, 40, 40, 39, 38, 0, 0),
( 0, 38, 39, 39, 38, 0, 0, 0)),
183 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 8, 14, 13),
( 9, 11, 12, 12, 12, 8, 12, 0),
( 11, 11, 12, 13, 12, 8, 14, 13),
( 0, 11, 11, 12, 12, 8, 12, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
184 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 9, 0, 0, 8, 10, 10, 0),
( 9, 11, 12, 13, 8, 14, 14, 13),
( 9, 11, 12, 12, 8, 12, 14, 0),
( 11, 11, 12, 13, 12, 8, 14, 13),
( 0, 11, 11, 12, 12, 8, 12, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
185 => (( 0, 0, 0, 0, 0, 0, 0, 0),
( 0, 8, 0, 0, 10, 10, 10, 0),
( 9, 11, 8, 13, 12, 14, 14, 13),
( 9, 11, 12, 8, 12, 14, 14, 0),
( 11, 11, 12, 13, 8, 14, 14, 13),
( 0, 11, 11, 12, 12, 8, 12, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
186 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 8, 12, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
187 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 12, 10, 0),
( 9, 11, 12, 13, 12, 8, 14, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
188 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 12, 14, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
189 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 59, 14, 13),
( 9, 11, 12, 12, 12, 12, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
190 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 12, 14, 13),
( 9, 11, 12, 12, 59, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
191 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 12, 14, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 59, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 0)),
192 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 8, 12, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 77, 0)),
193 => (( 0, 0, 0, 0, 0, 8, 0, 0),
( 0, 9, 0, 0, 10, 8, 10, 0),
( 9, 11, 12, 13, 12, 8, 12, 13),
( 9, 11, 12, 12, 12, 8, 14, 0),
( 11, 11, 12, 13, 12, 8, 12, 13),
( 0, 11, 11, 12, 12, 10, 14, 13),
( 0, 0, 0, 11, 10, 14, 14, 0),
( 0, 0, 0, 0, 0, 0, 0, 77)),
194 => (( 50, 50, 50, 50, 50, 50, 50, 50),
( 50, 49, 49, 49, 49, 49, 49, 50),
( 50, 49, 50, 50, 50, 50, 49, 50),
( 50, 49, 50, 49, 49, 50, 49, 50),
( 50, 49, 50, 49, 49, 50, 49, 50),
( 50, 49, 50, 50, 50, 50, 49, 50),
( 50, 49, 49, 49, 49, 49, 49, 50),
( 50, 50, 50, 50, 50, 50, 50, 50)));
end Game_Assets.Tileset;
|
with Libadalang.Common; use Libadalang.Common;
with Rejuvenation.Finder; use Rejuvenation.Finder;
with Rejuvenation.Node_Locations; use Rejuvenation.Node_Locations;
with Rejuvenation.Text_Rewrites; use Rejuvenation.Text_Rewrites;
package body Rewriters_Minimal_Parentheses is
overriding function Rewrite_Context
(RMP : Rewriter_Minimal_Parentheses; Node : Ada_Node'Class)
return Ada_Node
is
begin
if Node.Is_Null
or else Node.Kind not in Ada_Expr
or else Node.Parent.Is_Null
then
return Node.As_Ada_Node;
else
return Node.Parent;
end if;
end Rewrite_Context;
function Are_Brackets_Syntactically_Mandatory
(ParenExpr : Paren_Expr) return Boolean;
function Are_Brackets_Syntactically_Mandatory
(ParenExpr : Paren_Expr) return Boolean
-- for more info: see https://gt3-prod-2.adacore.com/#/tickets/U908-032
is
Parent : constant Ada_Node := ParenExpr.Parent;
begin
return
Parent.Is_Null
or else Parent.Kind in Ada_Expr_Function | Ada_Qual_Expr;
end Are_Brackets_Syntactically_Mandatory;
function Are_Brackets_Necessary (ParenExpr : Paren_Expr) return Boolean;
-- Are Brackets necessary for this ParenExpr?
function Are_Brackets_Necessary (ParenExpr : Paren_Expr) return Boolean
-- A conservative implementation
is
begin
case ParenExpr.F_Expr.Kind is
when Ada_If_Expr | Ada_Case_Expr | Ada_Quantified_Expr |
Ada_Decl_Expr =>
-- see http://www.ada-auth.org/standards/12rat/html/Rat12-3-2.html
-- conservative: we don't remove when used in positional call
-- with single parameter
return True;
when Ada_Bin_Op | Ada_Relation_Op | Ada_Un_Op | Ada_Membership_Expr |
Ada_Paren_Expr =>
-- conservative: we don't remove when used in left operand
-- e.g. (a + b) + c <==> a + b + c
-- conservative, yet local handling of special case
-- 'parenthesis directly within parenthesis'
-- assume most inner-expression in parenthesis would require brackets
declare
Parent : constant Ada_Node := ParenExpr.Parent;
begin
return
Parent.Is_Null
or else Parent.Kind in Ada_Bin_Op | Ada_Relation_Op |
Ada_Un_Op | Ada_Membership_Expr;
end;
when others =>
return False;
end case;
end Are_Brackets_Necessary;
overriding function Rewrite
(RMP : Rewriter_Minimal_Parentheses; Node : Ada_Node'Class;
Top_Level : Boolean := True) return String
is
TR : Text_Rewrite :=
Make_Text_Rewrite_Node
(Node, Trivia_On_Same_Line, Trivia_On_Same_Line);
begin
for PE_Node of Find (Node, Ada_Paren_Expr) loop
declare
ParenExpr : constant Paren_Expr := PE_Node.As_Paren_Expr;
begin
if not Are_Brackets_Syntactically_Mandatory (ParenExpr)
and then not Are_Brackets_Necessary (ParenExpr)
then
TR.ReplaceAround
(Node => ParenExpr, Before_Text => "",
Innernode => ParenExpr.F_Expr, After_Text => "",
Charset => Node.Unit.Get_Charset);
end if;
end;
end loop;
return TR.ApplyToString;
end Rewrite;
end Rewriters_Minimal_Parentheses;
|
with Common_Formal_Containers; use Common_Formal_Containers;
package AFRL.CMASI.AutomationResponse.SPARK_Boundary with SPARK_Mode is
pragma Annotate (GNATprove, Terminating, SPARK_Boundary);
function Get_WaypointEntity_Set
(Response : AutomationResponse) return Int64_Set
with Global => null;
end AFRL.CMASI.AutomationResponse.SPARK_Boundary;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 1 0 --
-- --
-- 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. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 10
package System.Pack_10 is
pragma Preelaborate;
Bits : constant := 10;
type Bits_10 is mod 2 ** Bits;
for Bits_10'Size use Bits;
-- In all subprograms below, Rev_SSO is set True if the array has the
-- non-default scalar storage order.
function Get_10
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_10 with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_10
(Arr : System.Address;
N : Natural;
E : Bits_10;
Rev_SSO : Boolean) with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value.
function GetU_10
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_10 with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned. This version
-- is used when Arr may represent an unaligned address.
procedure SetU_10
(Arr : System.Address;
N : Natural;
E : Bits_10;
Rev_SSO : Boolean) with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value. This version
-- is used when Arr may represent an unaligned address
end System.Pack_10;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- M L I B . T G T --
-- (True64 Version) --
-- --
-- B o d y --
-- --
-- Copyright (C) 2002-2005 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides a set of target dependent routines to build
-- static, dynamic and shared libraries.
-- This is the True64 version of the body
with MLib.Fil;
with MLib.Utl;
with Namet; use Namet;
with Opt;
with Output; use Output;
with Prj.Com;
with System;
package body MLib.Tgt is
use GNAT;
use MLib;
Expect_Unresolved : aliased String := "-Wl,-expect_unresolved,*";
---------------------
-- Archive_Builder --
---------------------
function Archive_Builder return String is
begin
return "ar";
end Archive_Builder;
-----------------------------
-- Archive_Builder_Options --
-----------------------------
function Archive_Builder_Options return String_List_Access is
begin
return new String_List'(1 => new String'("cr"));
end Archive_Builder_Options;
-----------------
-- Archive_Ext --
-----------------
function Archive_Ext return String is
begin
return "a";
end Archive_Ext;
---------------------
-- Archive_Indexer --
---------------------
function Archive_Indexer return String is
begin
return "ranlib";
end Archive_Indexer;
-----------------------------
-- Archive_Indexer_Options --
-----------------------------
function Archive_Indexer_Options return String_List_Access is
begin
return new String_List (1 .. 0);
end Archive_Indexer_Options;
---------------------------
-- Build_Dynamic_Library --
---------------------------
procedure Build_Dynamic_Library
(Ofiles : Argument_List;
Foreign : Argument_List;
Afiles : Argument_List;
Options : Argument_List;
Options_2 : Argument_List;
Interfaces : Argument_List;
Lib_Filename : String;
Lib_Dir : String;
Symbol_Data : Symbol_Record;
Driver_Name : Name_Id := No_Name;
Lib_Version : String := "";
Auto_Init : Boolean := False)
is
pragma Unreferenced (Foreign);
pragma Unreferenced (Afiles);
pragma Unreferenced (Interfaces);
pragma Unreferenced (Symbol_Data);
pragma Unreferenced (Auto_Init);
-- Initialization is done through the contructor mechanism
Lib_File : constant String :=
Lib_Dir & Directory_Separator & "lib" &
Fil.Ext_To (Lib_Filename, DLL_Ext);
Version_Arg : String_Access;
Symbolic_Link_Needed : Boolean := False;
begin
if Opt.Verbose_Mode then
Write_Str ("building relocatable shared library ");
Write_Line (Lib_File);
end if;
-- If specified, add automatic elaboration/finalization
if Lib_Version = "" then
Utl.Gcc
(Output_File => Lib_File,
Objects => Ofiles,
Options => Options & Expect_Unresolved'Access,
Options_2 => Options_2,
Driver_Name => Driver_Name);
else
Version_Arg := new String'("-Wl,-soname," & Lib_Version);
if Is_Absolute_Path (Lib_Version) then
Utl.Gcc
(Output_File => Lib_Version,
Objects => Ofiles,
Options =>
Options & Version_Arg & Expect_Unresolved'Access,
Options_2 => Options_2,
Driver_Name => Driver_Name);
Symbolic_Link_Needed := Lib_Version /= Lib_File;
else
Utl.Gcc
(Output_File => Lib_Dir & Directory_Separator & Lib_Version,
Objects => Ofiles,
Options =>
Options & Version_Arg & Expect_Unresolved'Access,
Options_2 => Options_2,
Driver_Name => Driver_Name);
Symbolic_Link_Needed :=
Lib_Dir & Directory_Separator & Lib_Version /= Lib_File;
end if;
if Symbolic_Link_Needed then
declare
Success : Boolean;
Oldpath : String (1 .. Lib_Version'Length + 1);
Newpath : String (1 .. Lib_File'Length + 1);
Result : Integer;
pragma Unreferenced (Result);
function Symlink
(Oldpath : System.Address;
Newpath : System.Address)
return Integer;
pragma Import (C, Symlink, "__gnat_symlink");
begin
Oldpath (1 .. Lib_Version'Length) := Lib_Version;
Oldpath (Oldpath'Last) := ASCII.NUL;
Newpath (1 .. Lib_File'Length) := Lib_File;
Newpath (Newpath'Last) := ASCII.NUL;
Delete_File (Lib_File, Success);
Result := Symlink (Oldpath'Address, Newpath'Address);
end;
end if;
end if;
end Build_Dynamic_Library;
-------------
-- DLL_Ext --
-------------
function DLL_Ext return String is
begin
return "so";
end DLL_Ext;
----------------
-- DLL_Prefix --
----------------
function DLL_Prefix return String is
begin
return "lib";
end DLL_Prefix;
--------------------
-- Dynamic_Option --
--------------------
function Dynamic_Option return String is
begin
return "-shared";
end Dynamic_Option;
-------------------
-- Is_Object_Ext --
-------------------
function Is_Object_Ext (Ext : String) return Boolean is
begin
return Ext = ".o";
end Is_Object_Ext;
--------------
-- Is_C_Ext --
--------------
function Is_C_Ext (Ext : String) return Boolean is
begin
return Ext = ".c";
end Is_C_Ext;
--------------------
-- Is_Archive_Ext --
--------------------
function Is_Archive_Ext (Ext : String) return Boolean is
begin
return Ext = ".a" or else Ext = ".so";
end Is_Archive_Ext;
-------------
-- Libgnat --
-------------
function Libgnat return String is
begin
return "libgnat.a";
end Libgnat;
------------------------
-- Library_Exists_For --
------------------------
function Library_Exists_For
(Project : Project_Id; In_Tree : Project_Tree_Ref) return Boolean
is
begin
if not In_Tree.Projects.Table (Project).Library then
Prj.Com.Fail ("INTERNAL ERROR: Library_Exists_For called " &
"for non library project");
return False;
else
declare
Lib_Dir : constant String :=
Get_Name_String
(In_Tree.Projects.Table (Project).Library_Dir);
Lib_Name : constant String :=
Get_Name_String
(In_Tree.Projects.Table (Project).Library_Name);
begin
if In_Tree.Projects.Table (Project).Library_Kind =
Static
then
return Is_Regular_File
(Lib_Dir & Directory_Separator & "lib" &
Fil.Ext_To (Lib_Name, Archive_Ext));
else
return Is_Regular_File
(Lib_Dir & Directory_Separator & "lib" &
Fil.Ext_To (Lib_Name, DLL_Ext));
end if;
end;
end if;
end Library_Exists_For;
---------------------------
-- Library_File_Name_For --
---------------------------
function Library_File_Name_For
(Project : Project_Id;
In_Tree : Project_Tree_Ref) return Name_Id
is
begin
if not In_Tree.Projects.Table (Project).Library then
Prj.Com.Fail ("INTERNAL ERROR: Library_File_Name_For called " &
"for non library project");
return No_Name;
else
declare
Lib_Name : constant String :=
Get_Name_String
(In_Tree.Projects.Table (Project).Library_Name);
begin
Name_Len := 3;
Name_Buffer (1 .. Name_Len) := "lib";
if In_Tree.Projects.Table (Project).Library_Kind =
Static
then
Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, Archive_Ext));
else
Add_Str_To_Name_Buffer (Fil.Ext_To (Lib_Name, DLL_Ext));
end if;
return Name_Find;
end;
end if;
end Library_File_Name_For;
----------------
-- Object_Ext --
----------------
function Object_Ext return String is
begin
return "o";
end Object_Ext;
----------------
-- PIC_Option --
----------------
function PIC_Option return String is
begin
return "";
end PIC_Option;
-----------------------------------------------
-- Standalone_Library_Auto_Init_Is_Supported --
-----------------------------------------------
function Standalone_Library_Auto_Init_Is_Supported return Boolean is
begin
return True;
end Standalone_Library_Auto_Init_Is_Supported;
---------------------------
-- Support_For_Libraries --
---------------------------
function Support_For_Libraries return Library_Support is
begin
return Full;
end Support_For_Libraries;
end MLib.Tgt;
|
-- CE2205A.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK WHETHER READ FOR A SEQUENTIAL FILE RAISES DATA_ERROR OR
-- CONSTRAINT_ERROR WHEN AN ELEMENT IS READ THAT IS OUTSIDE THE
-- RANGE OF THE ITEM TYPE BUT WITHIN THE RANGE OF THE INSTANTIATED
-- TYPE, AND CHECK THAT READING CAN CONTINUE AFTER THE EXCEPTION
-- HAS BEEN HANDLED.
-- A) CHECK ENUMERATION TYPE.
-- APPLICABILITY CRITERIA:
-- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH
-- SUPPORT SEQUENTIAL FILES.
-- HISTORY:
-- SPS 09/28/82
-- JBG 06/04/84
-- TBN 11/04/86 REVISED TEST TO OUTPUT A NON_APPLICABLE
-- RESULT WHEN FILES ARE NOT SUPPORTED.
-- GMT 07/24/87 RENAMED FROM CE2210A.ADA AND REMOVED THE USE OF
-- RESET.
-- PWB 05/18/89 DELETED CALL TO FAILED WHEN NO EXCEPTION RAISED.
WITH REPORT; USE REPORT;
WITH SEQUENTIAL_IO;
PROCEDURE CE2205A IS
BEGIN
TEST ("CE2205A", "CHECK WHETHER READ FOR A SEQUENTIAL FILE " &
"RAISES DATA_ERROR OR CONSTRAINT_ERROR WHEN " &
"AN ELEMENT IS READ THAT IS OUTSIDE THE RANGE " &
"OF THE ITEM TYPE BUT WITHIN THE RANGE OF THE " &
"INSTANTIATED TYPE, AND CHECK THAT READING CAN " &
"CONTINUE AFTER THE EXCEPTION HAS BEEN HANDLED");
DECLARE
PACKAGE SEQ IS NEW SEQUENTIAL_IO (CHARACTER);
USE SEQ;
FT : FILE_TYPE;
SUBTYPE CH IS CHARACTER RANGE 'A' .. 'D';
X : CH;
INCOMPLETE : EXCEPTION;
BEGIN
BEGIN
CREATE (FT, OUT_FILE, LEGAL_FILE_NAME);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("USE_ERROR RAISED ON SEQUENTIAL " &
"CREATE WITH OUT_FILE MODE - 1");
RAISE INCOMPLETE;
WHEN NAME_ERROR =>
NOT_APPLICABLE ("NAME_ERROR RAISED ON SEQUENTIAL " &
"CREATE WITH OUT_FILE MODE - 2");
RAISE INCOMPLETE;
WHEN OTHERS =>
FAILED ("UNEXPECTED EXCEPTION RAISED ON " &
"SEQUENTIAL CREATE - 3");
RAISE INCOMPLETE;
END;
WRITE (FT, 'A');
WRITE (FT, 'M');
WRITE (FT, 'B');
WRITE (FT, 'C');
CLOSE (FT);
BEGIN
OPEN (FT, IN_FILE, LEGAL_FILE_NAME);
EXCEPTION
WHEN USE_ERROR =>
NOT_APPLICABLE ("OPEN WITH IN_FILE MODE IS NOT " &
"SUPPORTED - 4");
RAISE INCOMPLETE;
END;
-- BEGIN TEST
READ (FT, X);
IF X /= 'A' THEN
FAILED ("INCORRECT VALUE FOR READ - 5");
END IF;
BEGIN
READ (FT, X);
COMMENT ("NO EXCEPTION RAISED FOR READ WITH ELEMENT " &
"OUT OF RANGE");
EXCEPTION
WHEN CONSTRAINT_ERROR =>
COMMENT ("CONSTRAINT_ERROR RAISED FOR SCALAR " &
"TYPES - 7");
WHEN DATA_ERROR =>
COMMENT ("DATA_ERROR RAISED FOR SCALAR TYPES - 8");
WHEN OTHERS =>
FAILED ("WRONG EXCEPTION RAISED - 9");
END;
BEGIN
READ (FT, X);
IF X /= 'B' THEN
FAILED ("INCORRECT VALUE FOR READ - 10");
END IF;
READ (FT, X);
IF X /= 'C' THEN
FAILED ("INCORRECT VALUE FOR READ - 11");
END IF;
EXCEPTION
WHEN OTHERS =>
FAILED ("UNABLE TO CONTINUE READING - 12");
RAISE INCOMPLETE;
END;
BEGIN
DELETE (FT);
EXCEPTION
WHEN USE_ERROR =>
NULL;
END;
EXCEPTION
WHEN INCOMPLETE =>
NULL;
END;
RESULT;
END CE2205A;
|
<?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>Loop_2_proc</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>13</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>out_data</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>1</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs class_id="7" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_2">
<Value>
<Obj>
<type>1</type>
<id>2</id>
<name>out_last_V</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>1</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>p_read</name>
<fileName></fileName>
<fileDirectory></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>
<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>tmp_data_V_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>
<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>tmp_data_V_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>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>tmp_data_V_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>
<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>tmp_data_V_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>
<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>tmp_data_V_4</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>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>tmp_data_V_5</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>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>tmp_data_V_6</name>
<fileName></fileName>
<fileDirectory></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>
<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>tmp_data_V_7</name>
<fileName></fileName>
<fileDirectory></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>
<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>tmp_data_V_8</name>
<fileName></fileName>
<fileDirectory></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>
<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>tmp_data_V_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>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>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>72</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>p_read_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>93</item>
<item>94</item>
</oprand_edges>
<opcode>read</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>_ln0</name>
<fileName></fileName>
<fileDirectory></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>95</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>j3_0_i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>97</item>
<item>98</item>
<item>99</item>
<item>100</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>icmp_ln37</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="11" tracking_level="0" version="0">
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</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>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>101</item>
<item>103</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.30</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>j</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>104</item>
<item>106</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.73</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>_ln37</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>37</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>107</item>
<item>108</item>
<item>109</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>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>icmp_ln38</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>38</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>110</item>
<item>112</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.30</m_delay>
<m_topoIndex>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>last</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>38</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>38</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>last</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>113</item>
<item>114</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.97</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>tmp_data_V_0_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>116</item>
<item>117</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="_23">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>tmp_data_V_1_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>118</item>
<item>119</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="_24">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_data_V_2_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>120</item>
<item>121</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="_25">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_data_V_3_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>122</item>
<item>123</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="_26">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_data_V_4_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>124</item>
<item>125</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="_27">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>tmp_data_V_5_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>126</item>
<item>127</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="_28">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>tmp_data_V_6_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>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>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>tmp_data_V_7_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>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>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>tmp_data_V_8_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>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>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>tmp_data_V_9_read</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>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="_32">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>tmp_V_3</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>12</count>
<item_version>0</item_version>
<item>137</item>
<item>138</item>
<item>139</item>
<item>140</item>
<item>141</item>
<item>142</item>
<item>143</item>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
<item>148</item>
</oprand_edges>
<opcode>mux</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.63</m_delay>
<m_topoIndex>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>icmp_ln935</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>149</item>
<item>151</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.55</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>p_Result_6</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>153</item>
<item>154</item>
<item>156</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>tmp_V</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>157</item>
<item>158</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.91</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_V_4</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>tmp.V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>159</item>
<item>160</item>
<item>161</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.24</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>p_Result_s</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>163</item>
<item>164</item>
<item>165</item>
<item>167</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>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>p_Result_7</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>169</item>
<item>171</item>
<item>172</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>l</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>l</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>174</item>
<item>175</item>
<item>177</item>
</oprand_edges>
<opcode>cttz</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>3.39</m_delay>
<m_topoIndex>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>sub_ln944</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>179</item>
<item>180</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>trunc_ln944</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>181</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="_42">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>lsb_index</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lsb_index</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>183</item>
<item>184</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>tmp</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>186</item>
<item>187</item>
<item>189</item>
<item>191</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="_44">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>icmp_ln947</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>192</item>
<item>194</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.47</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>trunc_ln947</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>195</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>34</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>sub_ln947</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>196</item>
<item>197</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.73</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>zext_ln947</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>198</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>36</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>lshr_ln947</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>200</item>
<item>201</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>p_Result_4</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>202</item>
<item>203</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>38</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>icmp_ln947_1</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>204</item>
<item>205</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.39</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>a</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>a</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>206</item>
<item>207</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>40</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>tmp_102</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>209</item>
<item>210</item>
<item>211</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>xor_ln949</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>212</item>
<item>213</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>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>add_ln949</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>215</item>
<item>216</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.91</m_delay>
<m_topoIndex>43</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_Result_3</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>218</item>
<item>219</item>
<item>220</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>and_ln949</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>221</item>
<item>222</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>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>or_ln949</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>223</item>
<item>224</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>46</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>or_ln_i</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>226</item>
<item>227</item>
<item>228</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.97</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>m</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>229</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>49</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>zext_ln957_1</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>230</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>50</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>icmp_ln958</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>231</item>
<item>232</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.47</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>add_ln958</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>234</item>
<item>235</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>lshr_ln958</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>236</item>
<item>237</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>zext_ln958</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>238</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>53</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>sub_ln958</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>240</item>
<item>241</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.55</m_delay>
<m_topoIndex>54</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>zext_ln958_1</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>242</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>55</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>shl_ln958</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>243</item>
<item>244</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>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>m_1</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>245</item>
<item>246</item>
<item>247</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>zext_ln961</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>58</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>m_2</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</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>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>4.42</m_delay>
<m_topoIndex>59</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>m_5</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>63</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>252</item>
<item>253</item>
<item>254</item>
<item>256</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>m_6</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>257</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>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>tmp_103</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>259</item>
<item>260</item>
<item>261</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>select_ln964</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>262</item>
<item>264</item>
<item>266</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.24</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>trunc_ln943</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>267</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>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>sub_ln964</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>269</item>
<item>270</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>64</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>add_ln964</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>271</item>
<item>272</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.66</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>tmp_429_i</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>274</item>
<item>275</item>
<item>276</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_79">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>p_Result_8</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>278</item>
<item>279</item>
<item>280</item>
<item>282</item>
<item>283</item>
</oprand_edges>
<opcode>partset</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_80">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>trunc_ln738</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>284</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>85</id>
<name>bitcast_ln739</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</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>285</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>86</id>
<name>select_ln935</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>39</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>286</item>
<item>288</item>
<item>289</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.69</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>out_last_V_write_ln23</name>
<fileName>firmware/myproject_axi.h</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>23</lineNumber>
<contextFuncName>operator=</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>39</second>
</item>
<item>
<first>
<first>firmware/myproject_axi.h</first>
<second>operator=</second>
</first>
<second>23</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>291</item>
<item>292</item>
<item>293</item>
<item>294</item>
<item>295</item>
</oprand_edges>
<opcode>write</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>_ln37</name>
<fileName>firmware/myproject_axi.cpp</fileName>
<fileDirectory>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>myproject_axi</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/data/armita/Andy/platform_ml_models/eembc/CIFAR10_ResNetv1/my-hls-test-quantized-tiny2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/myproject_axi.cpp</first>
<second>myproject_axi</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>296</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>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>_ln0</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>24</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_86">
<Value>
<Obj>
<type>2</type>
<id>96</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_87">
<Value>
<Obj>
<type>2</type>
<id>102</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>10</content>
</item>
<item class_id_reference="16" object_id="_88">
<Value>
<Obj>
<type>2</type>
<id>105</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_89">
<Value>
<Obj>
<type>2</type>
<id>111</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>9</content>
</item>
<item class_id_reference="16" object_id="_90">
<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>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_91">
<Value>
<Obj>
<type>2</type>
<id>155</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_92">
<Value>
<Obj>
<type>2</type>
<id>166</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_93">
<Value>
<Obj>
<type>2</type>
<id>170</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<const_type>0</const_type>
<content>16777215</content>
</item>
<item class_id_reference="16" object_id="_94">
<Value>
<Obj>
<type>2</type>
<id>176</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_95">
<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>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_96">
<Value>
<Obj>
<type>2</type>
<id>182</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>4294967272</content>
</item>
<item class_id_reference="16" object_id="_97">
<Value>
<Obj>
<type>2</type>
<id>188</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_98">
<Value>
<Obj>
<type>2</type>
<id>190</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_99">
<Value>
<Obj>
<type>2</type>
<id>193</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_100">
<Value>
<Obj>
<type>2</type>
<id>199</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>255</content>
</item>
<item class_id_reference="16" object_id="_101">
<Value>
<Obj>
<type>2</type>
<id>214</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>232</content>
</item>
<item class_id_reference="16" object_id="_102">
<Value>
<Obj>
<type>2</type>
<id>233</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>4294967271</content>
</item>
<item class_id_reference="16" object_id="_103">
<Value>
<Obj>
<type>2</type>
<id>239</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>25</content>
</item>
<item class_id_reference="16" object_id="_104">
<Value>
<Obj>
<type>2</type>
<id>255</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_105">
<Value>
<Obj>
<type>2</type>
<id>263</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>127</content>
</item>
<item class_id_reference="16" object_id="_106">
<Value>
<Obj>
<type>2</type>
<id>265</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>126</content>
</item>
<item class_id_reference="16" object_id="_107">
<Value>
<Obj>
<type>2</type>
<id>268</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_108">
<Value>
<Obj>
<type>2</type>
<id>281</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
<item class_id_reference="16" object_id="_109">
<Value>
<Obj>
<type>2</type>
<id>287</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>
</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="_110">
<Obj>
<type>3</type>
<id>17</id>
<name>entry</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>2</count>
<item_version>0</item_version>
<item>15</item>
<item>16</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_111">
<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>18</item>
<item>19</item>
<item>21</item>
<item>22</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_112">
<Obj>
<type>3</type>
<id>89</id>
<name>._crit_edge.i_ifconv</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>65</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
<item class_id_reference="18" object_id="_113">
<Obj>
<type>3</type>
<id>91</id>
<name>Loop_2_proc.exit</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>144</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_114">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_115">
<id>95</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_116">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_117">
<id>98</id>
<edge_type>2</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="_118">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_119">
<id>100</id>
<edge_type>2</edge_type>
<source_obj>89</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_120">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_121">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_122">
<id>104</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="_123">
<id>106</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_124">
<id>107</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="_125">
<id>108</id>
<edge_type>2</edge_type>
<source_obj>89</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_126">
<id>109</id>
<edge_type>2</edge_type>
<source_obj>91</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_127">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_128">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_129">
<id>113</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="_130">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_131">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_132">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_133">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_134">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_135">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_136">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_137">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_138">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_139">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_140">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_141">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_142">
<id>139</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_143">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_144">
<id>141</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_145">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_146">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_147">
<id>144</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_148">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_149">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_150">
<id>147</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="_151">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>18</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_152">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_153">
<id>151</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_154">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_155">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_156">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_157">
<id>158</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="_158">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>160</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="_160">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_163">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>170</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>177</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>179</id>
<edge_type>1</edge_type>
<source_obj>178</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_169">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_172">
<id>184</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="_173">
<id>187</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="_174">
<id>189</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_176">
<id>192</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="_177">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_179">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>197</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>198</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="_182">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>199</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>201</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="_184">
<id>202</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>203</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="_186">
<id>204</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="_187">
<id>205</id>
<edge_type>1</edge_type>
<source_obj>150</source_obj>
<sink_obj>54</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_188">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_189">
<id>207</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>211</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_193">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>176</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>214</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_195">
<id>216</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>220</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="_198">
<id>221</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="_199">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>60</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_200">
<id>223</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_201">
<id>224</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>227</id>
<edge_type>1</edge_type>
<source_obj>193</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_203">
<id>228</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="_204">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>230</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>236</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_212">
<id>238</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="_213">
<id>240</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>242</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="_216">
<id>243</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_217">
<id>244</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="_218">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>65</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_219">
<id>246</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>247</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="_221">
<id>248</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="_222">
<id>249</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="_223">
<id>250</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>253</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="_225">
<id>254</id>
<edge_type>1</edge_type>
<source_obj>188</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_226">
<id>256</id>
<edge_type>1</edge_type>
<source_obj>255</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>257</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="_228">
<id>260</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="_229">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>239</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>262</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="_231">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>263</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>267</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_234">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>268</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>271</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="_237">
<id>272</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="_238">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_240">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>280</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="_242">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>281</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_243">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>190</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_245">
<id>285</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="_246">
<id>286</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>287</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_248">
<id>289</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="_249">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_250">
<id>293</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_251">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>25</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>295</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="_253">
<id>296</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>328</id>
<edge_type>2</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="_255">
<id>329</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>330</id>
<edge_type>2</edge_type>
<source_obj>23</source_obj>
<sink_obj>89</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>331</id>
<edge_type>2</edge_type>
<source_obj>89</source_obj>
<sink_obj>23</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="_258">
<mId>1</mId>
<mTag>Loop_2_proc</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>61</mMinLatency>
<mMaxLatency>61</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_259">
<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>17</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_260">
<mId>3</mId>
<mTag>Loop 1</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>23</item>
<item>89</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>10</mMinTripCount>
<mMaxTripCount>10</mMaxTripCount>
<mMinLatency>60</mMinLatency>
<mMaxLatency>60</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_261">
<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>91</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_262">
<states class_id="25" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_263">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_264">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_265">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_266">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_267">
<id>2</id>
<operations>
<count>20</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_268">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_269">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_270">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_271">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_272">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_273">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_274">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_275">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_276">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_277">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_278">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_279">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_280">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_281">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_282">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_283">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_284">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_285">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_286">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_287">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_288">
<id>3</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_289">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_290">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_291">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_292">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_293">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_294">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_295">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_296">
<id>4</id>
<operations>
<count>20</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_297">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_298">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_299">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_300">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_301">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_302">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_303">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_304">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_305">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_306">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_307">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_308">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_309">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_310">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_311">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_312">
<id>59</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_313">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_314">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_315">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_316">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_317">
<id>5</id>
<operations>
<count>13</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_318">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_319">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_320">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_321">
<id>67</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>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_324">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_325">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_326">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_327">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_328">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_329">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_330">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_331">
<id>6</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_332">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_333">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_334">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_335">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_336">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_337">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_338">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_339">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_340">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_341">
<id>87</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_342">
<id>7</id>
<operations>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_343">
<id>87</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_344">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="29" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="1" version="0" object_id="_345">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_346">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>1</count>
<item_version>0</item_version>
<item class_id="34" tracking_level="0" version="0">
<first class_id="35" tracking_level="0" version="0">
<first>19</first>
<second>0</second>
</first>
<second>1</second>
</item>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_347">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_348">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_349">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_350">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_351">
<inState>7</inState>
<outState>2</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="-1"></res>
<node_label_latency class_id="37" tracking_level="0" version="0">
<count>72</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>15</first>
<second class_id="39" 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>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>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>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>3</first>
<second>0</second>
</second>
</item>
<item>
<first>45</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>4</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>4</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>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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>4</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>5</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>5</first>
<second>0</second>
</second>
</item>
<item>
<first>79</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>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>1</second>
</second>
</item>
<item>
<first>88</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>90</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>4</count>
<item_version>0</item_version>
<item class_id="41" tracking_level="0" version="0">
<first>17</first>
<second class_id="42" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>89</first>
<second>
<first>1</first>
<second>6</second>
</second>
</item>
<item>
<first>91</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="43" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</regions>
<dp_fu_nodes class_id="44" tracking_level="0" version="0">
<count>68</count>
<item_version>0</item_version>
<item class_id="45" tracking_level="0" version="0">
<first>118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>148</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>178</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>184</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>87</item>
<item>87</item>
</second>
</item>
<item>
<first>198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>205</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>211</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>217</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>223</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>288</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>317</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>323</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>333</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>343</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>349</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>353</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>364</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>376</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>384</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>403</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>415</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>423</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>435</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>446</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>450</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>455</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>475</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>481</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>499</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>502</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>509</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>514</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>527</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>543</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>547</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="47" tracking_level="0" version="0">
<count>56</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="0" version="0">
<first>a_fu_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>add_ln949_fu_390</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>add_ln958_fu_435</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>add_ln964_fu_514</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>and_ln949_fu_403</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>bitcast_ln739_fu_543</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>icmp_ln37_fu_205</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>icmp_ln38_fu_217</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>icmp_ln935_fu_262</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>icmp_ln947_1_fu_364</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>icmp_ln947_fu_333</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>icmp_ln958_fu_423</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>j3_0_i_phi_fu_198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>j_fu_211</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>l_fu_296</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>last_fu_223</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>lsb_index_fu_317</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>lshr_ln947_fu_353</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>lshr_ln958_fu_440</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>m_1_fu_465</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>m_2_fu_475</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>m_5_fu_481</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>m_6_fu_499</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>m_fu_429</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>or_ln949_fu_409</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>or_ln_i_fu_415</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>p_Result_3_fu_396</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>p_Result_4_fu_359</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>p_Result_6_fu_254</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>p_Result_7_fu_288</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>p_Result_8_fu_527</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>p_Result_s_fu_278</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>select_ln935_fu_547</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>select_ln964_fu_502</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>shl_ln958_fu_459</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>sub_ln944_fu_308</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>sub_ln947_fu_343</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>sub_ln958_fu_450</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>sub_ln964_fu_509</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>tmp_102_fu_376</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>tmp_103_fu_491</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>tmp_429_i_fu_520</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>tmp_V_3_fu_228</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_V_4_fu_272</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>tmp_V_fu_267</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>tmp_fu_323</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>trunc_ln738_fu_539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>trunc_ln943_fu_304</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>trunc_ln944_fu_313</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>trunc_ln947_fu_339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>xor_ln949_fu_384</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>zext_ln947_fu_349</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>zext_ln957_1_fu_432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>zext_ln958_1_fu_455</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>zext_ln958_fu_446</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>zext_ln961_fu_472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</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>12</count>
<item_version>0</item_version>
<item>
<first>grp_write_fu_184</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>87</item>
<item>87</item>
</second>
</item>
<item>
<first>p_read_1_read_fu_118</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>tmp_data_V_0_read_read_fu_124</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>tmp_data_V_1_read_read_fu_130</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>tmp_data_V_2_read_read_fu_136</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>tmp_data_V_3_read_read_fu_142</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>tmp_data_V_4_read_read_fu_148</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>tmp_data_V_5_read_read_fu_154</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>tmp_data_V_6_read_read_fu_160</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>tmp_data_V_7_read_read_fu_166</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>tmp_data_V_8_read_read_fu_172</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>tmp_data_V_9_read_read_fu_178</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</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="49" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>16</count>
<item_version>0</item_version>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>563</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>586</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>591</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>609</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>615</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>620</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>625</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>630</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>16</count>
<item_version>0</item_version>
<item>
<first>icmp_ln935_reg_586</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>icmp_ln958_reg_620</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>j3_0_i_reg_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>j_reg_563</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>l_reg_599</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>last_reg_568</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>m_5_reg_625</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>or_ln_i_reg_615</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>p_Result_6_reg_580</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>p_read_1_reg_555</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>select_ln935_reg_635</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>sub_ln944_reg_609</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>tmp_103_reg_630</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>tmp_V_3_reg_573</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>tmp_V_4_reg_591</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>trunc_ln943_reg_604</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
</dp_reg_phi>
<dp_regname_phi>
<count>1</count>
<item_version>0</item_version>
<item>
<first>j3_0_i_reg_194</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
</dp_regname_phi>
<dp_port_io_nodes class_id="50" tracking_level="0" version="0">
<count>13</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>out_data</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
</second>
</item>
<item>
<first>out_last_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>write</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
</second>
</item>
<item>
<first>p_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>15</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_0</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_2</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_3</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_4</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_5</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_6</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_7</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_8</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
</second>
</item>
<item>
<first>tmp_data_V_9</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>read</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="52" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
with Lv.Style;
package Lv.Objx.Led is
subtype Instance is Obj_T;
subtype Brightness is Uint8_T range 0 .. 255;
-- Create a led objects
-- @param par pointer to an object, it will be the parent of the new led
-- @param copy pointer to a led object, if not NULL then the new object will be copied from it
-- @return pointer to the created led
function Create (Parent : Obj_T; Copy : Instance) return Instance;
----------------------
-- Setter functions --
----------------------
-- Set the brightness of a LED object
-- @param self pointer to a LED object
-- @param bright 0 (max. dark) ... 255 (max. light)
procedure Set_Bright (Self : Instance; Bright : Brightness);
-- Light on a LED
-- @param self pointer to a LED object
procedure On (Self : Instance);
-- Light off a LED
-- @param self pointer to a LED object
procedure Off (Self : Instance);
-- Toggle the state of a LED
-- @param self pointer to a LED object
procedure Toggle (Self : Instance);
-- Set the style of a led
-- @param self pointer to a led object
-- @param style pointer to a style
procedure Set_Style (Self : Instance; Style : access Lv.Style.Style);
----------------------
-- Getter functions --
----------------------
-- Get the brightness of a LEd object
-- @param self pointer to LED object
-- @return bright 0 (max. dark) ... 255 (max. light)
function Bright (Self : Instance) return Brightness;
-- Get the style of an led object
-- @param self pointer to an led object
-- @return pointer to the led's style
function Style (Self : Instance) return access Lv.Style.Style;
-------------
-- Imports --
-------------
pragma Import (C, Create, "lv_led_create");
pragma Import (C, Set_Bright, "lv_led_set_bright");
pragma Import (C, On, "lv_led_on");
pragma Import (C, Off, "lv_led_off");
pragma Import (C, Toggle, "lv_led_toggle");
pragma Import (C, Set_Style, "lv_led_set_style_inline");
pragma Import (C, Bright, "lv_led_get_bright");
pragma Import (C, Style, "lv_led_get_style_inline");
end Lv.Objx.Led;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS --
-- --
-- S Y S T E M . G E N E R I C _ V E C T O R _ O P E R A T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2002-2020, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains generic procedures for vector operations on arrays.
-- If the arguments are aligned on word boundaries and the word size is a
-- multiple M of the element size, the operations will be done M elements
-- at a time using vector operations on a word.
-- All routines assume argument arrays have the same length, and arguments
-- with mode "in" do not alias arguments with mode "out" or "in out".
-- If the number N of elements to be processed is not a multiple of M
-- the final N rem M elements will be processed one item at a time.
with System.Vectors;
with System.Storage_Elements;
generic
type Element is (<>);
type Index is (<>);
type Element_Array is array (Index range <>) of Element;
package System.Generic_Vector_Operations is
pragma Pure;
generic
with function Element_Op (X, Y : Element) return Element;
with function Vector_Op (X, Y : Vectors.Vector) return Vectors.Vector;
procedure Binary_Operation
(R, X, Y : System.Address;
Length : System.Storage_Elements.Storage_Count);
generic
with function Element_Op (X : Element) return Element;
with function Vector_Op (X : Vectors.Vector) return Vectors.Vector;
procedure Unary_Operation
(R, X : System.Address;
Length : System.Storage_Elements.Storage_Count);
end System.Generic_Vector_Operations;
|
-- Copyright 2008-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package Pck is
My_Global_Variable : Integer := 1;
Exported_Capitalized : Integer := 2;
pragma Export (C, Exported_Capitalized, "Exported_Capitalized");
Local_Identical_One : Integer := 4;
Local_Identical_Two : Integer := 8;
External_Identical_One : Integer := 19;
package Inner is
Inside_Variable : Integer := 3;
end Inner;
procedure Proc (I : Integer);
procedure Ambiguous_Func;
end Pck;
|
with constants;
use constants;
package objects is
type Mode is (CALM,TALKATIVE);
type operatorT is ('+', '-', '*');
type operatorsArray is array(0..2) of operatorT;
NL : constant String := Character'Val(13) & Character'Val(10);
protected type ProtectedCounter is
function Get return Integer;
procedure Increment;
private
value : Integer := 0;
end ProtectedCounter;
type taskk is record
first : Float;
second : Float;
operator : operatorT;
result : Float;
end record;
type product is record
value : Float;
end record;
-- type machineRecord is record
-- operation: operatorT;
-- end record;
task type machine is
entry Create (op : in operatorT);
entry DelegateTask (tsk : in out taskk);
end machine;
type employeeRecord is record
isPatient: Boolean;
numberOfTaskDone: ProtectedCounter;
end record;
task type employee is
entry Start (index : in Integer);
end employee;
task type chairman;
task type client;
type StorageListRange is new Positive range 1 .. MAX_STORAGE_CAPACITY;
type StorageArray is array(StorageListRange) of product;
type TaskListRange is new Positive range 1 .. MAX_TASKLIST_SIZE;
type TaskArray is array(TaskListRange) of taskk;
type MachinesListRange is new Positive range 1 .. NUMBER_OF_MACHINES;
type MachinesArray is array(MachinesListRange) of machine;
type MachinesSetArray is array(operatorT) of MachinesArray;
type chairman_array is array(1..MAX_CHAIRMEN) of chairman;
type clients_array is array(1..MAX_CLIENTS) of client;
type employee_array is array(1..MAX_EMPLOYEES) of employee;
type employeeRecord_array is array(1..MAX_EMPLOYEES) of employeeRecord;
procedure inform(message : String);
function doTask(tsk : in out taskk) return Float;
procedure printTaksArray(arr : TaskArray);
procedure printStorageArrat(arr : StorageArray);
protected type TaskBufferType is
entry Insert (An_Item : in taskk);
entry Remove (An_Item : out taskk);
function seeTaskList(len : out Natural;head1 : out TaskListRange) return TaskArray;
private
Length : Natural range 0 .. MAX_TASKLIST_SIZE := 0;
Head, Tail : TaskListRange := 1;
Data : TaskArray;
end TaskBufferType;
protected type StorageBufferType is
entry Insert (An_Item : in product);
entry Remove (An_Item : out product);
function seeStorage(len : out Natural;head1 : out StorageListRange) return StorageArray;
private
Length : Natural range 0 .. MAX_TASKLIST_SIZE := 0;
Head, Tail : StorageListRange := 1;
Data : StorageArray;
end StorageBufferType;
modee : Mode := CALM;
operators : operatorsArray := ('+', '-', '*');
tasks : TaskBufferType;
storage: StorageBufferType;
chairmen : chairman_array;
clients : clients_array;
employeeRecords : employeeRecord_array;
employees : employee_array;
machinesSet : MachinesSetArray;
end objects;
|
separate (Command_Line_Interface)
procedure Read_Command_Line (Command_Args : out Command_Line_Type) is
procedure Get_Foreign (P : out String);
pragma Interface (External, Get_Foreign);
pragma Import_Valued_Procedure (Get_Foreign,
"LIB$GET_FOREIGN",
(String), (Descriptor (S)));
begin
Get_Foreign (Command_Args);
end Read_Command_Line;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2020, 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. --
-- --
------------------------------------------------------------------------------
package body NRF52_DK.LEDs is
LEDs : array (1 .. 4) of GPIO_Point := (LED1, LED2, LED3, LED4);
procedure Initialize_LEDs is
Conf : GPIO_Configuration;
begin
Conf.Mode := Mode_Out;
Conf.Resistors := No_Pull;
for LED of LEDs loop
LED.Configure_IO (Conf);
LED.Set;
end loop;
end Initialize_LEDs;
procedure Turn_On (This : in out User_LED) is
begin
This.Clear;
end Turn_On;
procedure Turn_Off (This : in out User_LED) is
begin
This.Set;
end Turn_Off;
end NRF52_DK.LEDs;
|
with Ada.Containers.Vectors;
with Ada.Text_IO;
with GNAT.String_Split;
package body AOC.AOC_2019.Day03 is
type Wire_Segment is record
Is_Horizontal: Boolean;
Distance_Travelled : Integer;
Time_Start : Integer;
Stable, P1, P2 : Integer;
end record;
package Wire_Segment_Vectors is new Ada.Containers.Vectors
(Index_Type => Natural,
Element_Type => Wire_Segment);
First_Wire_Segments : Wire_Segment_Vectors.Vector;
Shortest_Distance : Integer := Integer'Last;
Fastest_Distance : Integer := Integer'Last;
function Create_Wire_Segments (Wire : String) return Wire_Segment_Vectors.Vector is
use GNAT;
Wire_Subs : String_Split.Slice_Set;
Distance_Travelled : Integer := 0;
X, Y : Integer := 0;
X_Next, Y_Next : Integer;
Wire_Segments : Wire_Segment_Vectors.Vector;
begin
String_Split.Create (S => Wire_Subs,
From => Wire,
Separators => ",");
for I in 1 .. String_Split.Slice_Count (Wire_Subs) loop
declare
Wire_Sub : String := String_Split.Slice (Wire_Subs, I);
Direction : Character := Wire_Sub (Wire_Sub'First);
Offset : Integer := Integer'Value (Wire_Sub (Wire_Sub'First+1 .. Wire_Sub'Last));
Segment : Wire_Segment;
begin
case Direction is
when 'U' =>
Y_Next := Y + Offset;
Segment := (False, Distance_Travelled, Y, X, Y, Y_Next);
Y := Y_Next;
when 'D' =>
Y_Next := Y - Offset;
Segment := (False, Distance_Travelled, Y, X, Y_Next, Y);
Y := Y_Next;
when 'L' =>
X_Next := X - Offset;
Segment := (True, Distance_Travelled, X, Y, X_Next, X);
X := X_Next;
when 'R' =>
X_Next := X + Offset;
Segment := (True, Distance_Travelled, X, Y, X, X_Next);
X := X_Next;
when others =>
raise Constraint_Error;
end case;
Wire_Segments.Append (Segment);
Distance_Travelled := Distance_Travelled + Offset;
end;
end loop;
return Wire_Segments;
end Create_Wire_Segments;
procedure Init (D : in out Day_03; Root : String) is
use Ada.Text_IO;
File : File_Type;
begin
Open (File => File,
Mode => In_File,
Name => Root & "/input/2019/day03.txt");
First_Wire_Segments := Create_Wire_Segments (Get_Line (File));
for Second_Wire_Segment of Create_Wire_Segments (Get_Line (File)) loop
for First_Wire_Segment of First_Wire_Segments loop
if Second_Wire_Segment.Is_Horizontal /= First_Wire_Segment.Is_Horizontal and not (Second_Wire_Segment.Stable = 0 and First_Wire_Segment.Stable = 0) and Second_Wire_Segment.Stable in First_Wire_Segment.P1..First_Wire_Segment.P2 and First_Wire_Segment.Stable in Second_Wire_Segment.P1..Second_Wire_Segment.P2 then
Shortest_Distance := Integer'Min (Shortest_Distance, abs Second_Wire_Segment.Stable + abs First_Wire_Segment.Stable);
Fastest_Distance := Integer'Min
(Fastest_Distance,
Second_Wire_Segment.Distance_Travelled + First_Wire_Segment.Distance_Travelled
+ abs (Second_Wire_Segment.Time_Start - First_Wire_Segment.Stable)
+ abs (First_Wire_Segment.Time_Start - Second_Wire_Segment.Stable));
end if;
end loop;
end loop;
Close (File);
end Init;
function Part_1 (D : Day_03) return String is
begin
return Shortest_Distance'Image;
end Part_1;
function Part_2 (D : Day_03) return String is
begin
return Fastest_Distance'Image;
end Part_2;
end AOC.AOC_2019.Day03;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 2 8 --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_28 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_28;
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_28 or SetU_28 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_28 --
------------
function Get_28
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_28
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_28;
-------------
-- GetU_28 --
-------------
function GetU_28
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_28
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_28;
------------
-- Set_28 --
------------
procedure Set_28
(Arr : System.Address;
N : Natural;
E : Bits_28;
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_28;
-------------
-- SetU_28 --
-------------
procedure SetU_28
(Arr : System.Address;
N : Natural;
E : Bits_28;
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_28;
end System.Pack_28;
|
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com>
--
-- SPDX-License-Identifier: MIT
-------------------------------------------------------------
with Program.Elements.Expressions;
with Program.Lexical_Elements;
with Program.Elements.Defining_Identifiers;
with Program.Elements.Defining_Expanded_Names;
with Program.Element_Visitors;
package Program.Nodes.Defining_Expanded_Names is
pragma Preelaborate;
type Defining_Expanded_Name is
new Program.Nodes.Node
and Program.Elements.Defining_Expanded_Names.Defining_Expanded_Name
and Program.Elements.Defining_Expanded_Names
.Defining_Expanded_Name_Text
with private;
function Create
(Prefix : not null Program.Elements.Expressions.Expression_Access;
Dot_Token : not null Program.Lexical_Elements.Lexical_Element_Access;
Selector : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access)
return Defining_Expanded_Name;
type Implicit_Defining_Expanded_Name is
new Program.Nodes.Node
and Program.Elements.Defining_Expanded_Names.Defining_Expanded_Name
with private;
function Create
(Prefix : not null Program.Elements.Expressions
.Expression_Access;
Selector : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
Is_Part_Of_Implicit : Boolean := False;
Is_Part_Of_Inherited : Boolean := False;
Is_Part_Of_Instance : Boolean := False)
return Implicit_Defining_Expanded_Name
with Pre =>
Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance;
private
type Base_Defining_Expanded_Name is
abstract new Program.Nodes.Node
and Program.Elements.Defining_Expanded_Names.Defining_Expanded_Name
with record
Prefix : not null Program.Elements.Expressions.Expression_Access;
Selector : not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
end record;
procedure Initialize (Self : in out Base_Defining_Expanded_Name'Class);
overriding procedure Visit
(Self : not null access Base_Defining_Expanded_Name;
Visitor : in out Program.Element_Visitors.Element_Visitor'Class);
overriding function Prefix
(Self : Base_Defining_Expanded_Name)
return not null Program.Elements.Expressions.Expression_Access;
overriding function Selector
(Self : Base_Defining_Expanded_Name)
return not null Program.Elements.Defining_Identifiers
.Defining_Identifier_Access;
overriding function Is_Defining_Expanded_Name
(Self : Base_Defining_Expanded_Name)
return Boolean;
overriding function Is_Defining_Name
(Self : Base_Defining_Expanded_Name)
return Boolean;
type Defining_Expanded_Name is
new Base_Defining_Expanded_Name
and Program.Elements.Defining_Expanded_Names.Defining_Expanded_Name_Text
with record
Dot_Token : not null Program.Lexical_Elements.Lexical_Element_Access;
end record;
overriding function To_Defining_Expanded_Name_Text
(Self : in out Defining_Expanded_Name)
return Program.Elements.Defining_Expanded_Names
.Defining_Expanded_Name_Text_Access;
overriding function Dot_Token
(Self : Defining_Expanded_Name)
return not null Program.Lexical_Elements.Lexical_Element_Access;
overriding function Image (Self : Defining_Expanded_Name) return Text;
type Implicit_Defining_Expanded_Name is
new Base_Defining_Expanded_Name
with record
Is_Part_Of_Implicit : Boolean;
Is_Part_Of_Inherited : Boolean;
Is_Part_Of_Instance : Boolean;
end record;
overriding function To_Defining_Expanded_Name_Text
(Self : in out Implicit_Defining_Expanded_Name)
return Program.Elements.Defining_Expanded_Names
.Defining_Expanded_Name_Text_Access;
overriding function Is_Part_Of_Implicit
(Self : Implicit_Defining_Expanded_Name)
return Boolean;
overriding function Is_Part_Of_Inherited
(Self : Implicit_Defining_Expanded_Name)
return Boolean;
overriding function Is_Part_Of_Instance
(Self : Implicit_Defining_Expanded_Name)
return Boolean;
overriding function Image
(Self : Implicit_Defining_Expanded_Name)
return Text;
end Program.Nodes.Defining_Expanded_Names;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 2 3 --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2019, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- Handling of packed arrays with Component_Size = 23
package System.Pack_23 is
pragma Preelaborate;
Bits : constant := 23;
type Bits_23 is mod 2 ** Bits;
for Bits_23'Size use Bits;
-- In all subprograms below, Rev_SSO is set True if the array has the
-- non-default scalar storage order.
function Get_23
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_23 with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is extracted and returned.
procedure Set_23
(Arr : System.Address;
N : Natural;
E : Bits_23;
Rev_SSO : Boolean) with Inline;
-- Arr is the address of the packed array, N is the zero-based
-- subscript. This element is set to the given value.
end System.Pack_23;
|
-- PROCEDIMIENTOS ANIDADOS - ERROR
procedure Hello is
a; Integer := 10;
b, Float := 20.0;
procedure World (a,b:in Integer; x,y :in out Boolean) is
begin
if (a < b) and (2 < b) or (a > c) then
put(b)
end if;
-- if
end World;
f: Float := a-b;
c: Boolean := True;
begin
if (a < b) and (a < b) or (a > c) then
put(b);
end if;
-- if
end Hello;
|
------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of this file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
-- Purpose:
-- Take string as source buffer.
package Gela.Source_Buffers.Strings is
pragma Preelaborate;
type Source_Buffer is new Source_Buffers.Source_Buffer with private;
function Buffer_Start (Object : Source_Buffer) return Cursor;
procedure Initialize
(Object : in out Source_Buffer;
Text : in String);
procedure Clear (Object : in out Source_Buffer);
private
type String_Buffer is array (Positive range <>) of aliased Character;
type String_Access is access all String_Buffer;
pragma Controlled (String_Access);
type Source_Buffer is new Source_Buffers.Source_Buffer with record
Buffer : String_Access;
Buffer_Start : Cursor;
end record;
end Gela.Source_Buffers.Strings;
------------------------------------------------------------------------------
-- Copyright (c) 2008, Maxim Reznik
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- * Neither the name of the Maxim Reznik, IE nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
|
-- Generated by Snowball 2.2.0 - https://snowballstem.org/
package body Stemmer.Tamil is
pragma Style_Checks ("-mr");
pragma Warnings (Off, "*variable*is never read and never assigned*");
pragma Warnings (Off, "*mode could be*instead of*");
pragma Warnings (Off, "*formal parameter.*is not modified*");
pragma Warnings (Off, "*this line is too long*");
pragma Warnings (Off, "*is not referenced*");
procedure R_Has_min_length (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_common_word_endings (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_tense_suffixes (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_tense_suffix (Z : in out Context_Type; Result : out Boolean);
procedure R_Fix_endings (Z : in out Context_Type; Result : out Boolean);
procedure R_Fix_ending (Z : in out Context_Type; Result : out Boolean);
procedure R_Fix_va_start (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_vetrumai_urupukal (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_um (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_command_suffixes (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_pronoun_prefixes (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_question_prefixes (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_question_suffixes (Z : in out Context_Type; Result : out Boolean);
procedure R_Remove_plural_suffix (Z : in out Context_Type; Result : out Boolean);
Among_String : constant String := "க" & "ங" & "ச" & "ஞ" & "த"
& "ந" & "ப" & "ம" & "ய" & "வ" & "ந்த்" & "ந்" & "ந்த"
& "ீ" & "ை" & "ி" & "க" & "ச" & "ட" & "த" & "ப" & "ற" & "க"
& "ச" & "ட" & "த" & "ப" & "ற" & "க" & "ச" & "ட" & "த" & "ப"
& "ற" & "ய" & "ர" & "ல" & "ள" & "ழ" & "வ" & "ங" & "ஞ" & "ண"
& "ந" & "ன" & "ம" & "வ்" & "ய" & "வ" & "ீ" & "ு" & "ூ"
& "ெ" & "ே" & "ை" & "ா" & "ி" & "ீ" & "ு" & "ூ" & "ெ" & "ே"
& "ை" & "ா" & "ி" & "அ" & "இ" & "உ" & "க" & "ங" & "ச" & "ஞ"
& "த" & "ந" & "ப" & "ம" & "ய" & "வ" & "க" & "ச" & "ட" & "த"
& "ப" & "ற" & "ே" & "ோ" & "ா" & "பி" & "வி" & "ீ" & "ு"
& "ூ" & "ெ" & "ே" & "ை" & "ா" & "ி" & "பட்டு"
& "விட்டு" & "படு" & "விடு" & "பட்டது"
& "ெல்லாம்" & "பட்ட" & "பட்டண" & "தான"
& "படிதான" & "குரிய" & "படி" & "பற்றி"
& "க" & "ச" & "ட" & "த" & "ப" & "ற" & "க" & "ச" & "ட" & "த"
& "ப" & "ற" & "ீ" & "ு" & "ூ" & "ெ" & "ே" & "ை" & "ா" & "ி"
& "ீ" & "ு" & "ூ" & "ெ" & "ே" & "ை" & "ா" & "ி" & "படு"
& "கொண்டிர்" & "அ" & "ஆ" & "இ" & "ஈ" & "உ" & "ஊ"
& "எ" & "ஏ" & "ஐ" & "ஒ" & "ஓ" & "ஔ" & "ீ" & "ு" & "ூ" & "ெ"
& "ே" & "ை" & "ா" & "ி" & "கின்ற்" & "ாநின்ற்"
& "கிற்" & "கின்ற" & "ாநின்ற" & "கிற";
A_0 : constant Among_Array_Type (0 .. 9) := (
(1, 3, -1, -1, 0),
(4, 6, -1, -1, 0),
(7, 9, -1, -1, 0),
(10, 12, -1, -1, 0),
(13, 15, -1, -1, 0),
(16, 18, -1, -1, 0),
(19, 21, -1, -1, 0),
(22, 24, -1, -1, 0),
(25, 27, -1, -1, 0),
(28, 30, -1, -1, 0));
A_1 : constant Among_Array_Type (0 .. 2) := (
(31, 42, -1, -1, 0),
(43, 48, -1, -1, 0),
(49, 57, -1, -1, 0));
A_2 : constant Among_Array_Type (0 .. 2) := (
(58, 60, -1, -1, 0),
(61, 63, -1, -1, 0),
(64, 66, -1, -1, 0));
A_3 : constant Among_Array_Type (0 .. 5) := (
(67, 69, -1, -1, 0),
(70, 72, -1, -1, 0),
(73, 75, -1, -1, 0),
(76, 78, -1, -1, 0),
(79, 81, -1, -1, 0),
(82, 84, -1, -1, 0));
A_4 : constant Among_Array_Type (0 .. 5) := (
(85, 87, -1, -1, 0),
(88, 90, -1, -1, 0),
(91, 93, -1, -1, 0),
(94, 96, -1, -1, 0),
(97, 99, -1, -1, 0),
(100, 102, -1, -1, 0));
A_5 : constant Among_Array_Type (0 .. 5) := (
(103, 105, -1, -1, 0),
(106, 108, -1, -1, 0),
(109, 111, -1, -1, 0),
(112, 114, -1, -1, 0),
(115, 117, -1, -1, 0),
(118, 120, -1, -1, 0));
A_6 : constant Among_Array_Type (0 .. 5) := (
(121, 123, -1, -1, 0),
(124, 126, -1, -1, 0),
(127, 129, -1, -1, 0),
(130, 132, -1, -1, 0),
(133, 135, -1, -1, 0),
(136, 138, -1, -1, 0));
A_7 : constant Among_Array_Type (0 .. 5) := (
(139, 141, -1, -1, 0),
(142, 144, -1, -1, 0),
(145, 147, -1, -1, 0),
(148, 150, -1, -1, 0),
(151, 153, -1, -1, 0),
(154, 156, -1, -1, 0));
A_8 : constant Among_Array_Type (0 .. 2) := (
(157, 162, -1, -1, 0),
(163, 165, -1, -1, 0),
(166, 168, -1, -1, 0));
A_9 : constant Among_Array_Type (0 .. 7) := (
(169, 171, -1, -1, 0),
(172, 174, -1, -1, 0),
(175, 177, -1, -1, 0),
(178, 180, -1, -1, 0),
(181, 183, -1, -1, 0),
(184, 186, -1, -1, 0),
(187, 189, -1, -1, 0),
(190, 192, -1, -1, 0));
A_10 : constant Among_Array_Type (0 .. 7) := (
(193, 195, -1, -1, 0),
(196, 198, -1, -1, 0),
(199, 201, -1, -1, 0),
(202, 204, -1, -1, 0),
(205, 207, -1, -1, 0),
(208, 210, -1, -1, 0),
(211, 213, -1, -1, 0),
(214, 216, -1, -1, 0));
A_11 : constant Among_Array_Type (0 .. 2) := (
(217, 219, -1, -1, 0),
(220, 222, -1, -1, 0),
(223, 225, -1, -1, 0));
A_12 : constant Among_Array_Type (0 .. 9) := (
(226, 228, -1, -1, 0),
(229, 231, -1, -1, 0),
(232, 234, -1, -1, 0),
(235, 237, -1, -1, 0),
(238, 240, -1, -1, 0),
(241, 243, -1, -1, 0),
(244, 246, -1, -1, 0),
(247, 249, -1, -1, 0),
(250, 252, -1, -1, 0),
(253, 255, -1, -1, 0));
A_13 : constant Among_Array_Type (0 .. 5) := (
(256, 258, -1, -1, 0),
(259, 261, -1, -1, 0),
(262, 264, -1, -1, 0),
(265, 267, -1, -1, 0),
(268, 270, -1, -1, 0),
(271, 273, -1, -1, 0));
A_14 : constant Among_Array_Type (0 .. 2) := (
(274, 276, -1, -1, 0),
(277, 279, -1, -1, 0),
(280, 282, -1, -1, 0));
A_15 : constant Among_Array_Type (0 .. 1) := (
(283, 288, -1, -1, 0),
(289, 294, -1, -1, 0));
A_16 : constant Among_Array_Type (0 .. 7) := (
(295, 297, -1, -1, 0),
(298, 300, -1, -1, 0),
(301, 303, -1, -1, 0),
(304, 306, -1, -1, 0),
(307, 309, -1, -1, 0),
(310, 312, -1, -1, 0),
(313, 315, -1, -1, 0),
(316, 318, -1, -1, 0));
A_17 : constant Among_Array_Type (0 .. 12) := (
(319, 333, -1, -1, 0),
(334, 351, -1, -1, 0),
(352, 360, -1, -1, 0),
(361, 372, -1, -1, 0),
(373, 390, -1, -1, 0),
(391, 411, -1, -1, 0),
(412, 423, -1, -1, 0),
(424, 438, -1, -1, 0),
(439, 447, -1, -1, 0),
(448, 465, 8, -1, 0),
(466, 480, -1, -1, 0),
(481, 489, -1, -1, 0),
(490, 504, -1, -1, 0));
A_18 : constant Among_Array_Type (0 .. 5) := (
(505, 507, -1, -1, 0),
(508, 510, -1, -1, 0),
(511, 513, -1, -1, 0),
(514, 516, -1, -1, 0),
(517, 519, -1, -1, 0),
(520, 522, -1, -1, 0));
A_19 : constant Among_Array_Type (0 .. 5) := (
(523, 525, -1, -1, 0),
(526, 528, -1, -1, 0),
(529, 531, -1, -1, 0),
(532, 534, -1, -1, 0),
(535, 537, -1, -1, 0),
(538, 540, -1, -1, 0));
A_20 : constant Among_Array_Type (0 .. 7) := (
(541, 543, -1, -1, 0),
(544, 546, -1, -1, 0),
(547, 549, -1, -1, 0),
(550, 552, -1, -1, 0),
(553, 555, -1, -1, 0),
(556, 558, -1, -1, 0),
(559, 561, -1, -1, 0),
(562, 564, -1, -1, 0));
A_21 : constant Among_Array_Type (0 .. 7) := (
(565, 567, -1, -1, 0),
(568, 570, -1, -1, 0),
(571, 573, -1, -1, 0),
(574, 576, -1, -1, 0),
(577, 579, -1, -1, 0),
(580, 582, -1, -1, 0),
(583, 585, -1, -1, 0),
(586, 588, -1, -1, 0));
A_22 : constant Among_Array_Type (0 .. 1) := (
(589, 597, -1, -1, 0),
(598, 621, -1, -1, 0));
A_23 : constant Among_Array_Type (0 .. 11) := (
(622, 624, -1, -1, 0),
(625, 627, -1, -1, 0),
(628, 630, -1, -1, 0),
(631, 633, -1, -1, 0),
(634, 636, -1, -1, 0),
(637, 639, -1, -1, 0),
(640, 642, -1, -1, 0),
(643, 645, -1, -1, 0),
(646, 648, -1, -1, 0),
(649, 651, -1, -1, 0),
(652, 654, -1, -1, 0),
(655, 657, -1, -1, 0));
A_24 : constant Among_Array_Type (0 .. 7) := (
(658, 660, -1, -1, 0),
(661, 663, -1, -1, 0),
(664, 666, -1, -1, 0),
(667, 669, -1, -1, 0),
(670, 672, -1, -1, 0),
(673, 675, -1, -1, 0),
(676, 678, -1, -1, 0),
(679, 681, -1, -1, 0));
A_25 : constant Among_Array_Type (0 .. 5) := (
(682, 699, -1, -1, 0),
(700, 720, -1, -1, 0),
(721, 732, -1, -1, 0),
(733, 747, -1, -1, 0),
(748, 765, -1, -1, 0),
(766, 774, -1, -1, 0));
procedure R_Has_min_length (Z : in out Context_Type; Result : out Boolean) is
begin
Result := (Length_Utf8 (Z) > 4);
end R_Has_min_length;
procedure R_Fix_va_start (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Char_Index;
v_7 : Char_Index;
v_8 : Char_Index;
v_9 : Char_Index;
begin
-- or, line 104
v_1 := Z.C;
-- (, line 104
-- and, line 104
v_2 := Z.C;
-- try, line 104
v_3 := Z.C;
-- literal, line 104
C := Eq_S (Z, "வோ");
if C = 0 then
Z.C := v_3;
goto lab2;
end if;
Z.C := Z.C + C;
<<lab2>>
Z.C := v_2;
Z.Bra := Z.C; -- [, line 104
-- literal, line 104
C := Eq_S (Z, "வோ");
if C = 0 then
goto lab1;
end if;
Z.C := Z.C + C;
Z.Ket := Z.C; -- ], line 104
-- <-, line 104
Slice_From (Z, "ஓ");
goto lab0;
<<lab1>>
Z.C := v_1;
-- (, line 105
-- and, line 105
v_4 := Z.C;
-- try, line 105
v_5 := Z.C;
-- literal, line 105
C := Eq_S (Z, "வொ");
if C = 0 then
Z.C := v_5;
goto lab4;
end if;
Z.C := Z.C + C;
<<lab4>>
Z.C := v_4;
Z.Bra := Z.C; -- [, line 105
-- literal, line 105
C := Eq_S (Z, "வொ");
if C = 0 then
goto lab3;
end if;
Z.C := Z.C + C;
Z.Ket := Z.C; -- ], line 105
-- <-, line 105
Slice_From (Z, "ஒ");
goto lab0;
<<lab3>>
Z.C := v_1;
-- (, line 106
-- and, line 106
v_6 := Z.C;
-- try, line 106
v_7 := Z.C;
-- literal, line 106
C := Eq_S (Z, "வு");
if C = 0 then
Z.C := v_7;
goto lab6;
end if;
Z.C := Z.C + C;
<<lab6>>
Z.C := v_6;
Z.Bra := Z.C; -- [, line 106
-- literal, line 106
C := Eq_S (Z, "வு");
if C = 0 then
goto lab5;
end if;
Z.C := Z.C + C;
Z.Ket := Z.C; -- ], line 106
-- <-, line 106
Slice_From (Z, "உ");
goto lab0;
<<lab5>>
Z.C := v_1;
-- (, line 107
-- and, line 107
v_8 := Z.C;
-- try, line 107
v_9 := Z.C;
-- literal, line 107
C := Eq_S (Z, "வூ");
if C = 0 then
Z.C := v_9;
goto lab7;
end if;
Z.C := Z.C + C;
<<lab7>>
Z.C := v_8;
Z.Bra := Z.C; -- [, line 107
-- literal, line 107
C := Eq_S (Z, "வூ");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C + C;
Z.Ket := Z.C; -- ], line 107
-- <-, line 107
Slice_From (Z, "ஊ");
<<lab0>>
Result := True;
end R_Fix_va_start;
procedure R_Fix_endings (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
begin
-- do, line 111
v_1 := Z.C;
-- repeat, line 111
<<lab1>>
loop
v_2 := Z.C;
-- call fix_ending, line 111
R_Fix_ending (Z, Result);
if not Result then
goto lab2;
end if;
goto lab1;
<<lab2>>
Z.C := v_2;
exit;
end loop;
<<lab0>>
Z.C := v_1;
Result := True;
end R_Fix_endings;
procedure R_Remove_question_prefixes (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
begin
-- (, line 114
Z.Bra := Z.C; -- [, line 115
-- literal, line 115
C := Eq_S (Z, "எ");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C + C;
-- among, line 115
Find_Among (Z, A_0, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
-- literal, line 115
C := Eq_S (Z, "்");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C + C;
Z.Ket := Z.C; -- ], line 115
-- delete, line 115
Slice_Del (Z);
-- do, line 116
v_1 := Z.C;
-- call fix_va_start, line 116
R_Fix_va_start (Z, Result);
Z.C := v_1;
Result := True;
end R_Remove_question_prefixes;
procedure R_Fix_ending (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Char_Index;
v_7 : Char_Index;
v_8 : Char_Index;
v_9 : Char_Index;
v_10 : Char_Index;
v_11 : Char_Index;
v_12 : Char_Index;
v_13 : Char_Index;
begin
-- (, line 120
if not (Length_Utf8 (Z) > 3) then
Result := False;
return;
end if;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 122
-- or, line 124
v_1 := Z.L - Z.C;
-- (, line 123
Z.Ket := Z.C; -- [, line 123
-- among, line 123
if Z.C - 5 <= Z.Lb or else (Character'Pos (Z.P (Z.C)) /= 141 and then Character'Pos (Z.P (Z.C)) /= 164) then
goto lab1;
-- among, line 123
end if;
Find_Among_Backward (Z, A_1, Among_String, null, A);
if A = 0 then
goto lab1;
end if;
Z.Bra := Z.C; -- ], line 123
-- delete, line 123
Slice_Del (Z);
goto lab0;
<<lab1>>
Z.C := Z.L - v_1;
-- (, line 125
Z.Ket := Z.C; -- [, line 125
-- literal, line 125
C := Eq_S_Backward (Z, "ய்");
if C = 0 then
goto lab2;
end if;
Z.C := Z.C - C;
-- test, line 125
v_2 := Z.L - Z.C;
-- among, line 125
Find_Among_Backward (Z, A_2, Among_String, null, A);
if A = 0 then
goto lab2;
end if;
Z.C := Z.L - v_2;
Z.Bra := Z.C; -- ], line 125
-- delete, line 125
Slice_Del (Z);
goto lab0;
<<lab2>>
Z.C := Z.L - v_1;
-- (, line 127
Z.Ket := Z.C; -- [, line 127
-- or, line 127
v_3 := Z.L - Z.C;
-- literal, line 127
C := Eq_S_Backward (Z, "ட்ப்");
if C = 0 then
goto lab5;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab5>>
Z.C := Z.L - v_3;
-- literal, line 127
C := Eq_S_Backward (Z, "ட்க்");
if C = 0 then
goto lab3;
end if;
Z.C := Z.C - C;
<<lab4>>
Z.Bra := Z.C; -- ], line 127
-- <-, line 127
Slice_From (Z, "ள்");
goto lab0;
<<lab3>>
Z.C := Z.L - v_1;
-- (, line 129
Z.Ket := Z.C; -- [, line 129
-- literal, line 129
C := Eq_S_Backward (Z, "ன்ற்");
if C = 0 then
goto lab6;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 129
-- <-, line 129
Slice_From (Z, "ல்");
goto lab0;
<<lab6>>
Z.C := Z.L - v_1;
-- (, line 132
Z.Ket := Z.C; -- [, line 132
-- literal, line 132
C := Eq_S_Backward (Z, "ற்க்");
if C = 0 then
goto lab7;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 132
-- <-, line 132
Slice_From (Z, "ல்");
goto lab0;
<<lab7>>
Z.C := Z.L - v_1;
-- (, line 134
Z.Ket := Z.C; -- [, line 134
-- literal, line 134
C := Eq_S_Backward (Z, "ட்ட்");
if C = 0 then
goto lab8;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 134
-- <-, line 134
Slice_From (Z, "டு");
goto lab0;
<<lab8>>
Z.C := Z.L - v_1;
-- (, line 136
-- Boolean test found_vetrumai_urupu, line 136
if not Z.B_Found_vetrumai_urupu then
goto lab9;
end if;
Z.Ket := Z.C; -- [, line 136
-- literal, line 136
C := Eq_S_Backward (Z, "த்த்");
if C = 0 then
goto lab9;
end if;
Z.C := Z.C - C;
-- test, line 136
v_4 := Z.L - Z.C;
-- not, line 136
v_5 := Z.L - Z.C;
-- literal, line 136
C := Eq_S_Backward (Z, "ை");
if C = 0 then
goto lab10;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab10>>
Z.C := Z.L - v_5;
Z.C := Z.L - v_4;
Z.Bra := Z.C; -- ], line 136
-- <-, line 136
Slice_From (Z, "ம்");
Z.Bra := Z.C; -- ], line 136
goto lab0;
<<lab9>>
Z.C := Z.L - v_1;
-- (, line 138
Z.Ket := Z.C; -- [, line 138
-- or, line 138
v_6 := Z.L - Z.C;
-- literal, line 138
C := Eq_S_Backward (Z, "ுக்");
if C = 0 then
goto lab13;
end if;
Z.C := Z.C - C;
goto lab12;
<<lab13>>
Z.C := Z.L - v_6;
-- literal, line 138
C := Eq_S_Backward (Z, "ுக்க்");
if C = 0 then
goto lab11;
end if;
Z.C := Z.C - C;
<<lab12>>
Z.Bra := Z.C; -- ], line 138
-- <-, line 138
Slice_From (Z, "்");
goto lab0;
<<lab11>>
Z.C := Z.L - v_1;
-- (, line 140
Z.Ket := Z.C; -- [, line 140
-- literal, line 140
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab14;
end if;
Z.C := Z.C - C;
-- among, line 140
Find_Among_Backward (Z, A_3, Among_String, null, A);
if A = 0 then
goto lab14;
end if;
-- literal, line 140
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab14;
end if;
Z.C := Z.C - C;
-- among, line 140
Find_Among_Backward (Z, A_4, Among_String, null, A);
if A = 0 then
goto lab14;
end if;
Z.Bra := Z.C; -- ], line 140
-- delete, line 140
Slice_Del (Z);
goto lab0;
<<lab14>>
Z.C := Z.L - v_1;
-- (, line 142
Z.Ket := Z.C; -- [, line 142
-- literal, line 142
C := Eq_S_Backward (Z, "ுக்");
if C = 0 then
goto lab15;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 142
-- <-, line 142
Slice_From (Z, "்");
goto lab0;
<<lab15>>
Z.C := Z.L - v_1;
-- (, line 144
Z.Ket := Z.C; -- [, line 144
-- literal, line 144
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab16;
end if;
Z.C := Z.C - C;
-- among, line 144
Find_Among_Backward (Z, A_5, Among_String, null, A);
if A = 0 then
goto lab16;
end if;
Z.Bra := Z.C; -- ], line 144
-- delete, line 144
Slice_Del (Z);
goto lab0;
<<lab16>>
Z.C := Z.L - v_1;
-- (, line 146
Z.Ket := Z.C; -- [, line 146
-- literal, line 146
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab17;
end if;
Z.C := Z.C - C;
-- or, line 146
v_7 := Z.L - Z.C;
-- among, line 146
if Z.C - 2 <= Z.Lb or else Check_Among (Z, Z.C - 1, 5, 16#3d8000#) then
goto lab19;
-- among, line 146
end if;
Find_Among_Backward (Z, A_6, Among_String, null, A);
if A = 0 then
goto lab19;
end if;
goto lab18;
<<lab19>>
Z.C := Z.L - v_7;
-- among, line 146
Find_Among_Backward (Z, A_7, Among_String, null, A);
if A = 0 then
goto lab17;
end if;
<<lab18>>
-- literal, line 146
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab17;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 146
-- <-, line 146
Slice_From (Z, "்");
goto lab0;
<<lab17>>
Z.C := Z.L - v_1;
-- (, line 148
Z.Ket := Z.C; -- [, line 148
-- among, line 148
Find_Among_Backward (Z, A_8, Among_String, null, A);
if A = 0 then
goto lab20;
end if;
Z.Bra := Z.C; -- ], line 148
-- delete, line 148
Slice_Del (Z);
goto lab0;
<<lab20>>
Z.C := Z.L - v_1;
-- (, line 150
Z.Ket := Z.C; -- [, line 150
-- literal, line 150
C := Eq_S_Backward (Z, "னு");
if C = 0 then
goto lab21;
end if;
Z.C := Z.C - C;
-- test, line 150
v_8 := Z.L - Z.C;
-- not, line 150
v_9 := Z.L - Z.C;
-- among, line 150
Find_Among_Backward (Z, A_9, Among_String, null, A);
if A = 0 then
goto lab22;
end if;
goto lab21;
<<lab22>>
Z.C := Z.L - v_9;
Z.C := Z.L - v_8;
Z.Bra := Z.C; -- ], line 150
-- delete, line 150
Slice_Del (Z);
goto lab0;
<<lab21>>
Z.C := Z.L - v_1;
-- (, line 152
Z.Ket := Z.C; -- [, line 152
-- literal, line 152
C := Eq_S_Backward (Z, "ங்");
if C = 0 then
goto lab23;
end if;
Z.C := Z.C - C;
-- test, line 152
v_10 := Z.L - Z.C;
-- not, line 152
v_11 := Z.L - Z.C;
-- literal, line 152
C := Eq_S_Backward (Z, "ை");
if C = 0 then
goto lab24;
end if;
Z.C := Z.C - C;
goto lab23;
<<lab24>>
Z.C := Z.L - v_11;
Z.C := Z.L - v_10;
Z.Bra := Z.C; -- ], line 152
-- <-, line 152
Slice_From (Z, "ம்");
goto lab0;
<<lab23>>
Z.C := Z.L - v_1;
-- (, line 154
Z.Ket := Z.C; -- [, line 154
-- literal, line 154
C := Eq_S_Backward (Z, "ங்");
if C = 0 then
goto lab25;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 154
-- delete, line 154
Slice_Del (Z);
goto lab0;
<<lab25>>
Z.C := Z.L - v_1;
-- (, line 156
Z.Ket := Z.C; -- [, line 156
-- literal, line 156
C := Eq_S_Backward (Z, "்");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C - C;
-- test, line 156
v_12 := Z.L - Z.C;
-- or, line 156
v_13 := Z.L - Z.C;
-- among, line 156
Find_Among_Backward (Z, A_10, Among_String, null, A);
if A = 0 then
goto lab27;
end if;
goto lab26;
<<lab27>>
Z.C := Z.L - v_13;
-- literal, line 156
C := Eq_S_Backward (Z, "்");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C - C;
<<lab26>>
Z.C := Z.L - v_12;
Z.Bra := Z.C; -- ], line 156
-- delete, line 156
Slice_Del (Z);
<<lab0>>
Z.C := Z.Lb;
Result := True;
end R_Fix_ending;
procedure R_Remove_pronoun_prefixes (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
begin
-- (, line 160
-- unset found_a_match, line 161
Z.B_Found_a_match := False;
Z.Bra := Z.C; -- [, line 162
-- among, line 162
if Z.C + 2 >= Z.L or else Check_Among (Z, Z.C + 2, 4, 16#2a0#) then
Result := False;
return;
-- among, line 162
end if;
Find_Among (Z, A_11, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
-- among, line 162
Find_Among (Z, A_12, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
-- literal, line 162
C := Eq_S (Z, "்");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C + C;
Z.Ket := Z.C; -- ], line 162
-- delete, line 162
Slice_Del (Z);
-- set found_a_match, line 163
Z.B_Found_a_match := True;
-- do, line 164
v_1 := Z.C;
-- call fix_va_start, line 164
R_Fix_va_start (Z, Result);
Z.C := v_1;
Result := True;
end R_Remove_pronoun_prefixes;
procedure R_Remove_plural_suffix (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
begin
-- (, line 167
-- unset found_a_match, line 168
Z.B_Found_a_match := False;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 169
-- (, line 169
-- or, line 170
v_1 := Z.L - Z.C;
-- (, line 170
Z.Ket := Z.C; -- [, line 170
-- literal, line 170
C := Eq_S_Backward (Z, "ுங்கள்");
if C = 0 then
goto lab1;
end if;
Z.C := Z.C - C;
-- test, line 170
v_2 := Z.L - Z.C;
-- not, line 170
v_3 := Z.L - Z.C;
-- among, line 170
Find_Among_Backward (Z, A_13, Among_String, null, A);
if A = 0 then
goto lab2;
end if;
goto lab1;
<<lab2>>
Z.C := Z.L - v_3;
Z.C := Z.L - v_2;
Z.Bra := Z.C; -- ], line 170
-- <-, line 170
Slice_From (Z, "்");
goto lab0;
<<lab1>>
Z.C := Z.L - v_1;
-- (, line 171
Z.Ket := Z.C; -- [, line 171
-- literal, line 171
C := Eq_S_Backward (Z, "ற்கள்");
if C = 0 then
goto lab3;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 171
-- <-, line 171
Slice_From (Z, "ல்");
goto lab0;
<<lab3>>
Z.C := Z.L - v_1;
-- (, line 172
Z.Ket := Z.C; -- [, line 172
-- literal, line 172
C := Eq_S_Backward (Z, "ட்கள்");
if C = 0 then
goto lab4;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 172
-- <-, line 172
Slice_From (Z, "ள்");
goto lab0;
<<lab4>>
Z.C := Z.L - v_1;
-- (, line 173
Z.Ket := Z.C; -- [, line 173
-- literal, line 173
C := Eq_S_Backward (Z, "கள்");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 173
-- delete, line 173
Slice_Del (Z);
<<lab0>>
-- set found_a_match, line 174
Z.B_Found_a_match := True;
Z.C := Z.Lb;
Result := True;
end R_Remove_plural_suffix;
procedure R_Remove_question_suffixes (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
begin
-- (, line 178
-- call has_min_length, line 179
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
-- unset found_a_match, line 180
Z.B_Found_a_match := False;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 181
-- do, line 182
v_1 := Z.L - Z.C;
-- (, line 182
Z.Ket := Z.C; -- [, line 183
-- among, line 183
Find_Among_Backward (Z, A_14, Among_String, null, A);
if A = 0 then
goto lab0;
end if;
Z.Bra := Z.C; -- ], line 183
-- <-, line 183
Slice_From (Z, "்");
-- set found_a_match, line 184
Z.B_Found_a_match := True;
<<lab0>>
Z.C := Z.L - v_1;
Z.C := Z.Lb;
-- do, line 187
-- call fix_endings, line 187
R_Fix_endings (Z, Result);
Result := True;
end R_Remove_question_suffixes;
procedure R_Remove_command_suffixes (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
begin
-- (, line 190
-- call has_min_length, line 191
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
-- unset found_a_match, line 192
Z.B_Found_a_match := False;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 193
-- (, line 193
Z.Ket := Z.C; -- [, line 194
-- among, line 194
if Z.C - 5 <= Z.Lb or else Character'Pos (Z.P (Z.C)) /= 191 then
Result := False;
return;
-- among, line 194
end if;
Find_Among_Backward (Z, A_15, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 194
-- delete, line 194
Slice_Del (Z);
-- set found_a_match, line 195
Z.B_Found_a_match := True;
Z.C := Z.Lb;
Result := True;
end R_Remove_command_suffixes;
procedure R_Remove_um (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
begin
-- (, line 199
-- unset found_a_match, line 200
Z.B_Found_a_match := False;
-- call has_min_length, line 201
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 202
-- (, line 202
Z.Ket := Z.C; -- [, line 202
-- literal, line 202
C := Eq_S_Backward (Z, "ும்");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 202
-- <-, line 202
Slice_From (Z, "்");
-- set found_a_match, line 203
Z.B_Found_a_match := True;
Z.C := Z.Lb;
-- do, line 205
v_1 := Z.C;
-- call fix_ending, line 205
R_Fix_ending (Z, Result);
Z.C := v_1;
Result := True;
end R_Remove_um;
procedure R_Remove_common_word_endings (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Char_Index;
begin
-- (, line 208
-- unset found_a_match, line 212
Z.B_Found_a_match := False;
-- call has_min_length, line 213
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 214
-- or, line 231
v_1 := Z.L - Z.C;
-- test, line 215
v_2 := Z.L - Z.C;
-- (, line 215
Z.Ket := Z.C; -- [, line 215
-- or, line 215
v_3 := Z.L - Z.C;
-- literal, line 215
C := Eq_S_Backward (Z, "ுடன்");
if C = 0 then
goto lab3;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab3>>
Z.C := Z.L - v_3;
-- literal, line 216
C := Eq_S_Backward (Z, "ில்லை");
if C = 0 then
goto lab4;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab4>>
Z.C := Z.L - v_3;
-- literal, line 217
C := Eq_S_Backward (Z, "ிடம்");
if C = 0 then
goto lab5;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab5>>
Z.C := Z.L - v_3;
-- literal, line 218
C := Eq_S_Backward (Z, "ின்றி");
if C = 0 then
goto lab6;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab6>>
Z.C := Z.L - v_3;
-- literal, line 219
C := Eq_S_Backward (Z, "ாகி");
if C = 0 then
goto lab7;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab7>>
Z.C := Z.L - v_3;
-- literal, line 220
C := Eq_S_Backward (Z, "ாகிய");
if C = 0 then
goto lab8;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab8>>
Z.C := Z.L - v_3;
-- literal, line 221
C := Eq_S_Backward (Z, "ென்று");
if C = 0 then
goto lab9;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab9>>
Z.C := Z.L - v_3;
-- literal, line 222
C := Eq_S_Backward (Z, "ுள்ள");
if C = 0 then
goto lab10;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab10>>
Z.C := Z.L - v_3;
-- literal, line 223
C := Eq_S_Backward (Z, "ுடைய");
if C = 0 then
goto lab11;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab11>>
Z.C := Z.L - v_3;
-- literal, line 224
C := Eq_S_Backward (Z, "ுடை");
if C = 0 then
goto lab12;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab12>>
Z.C := Z.L - v_3;
-- literal, line 225
C := Eq_S_Backward (Z, "ெனும்");
if C = 0 then
goto lab13;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab13>>
Z.C := Z.L - v_3;
-- (, line 226
-- literal, line 226
C := Eq_S_Backward (Z, "ல்ல");
if C = 0 then
goto lab14;
end if;
Z.C := Z.C - C;
-- test, line 226
v_4 := Z.L - Z.C;
-- not, line 226
v_5 := Z.L - Z.C;
-- among, line 226
Find_Among_Backward (Z, A_16, Among_String, null, A);
if A = 0 then
goto lab15;
end if;
goto lab14;
<<lab15>>
Z.C := Z.L - v_5;
Z.C := Z.L - v_4;
goto lab2;
<<lab14>>
Z.C := Z.L - v_3;
-- literal, line 227
C := Eq_S_Backward (Z, "ென");
if C = 0 then
goto lab16;
end if;
Z.C := Z.C - C;
goto lab2;
<<lab16>>
Z.C := Z.L - v_3;
-- literal, line 228
C := Eq_S_Backward (Z, "ாகி");
if C = 0 then
goto lab1;
end if;
Z.C := Z.C - C;
<<lab2>>
Z.Bra := Z.C; -- ], line 228
-- <-, line 228
Slice_From (Z, "்");
-- set found_a_match, line 229
Z.B_Found_a_match := True;
Z.C := Z.L - v_2;
goto lab0;
<<lab1>>
Z.C := Z.L - v_1;
-- test, line 232
v_6 := Z.L - Z.C;
-- (, line 232
Z.Ket := Z.C; -- [, line 232
-- among, line 232
Find_Among_Backward (Z, A_17, Among_String, null, A);
if A = 0 then
Result := False;
return;
end if;
Z.Bra := Z.C; -- ], line 245
-- delete, line 245
Slice_Del (Z);
-- set found_a_match, line 246
Z.B_Found_a_match := True;
Z.C := Z.L - v_6;
<<lab0>>
Z.C := Z.Lb;
-- do, line 249
-- call fix_endings, line 249
R_Fix_endings (Z, Result);
Result := True;
end R_Remove_common_word_endings;
procedure R_Remove_vetrumai_urupukal (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Char_Index;
v_7 : Char_Index;
v_8 : Char_Index;
v_9 : Char_Index;
v_10 : Char_Index;
v_11 : Char_Index;
v_12 : Char_Index;
v_13 : Char_Index;
v_14 : Char_Index;
v_15 : Char_Index;
v_16 : Char_Index;
v_17 : Char_Index;
v_18 : Char_Index;
v_19 : Char_Index;
v_20 : Char_Index;
begin
-- (, line 252
-- unset found_a_match, line 253
Z.B_Found_a_match := False;
-- unset found_vetrumai_urupu, line 254
Z.B_Found_vetrumai_urupu := False;
-- call has_min_length, line 255
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 256
-- (, line 256
-- or, line 259
v_1 := Z.L - Z.C;
-- test, line 258
v_2 := Z.L - Z.C;
-- (, line 258
Z.Ket := Z.C; -- [, line 258
-- literal, line 258
C := Eq_S_Backward (Z, "னை");
if C = 0 then
goto lab1;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 258
-- delete, line 258
Slice_Del (Z);
Z.C := Z.L - v_2;
goto lab0;
<<lab1>>
Z.C := Z.L - v_1;
-- test, line 260
v_3 := Z.L - Z.C;
-- (, line 260
Z.Ket := Z.C; -- [, line 260
-- or, line 261
v_4 := Z.L - Z.C;
-- (, line 260
-- or, line 260
v_5 := Z.L - Z.C;
-- literal, line 260
C := Eq_S_Backward (Z, "ினை");
if C = 0 then
goto lab6;
end if;
Z.C := Z.C - C;
goto lab5;
<<lab6>>
Z.C := Z.L - v_5;
-- literal, line 261
C := Eq_S_Backward (Z, "ை");
if C = 0 then
goto lab4;
end if;
Z.C := Z.C - C;
<<lab5>>
-- test, line 261
v_6 := Z.L - Z.C;
-- not, line 261
v_7 := Z.L - Z.C;
-- among, line 261
Find_Among_Backward (Z, A_18, Among_String, null, A);
if A = 0 then
goto lab7;
end if;
goto lab4;
<<lab7>>
Z.C := Z.L - v_7;
Z.C := Z.L - v_6;
goto lab3;
<<lab4>>
Z.C := Z.L - v_4;
-- (, line 262
-- literal, line 262
C := Eq_S_Backward (Z, "ை");
if C = 0 then
goto lab2;
end if;
Z.C := Z.C - C;
-- test, line 262
v_8 := Z.L - Z.C;
-- (, line 262
-- among, line 262
Find_Among_Backward (Z, A_19, Among_String, null, A);
if A = 0 then
goto lab2;
end if;
-- literal, line 262
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab2;
end if;
Z.C := Z.C - C;
Z.C := Z.L - v_8;
<<lab3>>
Z.Bra := Z.C; -- ], line 263
-- <-, line 263
Slice_From (Z, "்");
Z.C := Z.L - v_3;
goto lab0;
<<lab2>>
Z.C := Z.L - v_1;
-- test, line 266
v_9 := Z.L - Z.C;
-- (, line 266
Z.Ket := Z.C; -- [, line 266
-- or, line 267
v_10 := Z.L - Z.C;
-- literal, line 267
C := Eq_S_Backward (Z, "ொடு");
if C = 0 then
goto lab10;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab10>>
Z.C := Z.L - v_10;
-- literal, line 268
C := Eq_S_Backward (Z, "ோடு");
if C = 0 then
goto lab11;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab11>>
Z.C := Z.L - v_10;
-- literal, line 269
C := Eq_S_Backward (Z, "ில்");
if C = 0 then
goto lab12;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab12>>
Z.C := Z.L - v_10;
-- literal, line 270
C := Eq_S_Backward (Z, "ிற்");
if C = 0 then
goto lab13;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab13>>
Z.C := Z.L - v_10;
-- (, line 271
-- literal, line 271
C := Eq_S_Backward (Z, "ின்");
if C = 0 then
goto lab14;
end if;
Z.C := Z.C - C;
-- test, line 271
v_11 := Z.L - Z.C;
-- not, line 271
v_12 := Z.L - Z.C;
-- literal, line 271
C := Eq_S_Backward (Z, "ம");
if C = 0 then
goto lab15;
end if;
Z.C := Z.C - C;
goto lab14;
<<lab15>>
Z.C := Z.L - v_12;
Z.C := Z.L - v_11;
goto lab9;
<<lab14>>
Z.C := Z.L - v_10;
-- literal, line 272
C := Eq_S_Backward (Z, "ின்று");
if C = 0 then
goto lab16;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab16>>
Z.C := Z.L - v_10;
-- literal, line 273
C := Eq_S_Backward (Z, "ிருந்து");
if C = 0 then
goto lab17;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab17>>
Z.C := Z.L - v_10;
-- literal, line 274
C := Eq_S_Backward (Z, "விட");
if C = 0 then
goto lab18;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab18>>
Z.C := Z.L - v_10;
-- (, line 275
if not (Length_Utf8 (Z) >= 7) then
goto lab19;
end if;
-- literal, line 275
C := Eq_S_Backward (Z, "ிடம்");
if C = 0 then
goto lab19;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab19>>
Z.C := Z.L - v_10;
-- literal, line 276
C := Eq_S_Backward (Z, "ால்");
if C = 0 then
goto lab20;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab20>>
Z.C := Z.L - v_10;
-- literal, line 277
C := Eq_S_Backward (Z, "ுடை");
if C = 0 then
goto lab21;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab21>>
Z.C := Z.L - v_10;
-- literal, line 278
C := Eq_S_Backward (Z, "ாமல்");
if C = 0 then
goto lab22;
end if;
Z.C := Z.C - C;
goto lab9;
<<lab22>>
Z.C := Z.L - v_10;
-- (, line 279
-- literal, line 279
C := Eq_S_Backward (Z, "ல்");
if C = 0 then
goto lab23;
end if;
Z.C := Z.C - C;
-- test, line 279
v_13 := Z.L - Z.C;
-- not, line 279
v_14 := Z.L - Z.C;
-- among, line 279
Find_Among_Backward (Z, A_20, Among_String, null, A);
if A = 0 then
goto lab24;
end if;
goto lab23;
<<lab24>>
Z.C := Z.L - v_14;
Z.C := Z.L - v_13;
goto lab9;
<<lab23>>
Z.C := Z.L - v_10;
-- literal, line 280
C := Eq_S_Backward (Z, "ுள்");
if C = 0 then
goto lab8;
end if;
Z.C := Z.C - C;
<<lab9>>
Z.Bra := Z.C; -- ], line 281
-- <-, line 281
Slice_From (Z, "்");
Z.C := Z.L - v_9;
goto lab0;
<<lab8>>
Z.C := Z.L - v_1;
-- test, line 284
v_15 := Z.L - Z.C;
-- (, line 284
Z.Ket := Z.C; -- [, line 284
-- or, line 285
v_16 := Z.L - Z.C;
-- literal, line 285
C := Eq_S_Backward (Z, "கண்");
if C = 0 then
goto lab27;
end if;
Z.C := Z.C - C;
goto lab26;
<<lab27>>
Z.C := Z.L - v_16;
-- literal, line 286
C := Eq_S_Backward (Z, "முன்");
if C = 0 then
goto lab28;
end if;
Z.C := Z.C - C;
goto lab26;
<<lab28>>
Z.C := Z.L - v_16;
-- literal, line 287
C := Eq_S_Backward (Z, "மேல்");
if C = 0 then
goto lab29;
end if;
Z.C := Z.C - C;
goto lab26;
<<lab29>>
Z.C := Z.L - v_16;
-- literal, line 288
C := Eq_S_Backward (Z, "மேற்");
if C = 0 then
goto lab30;
end if;
Z.C := Z.C - C;
goto lab26;
<<lab30>>
Z.C := Z.L - v_16;
-- literal, line 289
C := Eq_S_Backward (Z, "கீழ்");
if C = 0 then
goto lab31;
end if;
Z.C := Z.C - C;
goto lab26;
<<lab31>>
Z.C := Z.L - v_16;
-- literal, line 290
C := Eq_S_Backward (Z, "பின்");
if C = 0 then
goto lab32;
end if;
Z.C := Z.C - C;
goto lab26;
<<lab32>>
Z.C := Z.L - v_16;
-- (, line 291
-- literal, line 291
C := Eq_S_Backward (Z, "து");
if C = 0 then
goto lab25;
end if;
Z.C := Z.C - C;
-- test, line 291
v_17 := Z.L - Z.C;
-- not, line 291
v_18 := Z.L - Z.C;
-- among, line 291
Find_Among_Backward (Z, A_21, Among_String, null, A);
if A = 0 then
goto lab33;
end if;
goto lab25;
<<lab33>>
Z.C := Z.L - v_18;
Z.C := Z.L - v_17;
<<lab26>>
Z.Bra := Z.C; -- ], line 292
-- delete, line 292
Slice_Del (Z);
Z.C := Z.L - v_15;
goto lab0;
<<lab25>>
Z.C := Z.L - v_1;
-- test, line 295
v_19 := Z.L - Z.C;
-- (, line 295
Z.Ket := Z.C; -- [, line 295
-- literal, line 295
C := Eq_S_Backward (Z, "ீ");
if C = 0 then
Result := False;
return;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 295
-- <-, line 295
Slice_From (Z, "ி");
Z.C := Z.L - v_19;
<<lab0>>
-- set found_a_match, line 297
Z.B_Found_a_match := True;
-- set found_vetrumai_urupu, line 298
Z.B_Found_vetrumai_urupu := True;
-- do, line 299
v_20 := Z.L - Z.C;
-- (, line 299
Z.Ket := Z.C; -- [, line 299
-- literal, line 299
C := Eq_S_Backward (Z, "ின்");
if C = 0 then
goto lab34;
end if;
Z.C := Z.C - C;
Z.Bra := Z.C; -- ], line 299
-- <-, line 299
Slice_From (Z, "்");
<<lab34>>
Z.C := Z.L - v_20;
Z.C := Z.Lb;
-- do, line 301
-- call fix_endings, line 301
R_Fix_endings (Z, Result);
Result := True;
end R_Remove_vetrumai_urupukal;
procedure R_Remove_tense_suffixes (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
begin
-- (, line 304
-- set found_a_match, line 305
Z.B_Found_a_match := True;
-- repeat, line 306
<<lab0>>
loop
v_1 := Z.C;
-- (, line 306
-- Boolean test found_a_match, line 306
if not Z.B_Found_a_match then
goto lab1;
end if;
-- do, line 306
v_2 := Z.C;
-- call remove_tense_suffix, line 306
R_Remove_tense_suffix (Z, Result);
Z.C := v_2;
goto lab0;
<<lab1>>
Z.C := v_1;
exit;
end loop;
Result := True;
end R_Remove_tense_suffixes;
procedure R_Remove_tense_suffix (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Char_Index;
v_7 : Char_Index;
v_8 : Char_Index;
v_9 : Char_Index;
v_10 : Char_Index;
v_11 : Char_Index;
v_12 : Char_Index;
v_13 : Char_Index;
v_14 : Char_Index;
v_15 : Char_Index;
v_16 : Char_Index;
v_17 : Char_Index;
begin
-- (, line 309
-- unset found_a_match, line 310
Z.B_Found_a_match := False;
-- call has_min_length, line 311
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
Z.Lb := Z.C; Z.C := Z.L; -- backwards, line 312
-- (, line 312
-- do, line 313
v_1 := Z.L - Z.C;
-- or, line 320
v_2 := Z.L - Z.C;
-- test, line 314
v_3 := Z.L - Z.C;
-- (, line 314
Z.Ket := Z.C; -- [, line 314
-- among, line 314
if Z.C - 8 <= Z.Lb or else (Character'Pos (Z.P (Z.C)) /= 129 and then Character'Pos (Z.P (Z.C)) /= 141) then
goto lab2;
-- among, line 314
end if;
Find_Among_Backward (Z, A_22, Among_String, null, A);
if A = 0 then
goto lab2;
end if;
Z.Bra := Z.C; -- ], line 317
-- delete, line 317
Slice_Del (Z);
-- set found_a_match, line 318
Z.B_Found_a_match := True;
Z.C := Z.L - v_3;
goto lab1;
<<lab2>>
Z.C := Z.L - v_2;
-- test, line 321
v_4 := Z.L - Z.C;
-- (, line 321
Z.Ket := Z.C; -- [, line 321
-- or, line 322
v_5 := Z.L - Z.C;
-- literal, line 322
C := Eq_S_Backward (Z, "மார்");
if C = 0 then
goto lab5;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab5>>
Z.C := Z.L - v_5;
-- literal, line 323
C := Eq_S_Backward (Z, "மின்");
if C = 0 then
goto lab6;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab6>>
Z.C := Z.L - v_5;
-- literal, line 324
C := Eq_S_Backward (Z, "னன்");
if C = 0 then
goto lab7;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab7>>
Z.C := Z.L - v_5;
-- literal, line 325
C := Eq_S_Backward (Z, "னான்");
if C = 0 then
goto lab8;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab8>>
Z.C := Z.L - v_5;
-- literal, line 326
C := Eq_S_Backward (Z, "னாள்");
if C = 0 then
goto lab9;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab9>>
Z.C := Z.L - v_5;
-- literal, line 327
C := Eq_S_Backward (Z, "னார்");
if C = 0 then
goto lab10;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab10>>
Z.C := Z.L - v_5;
-- (, line 328
-- literal, line 328
C := Eq_S_Backward (Z, "வன்");
if C = 0 then
goto lab11;
end if;
Z.C := Z.C - C;
-- test, line 328
v_6 := Z.L - Z.C;
-- not, line 328
v_7 := Z.L - Z.C;
-- among, line 328
if Z.C - 2 <= Z.Lb or else Check_Among (Z, Z.C - 1, 4, 16#1dc7e0#) then
goto lab12;
-- among, line 328
end if;
Find_Among_Backward (Z, A_23, Among_String, null, A);
if A = 0 then
goto lab12;
end if;
goto lab11;
<<lab12>>
Z.C := Z.L - v_7;
Z.C := Z.L - v_6;
goto lab4;
<<lab11>>
Z.C := Z.L - v_5;
-- literal, line 329
C := Eq_S_Backward (Z, "னள்");
if C = 0 then
goto lab13;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab13>>
Z.C := Z.L - v_5;
-- literal, line 330
C := Eq_S_Backward (Z, "வள்");
if C = 0 then
goto lab14;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab14>>
Z.C := Z.L - v_5;
-- literal, line 331
C := Eq_S_Backward (Z, "னர்");
if C = 0 then
goto lab15;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab15>>
Z.C := Z.L - v_5;
-- literal, line 332
C := Eq_S_Backward (Z, "வர்");
if C = 0 then
goto lab16;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab16>>
Z.C := Z.L - v_5;
-- literal, line 333
C := Eq_S_Backward (Z, "ன");
if C = 0 then
goto lab17;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab17>>
Z.C := Z.L - v_5;
-- literal, line 333
C := Eq_S_Backward (Z, "ப");
if C = 0 then
goto lab18;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab18>>
Z.C := Z.L - v_5;
-- literal, line 333
C := Eq_S_Backward (Z, "க");
if C = 0 then
goto lab19;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab19>>
Z.C := Z.L - v_5;
-- literal, line 333
C := Eq_S_Backward (Z, "த");
if C = 0 then
goto lab20;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab20>>
Z.C := Z.L - v_5;
-- literal, line 333
C := Eq_S_Backward (Z, "ய");
if C = 0 then
goto lab21;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab21>>
Z.C := Z.L - v_5;
-- literal, line 334
C := Eq_S_Backward (Z, "பன்");
if C = 0 then
goto lab22;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab22>>
Z.C := Z.L - v_5;
-- literal, line 335
C := Eq_S_Backward (Z, "பள்");
if C = 0 then
goto lab23;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab23>>
Z.C := Z.L - v_5;
-- literal, line 336
C := Eq_S_Backward (Z, "பர்");
if C = 0 then
goto lab24;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab24>>
Z.C := Z.L - v_5;
-- (, line 337
-- literal, line 337
C := Eq_S_Backward (Z, "து");
if C = 0 then
goto lab25;
end if;
Z.C := Z.C - C;
-- test, line 337
v_8 := Z.L - Z.C;
-- not, line 337
v_9 := Z.L - Z.C;
-- among, line 337
Find_Among_Backward (Z, A_24, Among_String, null, A);
if A = 0 then
goto lab26;
end if;
goto lab25;
<<lab26>>
Z.C := Z.L - v_9;
Z.C := Z.L - v_8;
goto lab4;
<<lab25>>
Z.C := Z.L - v_5;
-- literal, line 338
C := Eq_S_Backward (Z, "ிற்று");
if C = 0 then
goto lab27;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab27>>
Z.C := Z.L - v_5;
-- literal, line 339
C := Eq_S_Backward (Z, "பம்");
if C = 0 then
goto lab28;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab28>>
Z.C := Z.L - v_5;
-- literal, line 340
C := Eq_S_Backward (Z, "னம்");
if C = 0 then
goto lab29;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab29>>
Z.C := Z.L - v_5;
-- literal, line 341
C := Eq_S_Backward (Z, "தும்");
if C = 0 then
goto lab30;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab30>>
Z.C := Z.L - v_5;
-- literal, line 342
C := Eq_S_Backward (Z, "றும்");
if C = 0 then
goto lab31;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab31>>
Z.C := Z.L - v_5;
-- literal, line 343
C := Eq_S_Backward (Z, "கும்");
if C = 0 then
goto lab32;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab32>>
Z.C := Z.L - v_5;
-- literal, line 344
C := Eq_S_Backward (Z, "னென்");
if C = 0 then
goto lab33;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab33>>
Z.C := Z.L - v_5;
-- literal, line 345
C := Eq_S_Backward (Z, "னை");
if C = 0 then
goto lab34;
end if;
Z.C := Z.C - C;
goto lab4;
<<lab34>>
Z.C := Z.L - v_5;
-- literal, line 346
C := Eq_S_Backward (Z, "வை");
if C = 0 then
goto lab3;
end if;
Z.C := Z.C - C;
<<lab4>>
Z.Bra := Z.C; -- ], line 347
-- delete, line 347
Slice_Del (Z);
-- set found_a_match, line 348
Z.B_Found_a_match := True;
Z.C := Z.L - v_4;
goto lab1;
<<lab3>>
Z.C := Z.L - v_2;
-- test, line 351
v_10 := Z.L - Z.C;
-- (, line 351
Z.Ket := Z.C; -- [, line 351
-- or, line 352
v_11 := Z.L - Z.C;
-- (, line 352
-- literal, line 352
C := Eq_S_Backward (Z, "ான்");
if C = 0 then
goto lab37;
end if;
Z.C := Z.C - C;
-- test, line 352
v_12 := Z.L - Z.C;
-- not, line 352
v_13 := Z.L - Z.C;
-- literal, line 352
C := Eq_S_Backward (Z, "ச");
if C = 0 then
goto lab38;
end if;
Z.C := Z.C - C;
goto lab37;
<<lab38>>
Z.C := Z.L - v_13;
Z.C := Z.L - v_12;
goto lab36;
<<lab37>>
Z.C := Z.L - v_11;
-- literal, line 353
C := Eq_S_Backward (Z, "ாள்");
if C = 0 then
goto lab39;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab39>>
Z.C := Z.L - v_11;
-- literal, line 354
C := Eq_S_Backward (Z, "ார்");
if C = 0 then
goto lab40;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab40>>
Z.C := Z.L - v_11;
-- literal, line 355
C := Eq_S_Backward (Z, "ேன்");
if C = 0 then
goto lab41;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab41>>
Z.C := Z.L - v_11;
-- literal, line 356
C := Eq_S_Backward (Z, "ா");
if C = 0 then
goto lab42;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab42>>
Z.C := Z.L - v_11;
-- literal, line 357
C := Eq_S_Backward (Z, "ாம்");
if C = 0 then
goto lab43;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab43>>
Z.C := Z.L - v_11;
-- literal, line 358
C := Eq_S_Backward (Z, "ெம்");
if C = 0 then
goto lab44;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab44>>
Z.C := Z.L - v_11;
-- literal, line 359
C := Eq_S_Backward (Z, "ேம்");
if C = 0 then
goto lab45;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab45>>
Z.C := Z.L - v_11;
-- literal, line 360
C := Eq_S_Backward (Z, "ோம்");
if C = 0 then
goto lab46;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab46>>
Z.C := Z.L - v_11;
-- literal, line 361
C := Eq_S_Backward (Z, "கும்");
if C = 0 then
goto lab47;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab47>>
Z.C := Z.L - v_11;
-- literal, line 362
C := Eq_S_Backward (Z, "தும்");
if C = 0 then
goto lab48;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab48>>
Z.C := Z.L - v_11;
-- literal, line 363
C := Eq_S_Backward (Z, "டும்");
if C = 0 then
goto lab49;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab49>>
Z.C := Z.L - v_11;
-- literal, line 364
C := Eq_S_Backward (Z, "றும்");
if C = 0 then
goto lab50;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab50>>
Z.C := Z.L - v_11;
-- literal, line 365
C := Eq_S_Backward (Z, "ாய்");
if C = 0 then
goto lab51;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab51>>
Z.C := Z.L - v_11;
-- literal, line 366
C := Eq_S_Backward (Z, "னென்");
if C = 0 then
goto lab52;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab52>>
Z.C := Z.L - v_11;
-- literal, line 367
C := Eq_S_Backward (Z, "னிர்");
if C = 0 then
goto lab53;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab53>>
Z.C := Z.L - v_11;
-- literal, line 368
C := Eq_S_Backward (Z, "ீர்");
if C = 0 then
goto lab54;
end if;
Z.C := Z.C - C;
goto lab36;
<<lab54>>
Z.C := Z.L - v_11;
-- literal, line 369
C := Eq_S_Backward (Z, "ீயர்");
if C = 0 then
goto lab35;
end if;
Z.C := Z.C - C;
<<lab36>>
Z.Bra := Z.C; -- ], line 370
-- <-, line 370
Slice_From (Z, "்");
-- set found_a_match, line 371
Z.B_Found_a_match := True;
Z.C := Z.L - v_10;
goto lab1;
<<lab35>>
Z.C := Z.L - v_2;
-- test, line 374
v_14 := Z.L - Z.C;
-- (, line 374
-- (, line 374
Z.Ket := Z.C; -- [, line 374
-- or, line 374
v_15 := Z.L - Z.C;
-- literal, line 374
C := Eq_S_Backward (Z, "கு");
if C = 0 then
goto lab56;
end if;
Z.C := Z.C - C;
goto lab55;
<<lab56>>
Z.C := Z.L - v_15;
-- literal, line 374
C := Eq_S_Backward (Z, "து");
if C = 0 then
goto lab0;
end if;
Z.C := Z.C - C;
<<lab55>>
-- test, line 374
v_16 := Z.L - Z.C;
-- literal, line 374
C := Eq_S_Backward (Z, "்");
if C = 0 then
goto lab0;
end if;
Z.C := Z.C - C;
Z.C := Z.L - v_16;
Z.Bra := Z.C; -- ], line 374
-- delete, line 374
Slice_Del (Z);
-- set found_a_match, line 375
Z.B_Found_a_match := True;
Z.C := Z.L - v_14;
<<lab1>>
<<lab0>>
Z.C := Z.L - v_1;
-- do, line 378
v_17 := Z.L - Z.C;
-- (, line 378
Z.Ket := Z.C; -- [, line 378
-- among, line 378
if Z.C - 8 <= Z.Lb or else (Character'Pos (Z.P (Z.C)) /= 141 and then Character'Pos (Z.P (Z.C)) /= 177) then
goto lab57;
-- among, line 378
end if;
Find_Among_Backward (Z, A_25, Among_String, null, A);
if A = 0 then
goto lab57;
end if;
Z.Bra := Z.C; -- ], line 385
-- delete, line 385
Slice_Del (Z);
-- set found_a_match, line 386
Z.B_Found_a_match := True;
<<lab57>>
Z.C := Z.L - v_17;
Z.C := Z.Lb;
-- do, line 389
-- call fix_endings, line 389
R_Fix_endings (Z, Result);
Result := True;
end R_Remove_tense_suffix;
procedure Stem (Z : in out Context_Type; Result : out Boolean) is
C : Result_Index;
A : Integer;
v_1 : Char_Index;
v_2 : Char_Index;
v_3 : Char_Index;
v_4 : Char_Index;
v_5 : Char_Index;
v_6 : Char_Index;
v_7 : Char_Index;
v_8 : Char_Index;
v_9 : Char_Index;
v_10 : Char_Index;
begin
-- (, line 392
-- unset found_vetrumai_urupu, line 393
Z.B_Found_vetrumai_urupu := False;
-- do, line 394
v_1 := Z.C;
-- call fix_ending, line 394
R_Fix_ending (Z, Result);
Z.C := v_1;
-- call has_min_length, line 395
R_Has_min_length (Z, Result);
if not Result then
Result := False;
return;
end if;
-- do, line 396
v_2 := Z.C;
-- call remove_question_prefixes, line 396
R_Remove_question_prefixes (Z, Result);
Z.C := v_2;
-- do, line 397
v_3 := Z.C;
-- call remove_pronoun_prefixes, line 397
R_Remove_pronoun_prefixes (Z, Result);
Z.C := v_3;
-- do, line 398
v_4 := Z.C;
-- call remove_question_suffixes, line 398
R_Remove_question_suffixes (Z, Result);
Z.C := v_4;
-- do, line 399
v_5 := Z.C;
-- call remove_um, line 399
R_Remove_um (Z, Result);
Z.C := v_5;
-- do, line 400
v_6 := Z.C;
-- call remove_common_word_endings, line 400
R_Remove_common_word_endings (Z, Result);
Z.C := v_6;
-- do, line 401
v_7 := Z.C;
-- call remove_vetrumai_urupukal, line 401
R_Remove_vetrumai_urupukal (Z, Result);
Z.C := v_7;
-- do, line 402
v_8 := Z.C;
-- call remove_plural_suffix, line 402
R_Remove_plural_suffix (Z, Result);
Z.C := v_8;
-- do, line 403
v_9 := Z.C;
-- call remove_command_suffixes, line 403
R_Remove_command_suffixes (Z, Result);
Z.C := v_9;
-- do, line 404
v_10 := Z.C;
-- call remove_tense_suffixes, line 404
R_Remove_tense_suffixes (Z, Result);
Z.C := v_10;
Result := True;
end Stem;
end Stemmer.Tamil;
|
-----------------------------------------------------------------------
-- awa-storages -- Storage module
-- Copyright (C) 2012, 2015, 2016, 2018, 2020 Stephane Carrez
-- Written by Stephane Carrez (Stephane.Carrez@gmail.com)
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-----------------------------------------------------------------------
with Ada.Strings.Unbounded;
with Ada.Finalization;
with ADO;
-- = Storages Module =
-- The `storages` module provides a set of storage services allowing
-- an application to store data files, documents, images in a persistent area.
-- The persistent store can be on a file system, in the database or provided
-- by a remote service such as Amazon Simple Storage Service.
--
-- @include awa-storages-modules.ads
--
-- == Creating a storage ==
-- A data in the storage is represented by a `Storage_Ref` instance.
-- The data itself can be physically stored in a file system (`FILE` mode),
-- in the database (`DATABASE` mode) or on a remote server (`URL` mode).
-- To put a file in the storage space, first create the storage object
-- instance:
--
-- Data : AWA.Storages.Models.Storage_Ref;
--
-- Then setup the storage mode that you want. The storage service uses
-- this information to save the data in a file, in the database or in
-- a remote service (in the future).
-- To save a file in the store, we can use the `Save` operation of the
-- storage service.
-- It will read the file and put in in the corresponding persistent store
-- (the database in this example).
--
-- Service.Save (Into => Data, Path => Path_To_The_File,
-- Storage => AWA.Storages.Models.DATABASE);
--
-- Upon successful completion, the storage instance `Data` will be allocated
-- a unique identifier that can be retrieved by `Get_Id` or `Get_Key`.
--
-- == Getting the data ==
-- Several operations are defined to retrieve the data. Each of them has been
-- designed to optimize the retrieval and
--
-- * The data can be retrieved in a local file.
-- This mode is useful if an external program must be launched and be able
-- to read the file. If the storage mode of the data is `FILE`, the path
-- of the file on the storage file system is used. For other storage modes,
-- the file is saved in a temporary file. In that case the `Store_Local`
-- database table is used to track such locally saved data.
--
-- * The data can be returned as a stream.
-- When the application has to read the data, opening a read stream
-- connection is the most efficient mechanism.
--
-- == Local file ==
-- To access the data by using a local file, we must define a local storage
-- reference:
--
-- Data : AWA.Storages.Models.Store_Local_Ref;
--
-- and use the `Load` operation with the storage identifier. When loading
-- locally we also indicate whether the file will be read or written. A file
-- that is in `READ` mode can be shared by several tasks or processes.
-- A file that is in `WRITE` mode will have a specific copy for the caller.
-- An optional expiration parameter indicate when the local file representation
-- can expire.
--
-- Service.Load (From => Id, Into => Data, Mode => READ, Expire => ONE_DAY);
--
-- Once the load operation succeeded, the data is stored on the file system and
-- the local path is obtained by using the `Get_Path` operation:
--
-- Path : constant String := Data.Get_Path;
--
-- @include awa-storages-services.ads
--
-- == Ada Beans ==
-- @include-bean storages.xml
-- @include-bean storage-list.xml
-- @include-bean folder-queries.xml
-- @include-bean storage-queries.xml
--
-- @include awa-storages-servlets.ads
--
-- == Queries ==
-- @include-query storage-list.xml
-- @include-query folder-queries.xml
-- @include-query storage-queries.xml
-- @include-query storage-info.xml
--
-- == Data model ==
-- [images/awa_storages_model.png]
--
package AWA.Storages is
type Storage_Type is (DATABASE, FILE, URL, CACHE, TMP);
type Storage_File (Storage : Storage_Type) is tagged limited private;
-- Get the path to get access to the file.
function Get_Path (File : in Storage_File) return String;
-- Set the file path for the FILE, URL, CACHE or TMP storage.
procedure Set (File : in out Storage_File;
Path : in String);
-- Set the file database storage identifier.
procedure Set (File : in out Storage_File;
Workspace : in ADO.Identifier;
Store : in ADO.Identifier);
private
type Storage_File (Storage : Storage_Type) is limited
new Ada.Finalization.Limited_Controlled with record
case Storage is
when DATABASE =>
Workspace : ADO.Identifier;
Store : ADO.Identifier;
when FILE | URL | CACHE | TMP =>
Path : Ada.Strings.Unbounded.Unbounded_String;
end case;
end record;
overriding
procedure Finalize (File : in out Storage_File);
end AWA.Storages;
|
-- An example of using low-level convertor API (fixed string procedures)
-- Program reads standard input, adds cr before lf, then writes to standard output
with Ada.Streams;
use Ada.Streams;
with Ada.Text_IO;
use Ada.Text_IO;
with Ada.Text_IO.Text_Streams;
use Ada.Text_IO.Text_Streams;
with Ada.Unchecked_Conversion;
with Encodings.Line_Endings.Strip_CR;
with Encodings.Utility;
use Encodings.Utility;
procedure Strip_CR is
Input_Stream: Stream_Access := Stream(Standard_Input);
Output_Stream: Stream_Access := Stream(Standard_Output);
Input_Buffer: String(1 .. 100);
Output_Buffer: String(1 .. 100);
Input_Last, Input_Read_Last: Natural;
Output_Last: Natural;
Coder: Encodings.Line_Endings.Strip_CR.Coder;
begin
while not End_Of_File(Standard_Input) loop
Read_String(Input_Stream.all, Input_Buffer, Input_Read_Last);
Input_Last := Input_Buffer'First - 1;
while Input_Last < Input_Read_Last loop
Coder.Convert(Input_Buffer(Input_Last + 1 .. Input_Read_Last), Input_Last, Output_Buffer, Output_Last);
String'Write(Output_Stream, Output_Buffer(Output_Buffer'First .. Output_Last));
end loop;
end loop;
end Strip_CR;
|
-------------------------------------------------------------------------------
-- LSE -- L-System Editor
-- Author: Heziode
--
-- License:
-- MIT License
--
-- Copyright (c) 2018 Quentin Dauprat (Heziode) <Heziode@protonmail.com>
--
-- Permission is hereby granted, free of charge, to any person obtaining a
-- copy of this software and associated documentation files (the "Software"),
-- to deal in the Software without restriction, including without limitation
-- the rights to use, copy, modify, merge, publish, distribute, sublicense,
-- and/or sell copies of the Software, and to permit persons to whom the
-- Software is furnished to do so, subject to the following conditions:
--
-- The above copyright notice and this permission notice shall be included in
-- all copies or substantial portions of the Software.
--
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
-- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
-- DEALINGS IN THE SOFTWARE.
-------------------------------------------------------------------------------
with LSE.Model.Interpreter;
use LSE.Model.Interpreter;
-- @summary
-- Represent an abstract Symbol.
--
-- @description
-- This package represent an abstract Symbol. It allow to interpret the symbol
-- for drawing on medium or get a representation of this.
--
package LSE.Model.Grammar.Symbol is
-- Representation of symbole
type Instance is abstract
new LSE.Model.Interpreter.Instance with private;
-- Constructor
procedure Initialize (This : out Instance)
is abstract;
-- Getting representation of this symbol
function Get_Representation (This : Instance) return Character;
-- Put this symbol in STDIO
procedure Put (This : Instance);
private
type Instance is abstract new LSE.Model.Interpreter.Instance with record
-- Representation of the Symbol
Representation : Character;
end record;
end LSE.Model.Grammar.Symbol;
|
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Unchecked_Deallocation;
package body LCA is
procedure Free is
new Ada.Unchecked_Deallocation (Object => T_Cellule, Name => T_LCA);
procedure Initialiser(Sda: out T_LCA) is
begin
Sda := null; -- Initialiser Sda
end Initialiser;
function Est_Vide (Sda : T_LCA) return Boolean is
begin
return Sda = null;
end Est_Vide;
-- Calculer la taille d'une maniere recursive
function Taille (Sda : in T_LCA) return Integer is
begin
if Est_Vide(Sda) then
return 0;
else
return 1 + Taille(Sda.all.Suivante);
end if;
end Taille;
procedure Enregistrer (Sda : in out T_LCA ; Cle : in T_Cle ; Donnee : in T_Donnee) is
Sda_2 : T_LCA;
begin
if Est_Vide(Sda) then
Sda_2 := new T_Cellule;
Sda_2.all.Cle := Cle;
Sda_2.all.Donnee := Donnee;
Sda_2.all.Suivante := Sda;
Sda := Sda_2;
elsif Sda.all.Cle = Cle then
Sda.all.Donnee := Donnee;
else
Enregistrer(Sda.all.Suivante,Cle,Donnee);
end if;
end Enregistrer;
function Cle_Presente (Sda : in T_LCA ; Cle : in T_Cle) return Boolean is
begin
if Est_Vide(Sda) then
return False;
elsif Sda.all.Cle = Cle then
return True;
else
return Cle_Presente(Sda.all.Suivante,Cle);
end if;
end Cle_Presente;
function La_Donnee (Sda : in T_LCA ; Cle : in T_Cle) return T_Donnee is
begin
if Est_Vide(Sda) then
raise Cle_Absente_Exception;
elsif Sda.all.Cle = Cle then
return Sda.all.Donnee;
else
return La_Donnee(Sda.all.Suivante,Cle);
end if;
end La_Donnee;
procedure Supprimer (Sda : in out T_LCA ; Cle : in T_Cle) is
Cellule_temporaire : T_LCA;
begin
if Est_Vide(Sda) then
raise Cle_Absente_Exception;
elsif Sda.all.Cle = Cle then
Cellule_temporaire := Sda;
Sda := Sda.all.Suivante;
Free(Cellule_temporaire);
else
Supprimer(Sda.all.Suivante,Cle);
end if;
end Supprimer;
procedure Vider (Sda : in out T_LCA) is
begin
if Est_Vide(Sda) then
null;
else
Vider(Sda.all.Suivante);
Free(Sda);
end if;
end Vider;
procedure Pour_Chaque (Sda : in T_LCA) is
begin
if Est_Vide(Sda) then
null;
else
begin
Traiter(Sda.all.Cle,Sda.all.Donnee);
exception
when others => pragma Assert (False);
end;
Pour_Chaque(Sda.all.Suivante);
end if;
end Pour_Chaque;
end LCA;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.Generic_Collections;
package AMF.UML.Destroy_Object_Actions.Collections is
pragma Preelaborate;
package UML_Destroy_Object_Action_Collections is
new AMF.Generic_Collections
(UML_Destroy_Object_Action,
UML_Destroy_Object_Action_Access);
type Set_Of_UML_Destroy_Object_Action is
new UML_Destroy_Object_Action_Collections.Set with null record;
Empty_Set_Of_UML_Destroy_Object_Action : constant Set_Of_UML_Destroy_Object_Action;
type Ordered_Set_Of_UML_Destroy_Object_Action is
new UML_Destroy_Object_Action_Collections.Ordered_Set with null record;
Empty_Ordered_Set_Of_UML_Destroy_Object_Action : constant Ordered_Set_Of_UML_Destroy_Object_Action;
type Bag_Of_UML_Destroy_Object_Action is
new UML_Destroy_Object_Action_Collections.Bag with null record;
Empty_Bag_Of_UML_Destroy_Object_Action : constant Bag_Of_UML_Destroy_Object_Action;
type Sequence_Of_UML_Destroy_Object_Action is
new UML_Destroy_Object_Action_Collections.Sequence with null record;
Empty_Sequence_Of_UML_Destroy_Object_Action : constant Sequence_Of_UML_Destroy_Object_Action;
private
Empty_Set_Of_UML_Destroy_Object_Action : constant Set_Of_UML_Destroy_Object_Action
:= (UML_Destroy_Object_Action_Collections.Set with null record);
Empty_Ordered_Set_Of_UML_Destroy_Object_Action : constant Ordered_Set_Of_UML_Destroy_Object_Action
:= (UML_Destroy_Object_Action_Collections.Ordered_Set with null record);
Empty_Bag_Of_UML_Destroy_Object_Action : constant Bag_Of_UML_Destroy_Object_Action
:= (UML_Destroy_Object_Action_Collections.Bag with null record);
Empty_Sequence_Of_UML_Destroy_Object_Action : constant Sequence_Of_UML_Destroy_Object_Action
:= (UML_Destroy_Object_Action_Collections.Sequence with null record);
end AMF.UML.Destroy_Object_Actions.Collections;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . W I D E _ W I D E _ T E X T _ I O . F L O A T _ A U X --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routines for Ada.Wide_Wide_Text_IO.Float_IO that
-- are shared among separate instantiations of this package. The routines
-- in this package are identical semantically to those in Float_IO itself,
-- except that generic parameter Num has been replaced by Long_Long_Float,
-- and the default parameters have been removed because they are supplied
-- explicitly by the calls from within the generic template. Also used by
-- Ada.Wide_Wide_Text_IO.Fixed_IO, and by Ada.Wide_Wide_Text_IO.Decimal_IO.
private package Ada.Wide_Wide_Text_IO.Float_Aux is
procedure Load_Real
(File : File_Type;
Buf : out String;
Ptr : in out Natural);
-- This is an auxiliary routine that is used to load a possibly signed
-- real literal value from the input file into Buf, starting at Ptr + 1.
procedure Get
(File : File_Type;
Item : out Long_Long_Float;
Width : Field);
procedure Gets
(From : String;
Item : out Long_Long_Float;
Last : out Positive);
procedure Put
(File : File_Type;
Item : Long_Long_Float;
Fore : Field;
Aft : Field;
Exp : Field);
procedure Puts
(To : out String;
Item : Long_Long_Float;
Aft : Field;
Exp : Field);
end Ada.Wide_Wide_Text_IO.Float_Aux;
|
No-one has translated the taskwork2 example into Ada yet. Be the first to create
taskwork2 in Ada and get one free Internet! If you're the author of the Ada
binding, this is a great way to get people to use 0MQ in Ada.
To submit a new translation email it to zeromq-dev@lists.zeromq.org. Please:
* Stick to identical functionality and naming used in examples so that readers
can easily compare languages.
* You MUST place your name as author in the examples so readers can contact you.
* You MUST state in the email that you license your code under the MIT/X11
license.
Subscribe to this list at http://lists.zeromq.org/mailman/listinfo/zeromq-dev.
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2012-2013, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
-- This file is generated, don't edit it.
------------------------------------------------------------------------------
with AMF.UML.Classifiers;
package AMF.OCL.Invalid_Types is
pragma Preelaborate;
type OCL_Invalid_Type is limited interface
and AMF.UML.Classifiers.UML_Classifier;
type OCL_Invalid_Type_Access is
access all OCL_Invalid_Type'Class;
for OCL_Invalid_Type_Access'Storage_Size use 0;
end AMF.OCL.Invalid_Types;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- G N A T . B O U N D E D _ M A I L B O X E S --
-- --
-- S p e c --
-- --
-- Copyright (C) 2003-2019, AdaCore --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
-- This package provides a thread-safe asynchronous communication facility
-- in the form of mailboxes. Individual mailbox objects are bounded in size
-- to a value specified by their Capacity discriminants.
-- Mailboxes actually hold references to messages, not the message values
-- themselves.
-- Type Mailbox is defined explicitly as a protected type (via derivation
-- from a protected type) so that clients may treat them accordingly (for
-- example, by making conditional/timed entry calls).
with System;
with GNAT.Bounded_Buffers;
generic
type Message (<>) is limited private;
type Message_Reference is access all Message;
-- Mailboxes hold references to Message values, of this type
package GNAT.Bounded_Mailboxes is
pragma Preelaborate;
package Message_Refs is
new GNAT.Bounded_Buffers (Message_Reference);
type Mailbox is new Message_Refs.Bounded_Buffer;
-- Type Mailbox has two inherited discriminants:
-- Capacity : Positive;
-- Capacity is the maximum number of Message references
-- possibly contained at any given instant.
-- Ceiling : System.Priority;
-- Users must specify the ceiling priority for the object.
-- If the Real-Time Systems Annex is not in use this value
-- is not important.
-- Protected type Mailbox has the following inherited interface:
-- entry Insert (Item : Message_Reference);
-- Insert Item into the Mailbox. Blocks caller
-- until space is available.
-- entry Remove (Item : out Message_Reference);
-- Remove next available Message_Reference from Mailbox.
-- Blocks caller until a Message_Reference is available.
-- function Empty return Boolean;
-- Returns whether the Mailbox contains any Message_References.
-- Note: State may change immediately after call returns.
-- function Full return Boolean;
-- Returns whether any space remains within the Mailbox.
-- Note: State may change immediately after call returns.
-- function Extent return Natural;
-- Returns the number of Message_Reference values currently held
-- within the Mailbox.
-- Note: State may change immediately after call returns.
Default_Ceiling : constant System.Priority := Message_Refs.Default_Ceiling;
-- A convenience value for the Ceiling discriminant
end GNAT.Bounded_Mailboxes;
|
------------------------------------------------------------------------------
-- G E L A A S I S --
-- ASIS implementation for Gela project, a portable Ada compiler --
-- http://gela.ada-ru.org --
-- - - - - - - - - - - - - - - - --
-- Read copyright and license at the end of this file --
------------------------------------------------------------------------------
-- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $
package Positions is
type Position is new Positive;
type Set is private;
function Equal (Left, Right : Set) return Boolean;
procedure Add
(Object : in out Set;
Pos : in Position);
procedure Add
(Object : in out Set;
Pos : in Set);
function Contains
(Object : in Set;
Pos : in Position) return Boolean;
procedure Clear (Object : in out Set);
type Iterator is private;
function Start (Object : in Set) return Iterator;
function Exist (Object : in Iterator) return Boolean;
function Next (Object : in Iterator) return Iterator;
function "+" (Object : in Iterator) return Position;
Empty_Set : constant Set;
private
type Node;
type Set is access all Node;
type Node is record
Data : Position;
Next : Set;
end record;
type Iterator is access all Node;
Empty_Set : constant Set := null;
end Positions;
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- * Neither the name of the Maxim Reznik, IE nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . M E M O R Y --
-- --
-- B o d y --
-- --
-- Copyright (C) 2001-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This is the simplified implementation of this package, for use with a
-- configurable run-time library.
-- This implementation assumes that the underlying malloc/free/realloc
-- implementation is *not* thread safe, and thus, explicit lock is required.
with Ada.Exceptions;
with System.Soft_Links;
package body System.Memory is
use Ada.Exceptions;
use System.Soft_Links;
function c_malloc (Size : size_t) return System.Address;
pragma Import (C, c_malloc, "malloc");
procedure c_free (Ptr : System.Address);
pragma Import (C, c_free, "free");
function c_realloc
(Ptr : System.Address; Size : size_t) return System.Address;
pragma Import (C, c_realloc, "realloc");
-----------
-- Alloc --
-----------
function Alloc (Size : size_t) return System.Address is
Result : System.Address;
Actual_Size : size_t := Size;
begin
if Size = size_t'Last then
Raise_Exception (Storage_Error'Identity, "object too large");
end if;
-- 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, but we can't just go ahead and allocate zero bytes,
-- since some malloc's return zero for a zero argument.
if Size = 0 then
Actual_Size := 1;
end if;
Lock_Task.all;
Result := c_malloc (Actual_Size);
Unlock_Task.all;
if Result = System.Null_Address then
Raise_Exception (Storage_Error'Identity, "heap exhausted");
end if;
return Result;
end Alloc;
----------
-- Free --
----------
procedure Free (Ptr : System.Address) is
begin
Lock_Task.all;
c_free (Ptr);
Unlock_Task.all;
end Free;
-------------
-- Realloc --
-------------
function Realloc
(Ptr : System.Address;
Size : size_t)
return System.Address
is
Result : System.Address;
begin
if Size = size_t'Last then
Raise_Exception (Storage_Error'Identity, "object too large");
end if;
Lock_Task.all;
Result := c_realloc (Ptr, Size);
Unlock_Task.all;
if Result = System.Null_Address then
Raise_Exception (Storage_Error'Identity, "heap exhausted");
end if;
return Result;
end Realloc;
end System.Memory;
|
------------------------------------------------------------------------------
-- --
-- GNAT LIBRARY COMPONENTS --
-- --
-- ADA.CONTAINERS.FUNCTIONAL_MAPS --
-- --
-- S p e c --
-- --
-- Copyright (C) 2016-2020, Free Software Foundation, Inc. --
-- --
-- This specification is derived from the Ada Reference Manual for use with --
-- GNAT. The copyright notice above, and the license provisions that follow --
-- apply solely to the contents of the part following the private keyword. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- As a special exception under Section 7 of GPL version 3, you are granted --
-- additional permissions described in the GCC Runtime Library Exception, --
-- version 3.1, as published by the Free Software Foundation. --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
------------------------------------------------------------------------------
pragma Ada_2012;
private with Ada.Containers.Functional_Base;
generic
type Key_Type (<>) is private;
type Element_Type (<>) is private;
with function Equivalent_Keys
(Left : Key_Type;
Right : Key_Type) return Boolean is "=";
with function "=" (Left, Right : Element_Type) return Boolean is <>;
Enable_Handling_Of_Equivalence : Boolean := True;
-- This constant should only be set to False when no particular handling
-- of equivalence over keys is needed, that is, Equivalent_Keys defines a
-- key uniquely.
package Ada.Containers.Functional_Maps with SPARK_Mode is
type Map is private with
Default_Initial_Condition => Is_Empty (Map) and Length (Map) = 0,
Iterable => (First => Iter_First,
Next => Iter_Next,
Has_Element => Iter_Has_Element,
Element => Iter_Element);
-- Maps are empty when default initialized.
-- "For in" quantification over maps should not be used.
-- "For of" quantification over maps iterates over keys.
-- Note that, for proof, "for of" quantification is understood modulo
-- equivalence (the range of quantification comprises all the keys that are
-- equivalent to any key of the map).
-----------------------
-- Basic operations --
-----------------------
-- Maps are axiomatized using Has_Key and Get, encoding respectively the
-- presence of a key in a map and an accessor to elements associated with
-- its keys. The length of a map is also added to protect Add against
-- overflows but it is not actually modeled.
function Has_Key (Container : Map; Key : Key_Type) return Boolean with
-- Return True if Key is present in Container
Global => null,
Post =>
(if Enable_Handling_Of_Equivalence then
-- Has_Key returns the same result on all equivalent keys
(if (for some K of Container => Equivalent_Keys (K, Key)) then
Has_Key'Result));
function Get (Container : Map; Key : Key_Type) return Element_Type with
-- Return the element associated with Key in Container
Global => null,
Pre => Has_Key (Container, Key),
Post =>
(if Enable_Handling_Of_Equivalence then
-- Get returns the same result on all equivalent keys
Get'Result = W_Get (Container, Witness (Container, Key))
and (for all K of Container =>
(Equivalent_Keys (K, Key) =
(Witness (Container, Key) = Witness (Container, K)))));
function Length (Container : Map) return Count_Type with
Global => null;
-- Return the number of mappings in Container
------------------------
-- Property Functions --
------------------------
function "<=" (Left : Map; Right : Map) return Boolean with
-- Map inclusion
Global => null,
Post =>
"<="'Result =
(for all Key of Left =>
Has_Key (Right, Key) and then Get (Right, Key) = Get (Left, Key));
function "=" (Left : Map; Right : Map) return Boolean with
-- Extensional equality over maps
Global => null,
Post =>
"="'Result =
((for all Key of Left =>
Has_Key (Right, Key)
and then Get (Right, Key) = Get (Left, Key))
and (for all Key of Right => Has_Key (Left, Key)));
pragma Warnings (Off, "unused variable ""Key""");
function Is_Empty (Container : Map) return Boolean with
-- A map is empty if it contains no key
Global => null,
Post => Is_Empty'Result = (for all Key of Container => False);
pragma Warnings (On, "unused variable ""Key""");
function Keys_Included (Left : Map; Right : Map) return Boolean
-- Returns True if every Key of Left is in Right
with
Global => null,
Post =>
Keys_Included'Result = (for all Key of Left => Has_Key (Right, Key));
function Same_Keys (Left : Map; Right : Map) return Boolean
-- Returns True if Left and Right have the same keys
with
Global => null,
Post =>
Same_Keys'Result =
(Keys_Included (Left, Right)
and Keys_Included (Left => Right, Right => Left));
pragma Annotate (GNATprove, Inline_For_Proof, Same_Keys);
function Keys_Included_Except
(Left : Map;
Right : Map;
New_Key : Key_Type) return Boolean
-- Returns True if Left contains only keys of Right and possibly New_Key
with
Global => null,
Post =>
Keys_Included_Except'Result =
(for all Key of Left =>
(if not Equivalent_Keys (Key, New_Key) then
Has_Key (Right, Key)));
function Keys_Included_Except
(Left : Map;
Right : Map;
X : Key_Type;
Y : Key_Type) return Boolean
-- Returns True if Left contains only keys of Right and possibly X and Y
with
Global => null,
Post =>
Keys_Included_Except'Result =
(for all Key of Left =>
(if not Equivalent_Keys (Key, X)
and not Equivalent_Keys (Key, Y)
then
Has_Key (Right, Key)));
function Elements_Equal_Except
(Left : Map;
Right : Map;
New_Key : Key_Type) return Boolean
-- Returns True if all the keys of Left are mapped to the same elements in
-- Left and Right except New_Key.
with
Global => null,
Post =>
Elements_Equal_Except'Result =
(for all Key of Left =>
(if not Equivalent_Keys (Key, New_Key) then
Has_Key (Right, Key)
and then Get (Left, Key) = Get (Right, Key)));
function Elements_Equal_Except
(Left : Map;
Right : Map;
X : Key_Type;
Y : Key_Type) return Boolean
-- Returns True if all the keys of Left are mapped to the same elements in
-- Left and Right except X and Y.
with
Global => null,
Post =>
Elements_Equal_Except'Result =
(for all Key of Left =>
(if not Equivalent_Keys (Key, X)
and not Equivalent_Keys (Key, Y)
then
Has_Key (Right, Key)
and then Get (Left, Key) = Get (Right, Key)));
----------------------------
-- Construction Functions --
----------------------------
-- For better efficiency of both proofs and execution, avoid using
-- construction functions in annotations and rather use property functions.
function Add
(Container : Map;
New_Key : Key_Type;
New_Item : Element_Type) return Map
-- Returns Container augmented with the mapping Key -> New_Item
with
Global => null,
Pre =>
not Has_Key (Container, New_Key)
and Length (Container) < Count_Type'Last,
Post =>
Length (Container) + 1 = Length (Add'Result)
and Has_Key (Add'Result, New_Key)
and Get (Add'Result, New_Key) = New_Item
and Container <= Add'Result
and Keys_Included_Except (Add'Result, Container, New_Key);
function Remove
(Container : Map;
Key : Key_Type) return Map
-- Returns Container without any mapping for Key
with
Global => null,
Pre => Has_Key (Container, Key),
Post =>
Length (Container) = Length (Remove'Result) + 1
and not Has_Key (Remove'Result, Key)
and Remove'Result <= Container
and Keys_Included_Except (Container, Remove'Result, Key);
function Set
(Container : Map;
Key : Key_Type;
New_Item : Element_Type) return Map
-- Returns Container, where the element associated with Key has been
-- replaced by New_Item.
with
Global => null,
Pre => Has_Key (Container, Key),
Post =>
Length (Container) = Length (Set'Result)
and Get (Set'Result, Key) = New_Item
and Same_Keys (Container, Set'Result)
and Elements_Equal_Except (Container, Set'Result, Key);
------------------------------
-- Handling of Equivalence --
------------------------------
-- These functions are used to specify that Get returns the same value on
-- equivalent keys. They should not be used directly in user code.
function Has_Witness (Container : Map; Witness : Count_Type) return Boolean
with
Ghost,
Global => null;
-- Returns True if there is a key with witness Witness in Container
function Witness (Container : Map; Key : Key_Type) return Count_Type with
-- Returns the witness of Key in Container
Ghost,
Global => null,
Pre => Has_Key (Container, Key),
Post => Has_Witness (Container, Witness'Result);
function W_Get (Container : Map; Witness : Count_Type) return Element_Type
with
-- Returns the element associated with a witness in Container
Ghost,
Global => null,
Pre => Has_Witness (Container, Witness);
---------------------------
-- Iteration Primitives --
---------------------------
type Private_Key is private;
function Iter_First (Container : Map) return Private_Key with
Global => null;
function Iter_Has_Element
(Container : Map;
Key : Private_Key) return Boolean
with
Global => null;
function Iter_Next (Container : Map; Key : Private_Key) return Private_Key
with
Global => null,
Pre => Iter_Has_Element (Container, Key);
function Iter_Element (Container : Map; Key : Private_Key) return Key_Type
with
Global => null,
Pre => Iter_Has_Element (Container, Key);
pragma Annotate (GNATprove, Iterable_For_Proof, "Contains", Has_Key);
private
pragma SPARK_Mode (Off);
function "="
(Left : Key_Type;
Right : Key_Type) return Boolean renames Equivalent_Keys;
subtype Positive_Count_Type is Count_Type range 1 .. Count_Type'Last;
package Element_Containers is new Ada.Containers.Functional_Base
(Element_Type => Element_Type,
Index_Type => Positive_Count_Type);
package Key_Containers is new Ada.Containers.Functional_Base
(Element_Type => Key_Type,
Index_Type => Positive_Count_Type);
type Map is record
Keys : Key_Containers.Container;
Elements : Element_Containers.Container;
end record;
type Private_Key is new Count_Type;
function Iter_First (Container : Map) return Private_Key is (1);
function Iter_Has_Element
(Container : Map;
Key : Private_Key) return Boolean
is
(Count_Type (Key) in 1 .. Key_Containers.Length (Container.Keys));
function Iter_Next
(Container : Map;
Key : Private_Key) return Private_Key
is
(if Key = Private_Key'Last then 0 else Key + 1);
function Iter_Element
(Container : Map;
Key : Private_Key) return Key_Type
is
(Key_Containers.Get (Container.Keys, Count_Type (Key)));
end Ada.Containers.Functional_Maps;
|
with Ada.Integer_Text_IO, Ada.Text_IO;
use Ada.Integer_Text_IO, Ada.Text_IO;
with Listas;
with Es_Abundante;
with Crear_Sublista_4Primos;
with Crear_Sublista_Pares;
procedure Probar_Listas is
procedure Crear_Sublista_3Abundantes is new Listas.Crear_Sublista(Cuantos => 3, Filtro => Es_Abundante);
procedure Escribir_Contenido(L: in out Listas.Lista; Lista: String) is
N: Integer;
begin
-- Contenido de L1 con los 10 primeros enteros
Put_Line("El contenido de la Lista "&Lista&" es:");
Put("===> ");
while not Listas.Es_Vacia(L) loop
Listas.Obtener_Primero(L, N);
Put(N,2);
Put(" ");
Listas.Borrar_Primero(L);
end loop;
New_Line; New_Line;
end Escribir_Contenido;
procedure Escribir_Contenidos(L1: in out Listas.Lista; L1s: String; L2: in out Listas.Lista; L2s: String) is
N1, N2: Integer;
begin
Put_Line("===> El contenido de las Listas "&L1s&" y "&L2s&" es:");
while not Listas.Es_Vacia(L1) loop
Listas.Obtener_Primero(L1, N1);
Listas.Obtener_Primero(L2, N2);
Put(N1, 4);
Put(" -- ");
Put(N2, 4);
New_Line;
Listas.Borrar_Primero(L1);
Listas.Borrar_Primero(L2);
end loop;
end Escribir_Contenidos;
L1,
L1p,
L2,
L3,
L4,
L2p,
Lp1,
Lp2,
L3primos,
L4abudantes : Listas.Lista;
N,
N1,
N2 : Integer;
begin
-- Crear lista de enteros L1 con los 10 primeros enteros
Put("===> Creando L1 ...");
Listas.Crear_Vacia(L1);
for I in 1..10 loop
Listas.Colocar(L1, I);
if Listas.Esta(L1, I) then
Put(I, 0);
Put(" ");
else
Put("NO");
Put(I, 0);
Put(" ");
end if;
end loop;
Crear_Sublista_Pares(L1, L1p); -- Los pares de L1
New_Line; New_Line;
-- Crear lista de enteros L2 con los enteros desde el 11 al 23
Put("===> Creando L2 ...");
Listas.Crear_Vacia(L2);
for I in 11..23 loop
Listas.Colocar(L2, I);
if Listas.Esta(L2, I) then
Put(I, 0);
Put(" ");
else
Put("NO");
Put(I, 0);
Put(" ");
end if;
end loop;
Crear_Sublista_Pares(L2, L2p); -- Los pares de L2
New_Line; New_Line;
Put("===> Creando L3 ...");
Listas.Crear_Vacia(L3);
for I in 11..23 loop
Listas.Colocar(L3, I);
if Listas.Esta(L3, I) then
Put(I, 0);
Put(" ");
else
Put("NO");
Put(I, 0);
Put(" ");
end if;
end loop;
Crear_Sublista_4Primos(L3, L3primos); -- Los pares de L2
New_Line; New_Line;
Put("===> Creando L4 ...");
Listas.Crear_Vacia(L4);
for I in 11..23 loop
Listas.Colocar(L4, I);
if Listas.Esta(L4, I) then
Put(I, 0);
Put(" ");
else
Put("NO");
Put(I, 0);
Put(" ");
end if;
end loop;
Crear_Sublista_3Abundantes(L4, L4abudantes); -- Los pares de L2
New_Line; New_Line;
-- Contenido de L1 con los 10 primeros enteros
Put("===> ");
Escribir_Contenido(L1, "L1");
-- Contenido de L2 con los 10 primeros enteros
Put("===> ");
Escribir_Contenido(L2, "L2");
Put("===> ");
Escribir_Contenido(L3, "L3");
Put("===> ");
Escribir_Contenido(L3primos, "L3primos");
Put("===> ");
Escribir_Contenido(L4, "L4");
Put("===> ");
Escribir_Contenido(L4abudantes, "L4abudantes");
-- Crear lista de enteros pares Lp con los 5 primeros pares del 2 al 8
Listas.Crear_Vacia(Lp1);
N:= 2;
while N<=10 loop
Listas.Colocar(Lp1, N);
N:= N+2;
end loop;
-- Trataremos las listas de pares L1p y Lp1
if Listas.Igual(Lp1, L1p) then
Put_Line("La lista Lp1 y la obtenida como sublista de pares L1p son iguales");
Escribir_Contenidos(L1p, "L1p", Lp1, "Lp1");
else
Put_Line("La lista Lp1 y la obtenida como sublista de pares L1p NO son iguales");
-- Contenido de L1p
Put("===> ");
Escribir_Contenido(L1p, "L1p");
end if;
New_Line; New_Line;
-- Trataremos las listas de pares L2p y Lp2
Listas.Copiar(Lp2, L2p);
if Listas.Igual(Lp2, L2p) then
Put_Line("La lista Lp2 y la obtenida como copia L2p son iguales");
Escribir_Contenidos(L2p, "L2p", Lp2, "Lp2");
else
Put_Line("La lista Lp2 y la obtenida como copia L2p NO son iguales");
-- Contenido de L2p
Put("===> ");
Escribir_Contenido(L2p, "L2p");
end if;
end Probar_Listas; |
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . U N B O U N D E D . T E X T _ I O --
-- --
-- B o d y --
-- --
-- Copyright (C) 1997-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 Ada.Text_IO; use Ada.Text_IO;
package body Ada.Strings.Unbounded.Text_IO is
--------------
-- Get_Line --
--------------
function Get_Line return Unbounded_String is
Buffer : String (1 .. 1000);
Last : Natural;
Result : Unbounded_String;
begin
Get_Line (Buffer, Last);
Set_Unbounded_String (Result, Buffer (1 .. Last));
while Last = Buffer'Last loop
Get_Line (Buffer, Last);
Append (Result, Buffer (1 .. Last));
end loop;
return Result;
end Get_Line;
function Get_Line (File : Ada.Text_IO.File_Type) return Unbounded_String is
Buffer : String (1 .. 1000);
Last : Natural;
Result : Unbounded_String;
begin
Get_Line (File, Buffer, Last);
Set_Unbounded_String (Result, Buffer (1 .. Last));
while Last = Buffer'Last loop
Get_Line (File, Buffer, Last);
Append (Result, Buffer (1 .. Last));
end loop;
return Result;
end Get_Line;
procedure Get_Line (Item : out Unbounded_String) is
begin
Get_Line (Current_Input, Item);
end Get_Line;
procedure Get_Line
(File : Ada.Text_IO.File_Type;
Item : out Unbounded_String)
is
Buffer : String (1 .. 1000);
Last : Natural;
begin
Get_Line (File, Buffer, Last);
Set_Unbounded_String (Item, Buffer (1 .. Last));
while Last = Buffer'Last loop
Get_Line (File, Buffer, Last);
Append (Item, Buffer (1 .. Last));
end loop;
end Get_Line;
---------
-- Put --
---------
procedure Put (U : Unbounded_String) is
UR : constant Shared_String_Access := U.Reference;
begin
Put (UR.Data (1 .. UR.Last));
end Put;
procedure Put (File : File_Type; U : Unbounded_String) is
UR : constant Shared_String_Access := U.Reference;
begin
Put (File, UR.Data (1 .. UR.Last));
end Put;
--------------
-- Put_Line --
--------------
procedure Put_Line (U : Unbounded_String) is
UR : constant Shared_String_Access := U.Reference;
begin
Put_Line (UR.Data (1 .. UR.Last));
end Put_Line;
procedure Put_Line (File : File_Type; U : Unbounded_String) is
UR : constant Shared_String_Access := U.Reference;
begin
Put_Line (File, UR.Data (1 .. UR.Last));
end Put_Line;
end Ada.Strings.Unbounded.Text_IO;
|
-----------------------------------------------------------------------
-- ado-datasets-tests -- Test executing queries and using datasets
-- Copyright (C) 2013, 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 Util.Tests;
package ADO.Datasets.Tests is
procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite);
type Test is new Util.Tests.Test with null record;
procedure Test_List (T : in out Test);
procedure Test_Count (T : in out Test);
procedure Test_Count_Query (T : in out Test);
end ADO.Datasets.Tests;
|
with
lace.Event;
package lace.Response
--
-- Provides a base class for all derived event 'response' classes.
--
is
pragma remote_Types;
type Item is abstract tagged limited private;
type View is access all Item'class;
-- Attributes
--
function Name (Self : in Item) return String;
-- Operations
--
procedure respond (Self : in out Item; to_Event : in Event.item'Class)
is abstract;
private
type Item is abstract tagged limited null record;
end lace.Response;
|
-- COMPILEMON.adb
-- Programa per compilar el compilador
with Ada.Text_IO,
Ada.Command_Line,
Decls.D_Taula_De_Noms,
Decls.Dgenerals,
Decls.Dtdesc,
Pk_Usintactica_Tokens,
Pk_Ulexica_Io,
U_Lexica,
Pk_Usintactica,
Decls.D_Atribut,
Semantica,
Decls.Dtnode,
Semantica.Ctipus,
Semantica.Declsc3a,
Semantica.Gci,
Semantica.Assemblador;
use Ada.Text_IO,
Ada.Command_Line,
Decls.D_Taula_De_Noms,
Decls.Dgenerals,
Decls.Dtdesc,
Pk_Usintactica_Tokens,
Pk_Ulexica_Io,
U_Lexica,
Pk_Usintactica,
Decls.D_Atribut,
Semantica,
Decls.Dtnode,
Semantica.Ctipus,
Semantica.Declsc3a,
Semantica.Gci,
Semantica.Assemblador;
procedure Compilemon is
begin
Open_Input(Argument(1));
Inicia_analisi(Argument(1));
yyparse;
--Comprovacio de tipus
Ct_Programa(Arbre);
if not esem then
-- Generacio de codi intermedi
Inicia_Generacio(Argument(1));
Gci_Programa(Arbre);
-- Generacio de codi assemblador
Genera_Assemblador(Argument(1));
end if;
Close_Input;
exception
when Syntax_Error =>
Put_Line("ERROR CompiLEMON: Error a la linea "
&yy_line_number'img&
" i columna "&yy_begin_column'img);
end compilemon;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Localization, Internationalization, Globalization for Ada --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2009-2017, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with Matreshka.Internals.Strings.Configuration;
with Matreshka.Internals.Strings.Operations;
with Matreshka.Internals.Unicode.Ucd.Properties;
with Matreshka.Internals.Utf16;
package body Matreshka.Internals.Unicode.Casing is
use Matreshka.Internals.Strings;
use Matreshka.Internals.Strings.Configuration;
use Matreshka.Internals.Strings.Operations;
use Matreshka.Internals.Unicode.Ucd;
use Matreshka.Internals.Unicode.Ucd.Properties;
use Matreshka.Internals.Utf16;
------------------
-- Convert_Case --
------------------
procedure Convert_Case
(Locale : not null Matreshka.Internals.Locales.Locale_Data_Access;
Source : not null Matreshka.Internals.Strings.Shared_String_Access;
Kind : Matreshka.Internals.Unicode.Ucd.Case_Mapping_Kinds;
Property : Matreshka.Internals.Unicode.Ucd.Boolean_Properties;
Destination : in out Matreshka.Internals.Strings.Shared_String_Access)
is
Source_Current : Utf16_String_Index := 0;
Source_Code : Code_Point;
Converted : Boolean;
function Is_Preceded_By_Final_Sigma_Context return Boolean;
function Is_Followed_By_Final_Sigma_Context return Boolean;
function Is_Preceded_By_After_Soft_Dotted_Context return Boolean;
function Is_Followed_By_More_Above_Context return Boolean;
function Is_Followed_By_Before_Dot_Context return Boolean;
function Is_Preceded_By_After_I_Context return Boolean;
---------------------------------------
-- Is_Followed_By_Before_Dot_Context --
---------------------------------------
function Is_Followed_By_Before_Dot_Context return Boolean is
Current : Utf16_String_Index := Source_Current;
Code : Code_Point;
begin
while Current < Source.Unused loop
Unchecked_Next (Source.Value, Current, Code);
declare
CCC : constant Canonical_Combining_Class := Get_CCC (Code);
begin
if CCC = 0 or else CCC = 230 then
return False;
elsif Code = 16#0307# then
return True;
end if;
end;
end loop;
return False;
end Is_Followed_By_Before_Dot_Context;
----------------------------------------
-- Is_Followed_By_Final_Sigma_Context --
----------------------------------------
function Is_Followed_By_Final_Sigma_Context return Boolean is
Current : Utf16_String_Index := Source_Current;
Code : Code_Point;
begin
while Current < Source.Unused loop
Unchecked_Next (Source.Value, Current, Code);
declare
R : constant Core_Values := Locale.Get_Core (Code);
begin
if not R.B (Case_Ignorable) then
return not R.B (Cased);
end if;
end;
end loop;
return True;
end Is_Followed_By_Final_Sigma_Context;
---------------------------------------
-- Is_Followed_By_More_Above_Context --
---------------------------------------
function Is_Followed_By_More_Above_Context return Boolean is
Current : Utf16_String_Index := Source_Current;
Code : Code_Point;
begin
while Current < Source.Unused loop
Unchecked_Next (Source.Value, Current, Code);
declare
CCC : constant Canonical_Combining_Class := Get_CCC (Code);
begin
if CCC = 0 then
return False;
elsif CCC = 230 then
return True;
end if;
end;
end loop;
return False;
end Is_Followed_By_More_Above_Context;
------------------------------------
-- Is_Preceded_By_After_I_Context --
------------------------------------
function Is_Preceded_By_After_I_Context return Boolean is
Current : Utf16_String_Index := Source_Current;
Code : Code_Point;
begin
Unchecked_Previous (Source.Value, Current, Code);
while Current /= 0 loop
Unchecked_Previous (Source.Value, Current, Code);
declare
CCC : constant Canonical_Combining_Class := Get_CCC (Code);
begin
if CCC = 0 or else CCC = 230 then
return False;
elsif Code = Wide_Wide_Character'Pos ('I') then
return True;
end if;
end;
end loop;
return False;
end Is_Preceded_By_After_I_Context;
----------------------------------------------
-- Is_Preceded_By_After_Soft_Dotted_Context --
----------------------------------------------
function Is_Preceded_By_After_Soft_Dotted_Context return Boolean is
Current : Utf16_String_Index := Source_Current;
Code : Code_Point;
begin
Unchecked_Previous (Source.Value, Current, Code);
while Current /= 0 loop
Unchecked_Previous (Source.Value, Current, Code);
declare
CCC : constant Canonical_Combining_Class := Get_CCC (Code);
R : constant Core_Values := Locale.Get_Core (Code);
begin
if CCC = 0 or else CCC = 230 then
return False;
elsif R.B (Soft_Dotted) then
return True;
end if;
end;
end loop;
return False;
end Is_Preceded_By_After_Soft_Dotted_Context;
----------------------------------------
-- Is_Preceded_By_Final_Sigma_Context --
----------------------------------------
function Is_Preceded_By_Final_Sigma_Context return Boolean is
Current : Utf16_String_Index := Source_Current;
Code : Code_Point;
begin
Unchecked_Previous (Source.Value, Current, Code);
while Current /= 0 loop
Unchecked_Previous (Source.Value, Current, Code);
declare
R : constant Core_Values := Locale.Get_Core (Code);
begin
if not R.B (Case_Ignorable) then
return R.B (Cased);
end if;
end;
end loop;
return False;
end Is_Preceded_By_Final_Sigma_Context;
begin
Destination.Unused := 0;
Destination.Length := 0;
while Source_Current < Source.Unused loop
Unchecked_Next (Source.Value, Source_Current, Source_Code);
if Locale.Get_Core (Source_Code).B (Property) then
declare
Mapping : constant Case_Mapping
:= Locale.Casing.Mapping
(First_Stage_Index (Source_Code / 16#100#))
(Second_Stage_Index (Source_Code mod 16#100#));
begin
Converted := False;
if Kind /= Folding
-- Ignore casing context mappings in the case folding mode.
and then Mapping.Context_First /= 0
then
-- Character is casing context sensitive.
for J in Mapping.Context_First .. Mapping.Context_Last loop
declare
Context : constant Casing_Context_Mapping
:= Locale.Casing.Context (J);
begin
if Context.Ranges (Kind).First /= 0 then
case Context.Context is
when Final_Sigma =>
if (Is_Preceded_By_Final_Sigma_Context
and then
Is_Followed_By_Final_Sigma_Context)
xor Context.Negative
then
for J in Context.Ranges (Kind).First
.. Context.Ranges (Kind).Last
loop
Append
(Destination,
Locale.Casing.Expansion (J));
end loop;
Converted := True;
exit;
end if;
when After_Soft_Dotted =>
if Is_Preceded_By_After_Soft_Dotted_Context
xor Context.Negative
then
null;
end if;
when More_Above =>
if Is_Followed_By_More_Above_Context
xor Context.Negative
then
null;
end if;
when Before_Dot =>
if Is_Followed_By_Before_Dot_Context
xor Context.Negative
then
null;
end if;
when After_I =>
if Is_Preceded_By_After_I_Context
xor Context.Negative
then
null;
end if;
end case;
end if;
end;
end loop;
end if;
if not Converted then
for J in Mapping.Ranges (Kind).First
.. Mapping.Ranges (Kind).Last
loop
Append (Destination, Locale.Casing.Expansion (J));
end loop;
end if;
end;
else
Append (Destination, Source_Code);
end if;
end loop;
String_Handler.Fill_Null_Terminator (Destination);
end Convert_Case;
-------------------------
-- Simple_Convert_Case --
-------------------------
procedure Simple_Convert_Case
(Locale : not null Matreshka.Internals.Locales.Locale_Data_Access;
Source : not null Matreshka.Internals.Strings.Shared_String_Access;
Kind : Matreshka.Internals.Unicode.Ucd.Case_Mapping_Kinds;
Property : Matreshka.Internals.Unicode.Ucd.Boolean_Properties;
Destination : in out Matreshka.Internals.Strings.Shared_String_Access)
is
Source_Current : Utf16_String_Index := 0;
Source_Code : Code_Point;
begin
Destination.Unused := 0;
Destination.Length := 0;
while Source_Current < Source.Unused loop
Unchecked_Next (Source.Value, Source_Current, Source_Code);
if Locale.Get_Core (Source_Code).B (Property) then
declare
Mapping : constant Case_Mapping
:= Locale.Casing.Mapping
(First_Stage_Index (Source_Code / 16#100#))
(Second_Stage_Index (Source_Code mod 16#100#));
begin
if Mapping.Simple (Kind) /= 0 then
Append (Destination, Mapping.Simple (Kind));
else
Append (Destination, Source_Code);
end if;
end;
else
Append (Destination, Source_Code);
end if;
end loop;
String_Handler.Fill_Null_Terminator (Destination);
end Simple_Convert_Case;
end Matreshka.Internals.Unicode.Casing;
|
with p4;
with Assume_Call;
procedure Main with SPARK_Mode is
begin
--Assume_Call.Caller;
p4.foo;
end Main;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . S T R I N G S . W I D E _ W I D E _ S E A R C H --
-- --
-- S p e c --
-- --
-- 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. --
-- --
-- --
-- --
-- --
-- --
-- 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 search functions from Ada.Strings.Wide_Wide_Fixed.
-- They are separated because Ada.Strings.Wide_Wide_Bounded shares these
-- search functions with Ada.Strings.Wide_Wide_Unbounded, and we don't want
-- to drag other irrelevant stuff from Ada.Strings.Wide_Wide_Fixed when using
-- the other two packages. We make this a private package, since user
-- programs should access these subprograms via one of the standard string
-- packages.
with Ada.Strings.Wide_Wide_Maps;
private package Ada.Strings.Wide_Wide_Search is
pragma Preelaborate;
function Index
(Source : Wide_Wide_String;
Pattern : Wide_Wide_String;
Going : Direction := Forward;
Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping :=
Wide_Wide_Maps.Identity) return Natural;
function Index
(Source : Wide_Wide_String;
Pattern : Wide_Wide_String;
Going : Direction := Forward;
Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
return Natural;
function Index
(Source : Wide_Wide_String;
Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Index
(Source : Wide_Wide_String;
Pattern : Wide_Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping :=
Wide_Wide_Maps.Identity)
return Natural;
function Index
(Source : Wide_Wide_String;
Pattern : Wide_Wide_String;
From : Positive;
Going : Direction := Forward;
Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
return Natural;
function Index
(Source : Wide_Wide_String;
Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural;
function Index_Non_Blank
(Source : Wide_Wide_String;
Going : Direction := Forward) return Natural;
function Index_Non_Blank
(Source : Wide_Wide_String;
From : Positive;
Going : Direction := Forward) return Natural;
function Count
(Source : Wide_Wide_String;
Pattern : Wide_Wide_String;
Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping :=
Wide_Wide_Maps.Identity)
return Natural;
function Count
(Source : Wide_Wide_String;
Pattern : Wide_Wide_String;
Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function)
return Natural;
function Count
(Source : Wide_Wide_String;
Set : Wide_Wide_Maps.Wide_Wide_Character_Set) return Natural;
procedure Find_Token
(Source : Wide_Wide_String;
Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
From : Positive;
Test : Membership;
First : out Positive;
Last : out Natural);
procedure Find_Token
(Source : Wide_Wide_String;
Set : Wide_Wide_Maps.Wide_Wide_Character_Set;
Test : Membership;
First : out Positive;
Last : out Natural);
end Ada.Strings.Wide_Wide_Search;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- 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$
------------------------------------------------------------------------------
with Ada.Strings.Wide_Wide_Fixed;
with AMF.Holders.Unlimited_Naturals;
separate (AMF.Internals.Factories.CMOF_Factories)
function Convert_Unlimited_Natural_To_String
(Value : League.Holders.Holder) return League.Strings.Universal_String is
begin
if AMF.Holders.Unlimited_Naturals.Element (Value).Unlimited then
return League.Strings.To_Universal_String ("*");
else
return
League.Strings.To_Universal_String
(Ada.Strings.Wide_Wide_Fixed.Trim
(Natural'Wide_Wide_Image
(AMF.Holders.Unlimited_Naturals.Element (Value).Value),
Ada.Strings.Both));
end if;
end Convert_Unlimited_Natural_To_String;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S C N G --
-- --
-- B o d y --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with Csets; use Csets;
with Err_Vars; use Err_Vars;
with Hostparm; use Hostparm;
with Namet; use Namet;
with Opt; use Opt;
with Scans; use Scans;
with Sinput; use Sinput;
with Snames; use Snames;
with Stringt; use Stringt;
with Stylesw; use Stylesw;
with Uintp; use Uintp;
with Urealp; use Urealp;
with Widechar; use Widechar;
with System.CRC32;
with System.WCh_Con; use System.WCh_Con;
with GNAT.UTF_32; use GNAT.UTF_32;
package body Scng is
use ASCII;
-- Make control characters visible
Special_Characters : array (Character) of Boolean := (others => False);
-- For characters that are Special token, the value is True
Comment_Is_Token : Boolean := False;
-- True if comments are tokens
End_Of_Line_Is_Token : Boolean := False;
-- True if End_Of_Line is a token
-----------------------
-- Local Subprograms --
-----------------------
procedure Accumulate_Token_Checksum;
pragma Inline (Accumulate_Token_Checksum);
procedure Accumulate_Checksum (C : Character);
pragma Inline (Accumulate_Checksum);
-- This routine accumulates the checksum given character C. During the
-- scanning of a source file, this routine is called with every character
-- in the source, excluding blanks, and all control characters (except
-- that ESC is included in the checksum). Upper case letters not in string
-- literals are folded by the caller. See Sinput spec for the documentation
-- of the checksum algorithm. Note: checksum values are only used if we
-- generate code, so it is not necessary to worry about making the right
-- sequence of calls in any error situation.
procedure Accumulate_Checksum (C : Char_Code);
pragma Inline (Accumulate_Checksum);
-- This version is identical, except that the argument, C, is a character
-- code value instead of a character. This is used when wide characters
-- are scanned. We use the character code rather than the ASCII characters
-- so that the checksum is independent of wide character encoding method.
procedure Initialize_Checksum;
pragma Inline (Initialize_Checksum);
-- Initialize checksum value
-------------------------
-- Accumulate_Checksum --
-------------------------
procedure Accumulate_Checksum (C : Character) is
begin
System.CRC32.Update (System.CRC32.CRC32 (Checksum), C);
end Accumulate_Checksum;
procedure Accumulate_Checksum (C : Char_Code) is
begin
if C > 16#FFFF# then
Accumulate_Checksum (Character'Val (C / 2 ** 24));
Accumulate_Checksum (Character'Val ((C / 2 ** 16) mod 256));
Accumulate_Checksum (Character'Val ((C / 256) mod 256));
else
Accumulate_Checksum (Character'Val (C / 256));
end if;
Accumulate_Checksum (Character'Val (C mod 256));
end Accumulate_Checksum;
-------------------------------
-- Accumulate_Token_Checksum --
-------------------------------
procedure Accumulate_Token_Checksum is
begin
System.CRC32.Update
(System.CRC32.CRC32 (Checksum),
Character'Val (Token_Type'Pos (Token)));
end Accumulate_Token_Checksum;
----------------------------
-- Determine_Token_Casing --
----------------------------
function Determine_Token_Casing return Casing_Type is
begin
return Determine_Casing (Source (Token_Ptr .. Scan_Ptr - 1));
end Determine_Token_Casing;
-------------------------
-- Initialize_Checksum --
-------------------------
procedure Initialize_Checksum is
begin
System.CRC32.Initialize (System.CRC32.CRC32 (Checksum));
end Initialize_Checksum;
------------------------
-- Initialize_Scanner --
------------------------
procedure Initialize_Scanner (Index : Source_File_Index) is
begin
-- Establish reserved words
Scans.Initialize_Ada_Keywords;
-- Initialize scan control variables
Current_Source_File := Index;
Source := Source_Text (Current_Source_File);
Scan_Ptr := Source_First (Current_Source_File);
Token := No_Token;
Token_Ptr := Scan_Ptr;
Current_Line_Start := Scan_Ptr;
Token_Node := Empty;
Token_Name := No_Name;
Start_Column := Set_Start_Column;
First_Non_Blank_Location := Scan_Ptr;
Initialize_Checksum;
Wide_Char_Byte_Count := 0;
-- Do not call Scan, otherwise the License stuff does not work in Scn
end Initialize_Scanner;
------------------------------
-- Reset_Special_Characters --
------------------------------
procedure Reset_Special_Characters is
begin
Special_Characters := (others => False);
end Reset_Special_Characters;
----------
-- Scan --
----------
procedure Scan is
Start_Of_Comment : Source_Ptr;
-- Record start of comment position
Underline_Found : Boolean;
-- During scanning of an identifier, set to True if last character
-- scanned was an underline or other punctuation character. This
-- is used to flag the error of two underlines/punctuations in a
-- row or ending an identifier with a underline/punctuation. Here
-- punctuation means any UTF_32 character in the Unicode category
-- Punctuation,Connector.
Wptr : Source_Ptr;
-- Used to remember start of last wide character scanned
procedure Check_End_Of_Line;
-- Called when end of line encountered. Checks that line is not too
-- long, and that other style checks for the end of line are met.
function Double_Char_Token (C : Character) return Boolean;
-- This function is used for double character tokens like := or <>. It
-- checks if the character following Source (Scan_Ptr) is C, and if so
-- bumps Scan_Ptr past the pair of characters and returns True. A space
-- between the two characters is also recognized with an appropriate
-- error message being issued. If C is not present, False is returned.
-- Note that Double_Char_Token can only be used for tokens defined in
-- the Ada syntax (it's use for error cases like && is not appropriate
-- since we do not want a junk message for a case like &-space-&).
procedure Error_Illegal_Character;
-- Give illegal character error, Scan_Ptr points to character. On
-- return, Scan_Ptr is bumped past the illegal character.
procedure Error_Illegal_Wide_Character;
-- Give illegal wide character message. On return, Scan_Ptr is bumped
-- past the illegal character, which may still leave us pointing to
-- junk, not much we can do if the escape sequence is messed up!
procedure Error_Long_Line;
-- Signal error of excessively long line
procedure Error_No_Double_Underline;
-- Signal error of two underline or punctuation characters in a row.
-- Called with Scan_Ptr pointing to second underline/punctuation char.
procedure Nlit;
-- This is the procedure for scanning out numeric literals. On entry,
-- Scan_Ptr points to the digit that starts the numeric literal (the
-- checksum for this character has not been accumulated yet). On return
-- Scan_Ptr points past the last character of the numeric literal, Token
-- and Token_Node are set appropriately, and the checksum is updated.
procedure Slit;
-- This is the procedure for scanning out string literals. On entry,
-- Scan_Ptr points to the opening string quote (the checksum for this
-- character has not been accumulated yet). On return Scan_Ptr points
-- past the closing quote of the string literal, Token and Token_Node
-- are set appropriately, and the checksum is upated.
-----------------------
-- Check_End_Of_Line --
-----------------------
procedure Check_End_Of_Line is
Len : constant Int :=
Int (Scan_Ptr) -
Int (Current_Line_Start) -
Wide_Char_Byte_Count;
begin
if Style_Check then
Style.Check_Line_Terminator (Len);
end if;
-- Deal with checking maximum line length
if Style_Check and Style_Check_Max_Line_Length then
Style.Check_Line_Max_Length (Len);
-- If style checking is inactive, check maximum line length against
-- standard value.
elsif Len > Max_Line_Length then
Error_Long_Line;
end if;
-- Reset wide character byte count for next line
Wide_Char_Byte_Count := 0;
end Check_End_Of_Line;
-----------------------
-- Double_Char_Token --
-----------------------
function Double_Char_Token (C : Character) return Boolean is
begin
if Source (Scan_Ptr + 1) = C then
Accumulate_Checksum (C);
Scan_Ptr := Scan_Ptr + 2;
return True;
elsif Source (Scan_Ptr + 1) = ' '
and then Source (Scan_Ptr + 2) = C
then
Scan_Ptr := Scan_Ptr + 1;
Error_Msg_S ("no space allowed here");
Scan_Ptr := Scan_Ptr + 2;
return True;
else
return False;
end if;
end Double_Char_Token;
-----------------------------
-- Error_Illegal_Character --
-----------------------------
procedure Error_Illegal_Character is
begin
Error_Msg_S ("illegal character");
Scan_Ptr := Scan_Ptr + 1;
end Error_Illegal_Character;
----------------------------------
-- Error_Illegal_Wide_Character --
----------------------------------
procedure Error_Illegal_Wide_Character is
begin
Error_Msg ("illegal wide character", Wptr);
end Error_Illegal_Wide_Character;
---------------------
-- Error_Long_Line --
---------------------
procedure Error_Long_Line is
begin
Error_Msg
("this line is too long",
Current_Line_Start + Source_Ptr (Max_Line_Length));
end Error_Long_Line;
-------------------------------
-- Error_No_Double_Underline --
-------------------------------
procedure Error_No_Double_Underline is
begin
Underline_Found := False;
-- There are four cases, and we special case the messages
if Source (Scan_Ptr) = '_' then
if Source (Scan_Ptr - 1) = '_' then
Error_Msg_S
("two consecutive underlines not permitted");
else
Error_Msg_S
("underline cannot follow punctuation character");
end if;
else
if Source (Scan_Ptr - 1) = '_' then
Error_Msg_S
("punctuation character cannot follow underline");
else
Error_Msg_S
("two consecutive punctuation characters not permitted");
end if;
end if;
end Error_No_Double_Underline;
----------
-- Nlit --
----------
procedure Nlit is
C : Character;
-- Current source program character
Base_Char : Character;
-- Either # or : (character at start of based number)
Base : Int;
-- Value of base
UI_Base : Uint;
-- Value of base in Uint format
UI_Int_Value : Uint;
-- Value of integer scanned by Scan_Integer in Uint format
UI_Num_Value : Uint;
-- Value of integer in numeric value being scanned
Scale : Int;
-- Scale value for real literal
UI_Scale : Uint;
-- Scale in Uint format
Exponent_Is_Negative : Boolean;
-- Set true for negative exponent
Extended_Digit_Value : Int;
-- Extended digit value
Point_Scanned : Boolean;
-- Flag for decimal point scanned in numeric literal
-----------------------
-- Local Subprograms --
-----------------------
procedure Error_Digit_Expected;
-- Signal error of bad digit, Scan_Ptr points to the location at
-- which the digit was expected on input, and is unchanged on return.
procedure Scan_Integer;
-- Procedure to scan integer literal. On entry, Scan_Ptr points to a
-- digit, on exit Scan_Ptr points past the last character of the
-- integer.
--
-- For each digit encountered, UI_Int_Value is multiplied by 10, and
-- the value of the digit added to the result. In addition, the
-- value in Scale is decremented by one for each actual digit
-- scanned.
--------------------------
-- Error_Digit_Expected --
--------------------------
procedure Error_Digit_Expected is
begin
Error_Msg_S ("digit expected");
end Error_Digit_Expected;
------------------
-- Scan_Integer --
------------------
procedure Scan_Integer is
C : Character;
-- Next character scanned
begin
C := Source (Scan_Ptr);
-- Loop through digits (allowing underlines)
loop
Accumulate_Checksum (C);
UI_Int_Value :=
UI_Int_Value * 10 + (Character'Pos (C) - Character'Pos ('0'));
Scan_Ptr := Scan_Ptr + 1;
Scale := Scale - 1;
C := Source (Scan_Ptr);
-- Case of underline encountered
if C = '_' then
-- We do not accumulate the '_' in the checksum, so that
-- 1_234 is equivalent to 1234, and does not trigger
-- compilation for "minimal recompilation" (gnatmake -m).
loop
Scan_Ptr := Scan_Ptr + 1;
C := Source (Scan_Ptr);
exit when C /= '_';
Error_No_Double_Underline;
end loop;
if C not in '0' .. '9' then
Error_Digit_Expected;
exit;
end if;
else
exit when C not in '0' .. '9';
end if;
end loop;
end Scan_Integer;
-- Start of Processing for Nlit
begin
Base := 10;
UI_Base := Uint_10;
UI_Int_Value := Uint_0;
Scale := 0;
Scan_Integer;
-- LLVM local deleted one line
Point_Scanned := False;
UI_Num_Value := UI_Int_Value;
-- Various possibilities now for continuing the literal are period,
-- E/e (for exponent), or :/# (for based literal).
Scale := 0;
C := Source (Scan_Ptr);
if C = '.' then
-- Scan out point, but do not scan past .. which is a range
-- sequence, and must not be eaten up scanning a numeric literal.
while C = '.' and then Source (Scan_Ptr + 1) /= '.' loop
Accumulate_Checksum ('.');
if Point_Scanned then
Error_Msg_S ("duplicate point ignored");
end if;
Point_Scanned := True;
Scan_Ptr := Scan_Ptr + 1;
C := Source (Scan_Ptr);
if C not in '0' .. '9' then
Error_Msg
("real literal cannot end with point", Scan_Ptr - 1);
else
Scan_Integer;
UI_Num_Value := UI_Int_Value;
end if;
end loop;
-- Based literal case. The base is the value we already scanned.
-- In the case of colon, we insist that the following character
-- is indeed an extended digit or a period. This catches a number
-- of common errors, as well as catching the well known tricky
-- bug otherwise arising from "x : integer range 1 .. 10:= 6;"
elsif C = '#'
or else (C = ':' and then
(Source (Scan_Ptr + 1) = '.'
or else
Source (Scan_Ptr + 1) in '0' .. '9'
or else
Source (Scan_Ptr + 1) in 'A' .. 'Z'
or else
Source (Scan_Ptr + 1) in 'a' .. 'z'))
then
if C = ':' then
Obsolescent_Check (Scan_Ptr);
if Warn_On_Obsolescent_Feature then
Error_Msg_S
("use of "":"" is an obsolescent feature ('R'M 'J.2(3))?");
Error_Msg_S
("\use ""'#"" instead?");
end if;
end if;
Accumulate_Checksum (C);
Base_Char := C;
UI_Base := UI_Int_Value;
if UI_Base < 2 or else UI_Base > 16 then
Error_Msg_SC ("base not 2-16");
UI_Base := Uint_16;
end if;
Base := UI_To_Int (UI_Base);
Scan_Ptr := Scan_Ptr + 1;
-- Scan out extended integer [. integer]
C := Source (Scan_Ptr);
UI_Int_Value := Uint_0;
Scale := 0;
loop
if C in '0' .. '9' then
Accumulate_Checksum (C);
Extended_Digit_Value :=
Int'(Character'Pos (C)) - Int'(Character'Pos ('0'));
elsif C in 'A' .. 'F' then
Accumulate_Checksum (Character'Val (Character'Pos (C) + 32));
Extended_Digit_Value :=
Int'(Character'Pos (C)) - Int'(Character'Pos ('A')) + 10;
elsif C in 'a' .. 'f' then
Accumulate_Checksum (C);
Extended_Digit_Value :=
Int'(Character'Pos (C)) - Int'(Character'Pos ('a')) + 10;
else
Error_Msg_S ("extended digit expected");
exit;
end if;
if Extended_Digit_Value >= Base then
Error_Msg_S ("digit '>= base");
end if;
UI_Int_Value := UI_Int_Value * UI_Base + Extended_Digit_Value;
Scale := Scale - 1;
Scan_Ptr := Scan_Ptr + 1;
C := Source (Scan_Ptr);
if C = '_' then
loop
Accumulate_Checksum ('_');
Scan_Ptr := Scan_Ptr + 1;
C := Source (Scan_Ptr);
exit when C /= '_';
Error_No_Double_Underline;
end loop;
elsif C = '.' then
Accumulate_Checksum ('.');
if Point_Scanned then
Error_Msg_S ("duplicate point ignored");
end if;
Scan_Ptr := Scan_Ptr + 1;
C := Source (Scan_Ptr);
Point_Scanned := True;
Scale := 0;
elsif C = Base_Char then
Accumulate_Checksum (C);
Scan_Ptr := Scan_Ptr + 1;
exit;
elsif C = '#' or else C = ':' then
Error_Msg_S ("based number delimiters must match");
Scan_Ptr := Scan_Ptr + 1;
exit;
elsif not Identifier_Char (C) then
if Base_Char = '#' then
Error_Msg_S ("missing '#");
else
Error_Msg_S ("missing ':");
end if;
exit;
end if;
end loop;
UI_Num_Value := UI_Int_Value;
end if;
-- Scan out exponent
if not Point_Scanned then
Scale := 0;
UI_Scale := Uint_0;
else
UI_Scale := UI_From_Int (Scale);
end if;
if Source (Scan_Ptr) = 'e' or else Source (Scan_Ptr) = 'E' then
Accumulate_Checksum ('e');
Scan_Ptr := Scan_Ptr + 1;
Exponent_Is_Negative := False;
if Source (Scan_Ptr) = '+' then
Accumulate_Checksum ('+');
Scan_Ptr := Scan_Ptr + 1;
elsif Source (Scan_Ptr) = '-' then
Accumulate_Checksum ('-');
if not Point_Scanned then
Error_Msg_S
("negative exponent not allowed for integer literal");
else
Exponent_Is_Negative := True;
end if;
Scan_Ptr := Scan_Ptr + 1;
end if;
UI_Int_Value := Uint_0;
if Source (Scan_Ptr) in '0' .. '9' then
Scan_Integer;
else
Error_Digit_Expected;
end if;
if Exponent_Is_Negative then
UI_Scale := UI_Scale - UI_Int_Value;
else
UI_Scale := UI_Scale + UI_Int_Value;
end if;
end if;
-- Case of real literal to be returned
if Point_Scanned then
Token := Tok_Real_Literal;
Real_Literal_Value :=
UR_From_Components (
Num => UI_Num_Value,
Den => -UI_Scale,
Rbase => Base);
-- Case of integer literal to be returned
else
Token := Tok_Integer_Literal;
if UI_Scale = 0 then
Int_Literal_Value := UI_Num_Value;
-- Avoid doing possibly expensive calculations in cases like
-- parsing 163E800_000# when semantics will not be done anyway.
-- This is especially useful when parsing garbled input.
elsif Operating_Mode /= Check_Syntax
and then (Serious_Errors_Detected = 0 or else Try_Semantics)
then
Int_Literal_Value := UI_Num_Value * UI_Base ** UI_Scale;
else
Int_Literal_Value := No_Uint;
end if;
end if;
Accumulate_Token_Checksum;
return;
end Nlit;
----------
-- Slit --
----------
procedure Slit is
Delimiter : Character;
-- Delimiter (first character of string)
C : Character;
-- Current source program character
Code : Char_Code;
-- Current character code value
Err : Boolean;
-- Error flag for Scan_Wide call
procedure Error_Bad_String_Char;
-- Signal bad character in string/character literal. On entry
-- Scan_Ptr points to the improper character encountered during the
-- scan. Scan_Ptr is not modified, so it still points to the bad
-- character on return.
procedure Error_Unterminated_String;
-- Procedure called if a line terminator character is encountered
-- during scanning a string, meaning that the string is not properly
-- terminated.
procedure Set_String;
-- Procedure used to distinguish between string and operator symbol.
-- On entry the string has been scanned out, and its characters
-- start at Token_Ptr and end one character before Scan_Ptr. On exit
-- Token is set to Tok_String_Literal or Tok_Operator_Symbol as
-- appropriate, and Token_Node is appropriately initialized. In
-- addition, in the operator symbol case, Token_Name is
-- appropriately set.
---------------------------
-- Error_Bad_String_Char --
---------------------------
procedure Error_Bad_String_Char is
C : constant Character := Source (Scan_Ptr);
begin
if C = HT then
Error_Msg_S ("horizontal tab not allowed in string");
elsif C = VT or else C = FF then
Error_Msg_S ("format effector not allowed in string");
elsif C in Upper_Half_Character then
Error_Msg_S ("(Ada 83) upper half character not allowed");
else
Error_Msg_S ("control character not allowed in string");
end if;
end Error_Bad_String_Char;
-------------------------------
-- Error_Unterminated_String --
-------------------------------
procedure Error_Unterminated_String is
begin
-- An interesting little refinement. Consider the following
-- examples:
-- A := "this is an unterminated string;
-- A := "this is an unterminated string &
-- P(A, "this is a parameter that didn't get terminated);
-- We fiddle a little to do slightly better placement in these
-- cases also if there is white space at the end of the line we
-- place the flag at the start of this white space, not at the
-- end. Note that we only have to test for blanks, since tabs
-- aren't allowed in strings in the first place and would have
-- caused an error message.
-- Two more cases that we treat specially are:
-- A := "this string uses the wrong terminator'
-- A := "this string uses the wrong terminator' &
-- In these cases we give a different error message as well
-- We actually reposition the scan pointer to the point where we
-- place the flag in these cases, since it seems a better bet on
-- the original intention.
while Source (Scan_Ptr - 1) = ' '
or else Source (Scan_Ptr - 1) = '&'
loop
Scan_Ptr := Scan_Ptr - 1;
Unstore_String_Char;
end loop;
-- Check for case of incorrect string terminator, but single quote
-- is not considered incorrect if the opening terminator misused
-- a single quote (error message already given).
if Delimiter /= '''
and then Source (Scan_Ptr - 1) = '''
then
Unstore_String_Char;
Error_Msg
("incorrect string terminator character", Scan_Ptr - 1);
return;
end if;
if Source (Scan_Ptr - 1) = ';' then
Scan_Ptr := Scan_Ptr - 1;
Unstore_String_Char;
if Source (Scan_Ptr - 1) = ')' then
Scan_Ptr := Scan_Ptr - 1;
Unstore_String_Char;
end if;
end if;
Error_Msg_S ("missing string quote");
end Error_Unterminated_String;
----------------
-- Set_String --
----------------
procedure Set_String is
Slen : constant Int := Int (Scan_Ptr - Token_Ptr - 2);
C1 : Character;
C2 : Character;
C3 : Character;
begin
-- Token_Name is currently set to Error_Name. The following
-- section of code resets Token_Name to the proper Name_Op_xx
-- value if the string is a valid operator symbol, otherwise it is
-- left set to Error_Name.
if Slen = 1 then
C1 := Source (Token_Ptr + 1);
case C1 is
when '=' =>
Token_Name := Name_Op_Eq;
when '>' =>
Token_Name := Name_Op_Gt;
when '<' =>
Token_Name := Name_Op_Lt;
when '+' =>
Token_Name := Name_Op_Add;
when '-' =>
Token_Name := Name_Op_Subtract;
when '&' =>
Token_Name := Name_Op_Concat;
when '*' =>
Token_Name := Name_Op_Multiply;
when '/' =>
Token_Name := Name_Op_Divide;
when others =>
null;
end case;
elsif Slen = 2 then
C1 := Source (Token_Ptr + 1);
C2 := Source (Token_Ptr + 2);
if C1 = '*' and then C2 = '*' then
Token_Name := Name_Op_Expon;
elsif C2 = '=' then
if C1 = '/' then
Token_Name := Name_Op_Ne;
elsif C1 = '<' then
Token_Name := Name_Op_Le;
elsif C1 = '>' then
Token_Name := Name_Op_Ge;
end if;
elsif (C1 = 'O' or else C1 = 'o') and then -- OR
(C2 = 'R' or else C2 = 'r')
then
Token_Name := Name_Op_Or;
end if;
elsif Slen = 3 then
C1 := Source (Token_Ptr + 1);
C2 := Source (Token_Ptr + 2);
C3 := Source (Token_Ptr + 3);
if (C1 = 'A' or else C1 = 'a') and then -- AND
(C2 = 'N' or else C2 = 'n') and then
(C3 = 'D' or else C3 = 'd')
then
Token_Name := Name_Op_And;
elsif (C1 = 'A' or else C1 = 'a') and then -- ABS
(C2 = 'B' or else C2 = 'b') and then
(C3 = 'S' or else C3 = 's')
then
Token_Name := Name_Op_Abs;
elsif (C1 = 'M' or else C1 = 'm') and then -- MOD
(C2 = 'O' or else C2 = 'o') and then
(C3 = 'D' or else C3 = 'd')
then
Token_Name := Name_Op_Mod;
elsif (C1 = 'N' or else C1 = 'n') and then -- NOT
(C2 = 'O' or else C2 = 'o') and then
(C3 = 'T' or else C3 = 't')
then
Token_Name := Name_Op_Not;
elsif (C1 = 'R' or else C1 = 'r') and then -- REM
(C2 = 'E' or else C2 = 'e') and then
(C3 = 'M' or else C3 = 'm')
then
Token_Name := Name_Op_Rem;
elsif (C1 = 'X' or else C1 = 'x') and then -- XOR
(C2 = 'O' or else C2 = 'o') and then
(C3 = 'R' or else C3 = 'r')
then
Token_Name := Name_Op_Xor;
end if;
end if;
-- If it is an operator symbol, then Token_Name is set. If it is
-- some other string value, then Token_Name still contains
-- Error_Name.
if Token_Name = Error_Name then
Token := Tok_String_Literal;
else
Token := Tok_Operator_Symbol;
end if;
end Set_String;
-- Start of processing for Slit
begin
-- On entry, Scan_Ptr points to the opening character of the string
-- which is either a percent, double quote, or apostrophe (single
-- quote). The latter case is an error detected by the character
-- literal circuit.
Delimiter := Source (Scan_Ptr);
Accumulate_Checksum (Delimiter);
Start_String;
Scan_Ptr := Scan_Ptr + 1;
-- Loop to scan out characters of string literal
loop
C := Source (Scan_Ptr);
if C = Delimiter then
Accumulate_Checksum (C);
Scan_Ptr := Scan_Ptr + 1;
exit when Source (Scan_Ptr) /= Delimiter;
Code := Get_Char_Code (C);
Accumulate_Checksum (C);
Scan_Ptr := Scan_Ptr + 1;
else
if C = '"' and then Delimiter = '%' then
Error_Msg_S
("quote not allowed in percent delimited string");
Code := Get_Char_Code (C);
Scan_Ptr := Scan_Ptr + 1;
elsif (C = ESC
and then Wide_Character_Encoding_Method
in WC_ESC_Encoding_Method)
or else (C in Upper_Half_Character
and then Upper_Half_Encoding)
or else (C = '['
and then Source (Scan_Ptr + 1) = '"'
and then Identifier_Char (Source (Scan_Ptr + 2)))
then
Wptr := Scan_Ptr;
Scan_Wide (Source, Scan_Ptr, Code, Err);
if Err then
Error_Illegal_Wide_Character;
Code := Get_Char_Code (' ');
end if;
Accumulate_Checksum (Code);
-- In Ada 95 mode we allow any wide characters in a string
-- but in Ada 2005, the set of characters allowed has been
-- restricted to graphic characters.
if Ada_Version >= Ada_05
and then Is_UTF_32_Non_Graphic (UTF_32 (Code))
then
Error_Msg
("(Ada 2005) non-graphic character not permitted " &
"in string literal", Wptr);
end if;
else
Accumulate_Checksum (C);
if C not in Graphic_Character then
if C in Line_Terminator then
Error_Unterminated_String;
exit;
elsif C in Upper_Half_Character then
if Ada_Version = Ada_83 then
Error_Bad_String_Char;
end if;
else
Error_Bad_String_Char;
end if;
end if;
Code := Get_Char_Code (C);
Scan_Ptr := Scan_Ptr + 1;
end if;
end if;
Store_String_Char (Code);
if not In_Character_Range (Code) then
Wide_Character_Found := True;
end if;
end loop;
String_Literal_Id := End_String;
Set_String;
return;
end Slit;
-- Start of processing for Scan
begin
Prev_Token := Token;
Prev_Token_Ptr := Token_Ptr;
Token_Name := Error_Name;
-- The following loop runs more than once only if a format effector
-- (tab, vertical tab, form feed, line feed, carriage return) is
-- encountered and skipped, or some error situation, such as an
-- illegal character, is encountered.
<<Scan_Next_Character>>
loop
-- Skip past blanks, loop is opened up for speed
while Source (Scan_Ptr) = ' ' loop
if Source (Scan_Ptr + 1) /= ' ' then
Scan_Ptr := Scan_Ptr + 1;
exit;
end if;
if Source (Scan_Ptr + 2) /= ' ' then
Scan_Ptr := Scan_Ptr + 2;
exit;
end if;
if Source (Scan_Ptr + 3) /= ' ' then
Scan_Ptr := Scan_Ptr + 3;
exit;
end if;
if Source (Scan_Ptr + 4) /= ' ' then
Scan_Ptr := Scan_Ptr + 4;
exit;
end if;
if Source (Scan_Ptr + 5) /= ' ' then
Scan_Ptr := Scan_Ptr + 5;
exit;
end if;
if Source (Scan_Ptr + 6) /= ' ' then
Scan_Ptr := Scan_Ptr + 6;
exit;
end if;
if Source (Scan_Ptr + 7) /= ' ' then
Scan_Ptr := Scan_Ptr + 7;
exit;
end if;
Scan_Ptr := Scan_Ptr + 8;
end loop;
-- We are now at a non-blank character, which is the first character
-- of the token we will scan, and hence the value of Token_Ptr.
Token_Ptr := Scan_Ptr;
-- Here begins the main case statement which transfers control on the
-- basis of the non-blank character we have encountered.
case Source (Scan_Ptr) is
-- Line terminator characters
when CR | LF | FF | VT =>
goto Scan_Line_Terminator;
-- Horizontal tab, just skip past it
when HT =>
-- LLVM local begin
if Style_Check then
Style.Check_HT;
end if;
-- LLVM local end
Scan_Ptr := Scan_Ptr + 1;
-- End of file character, treated as an end of file only if it is
-- the last character in the buffer, otherwise it is ignored.
when EOF =>
if Scan_Ptr = Source_Last (Current_Source_File) then
Check_End_Of_Line;
-- LLVM local begin
if Style_Check then
Style.Check_EOF;
end if;
-- LLVM local end
Token := Tok_EOF;
return;
else
Scan_Ptr := Scan_Ptr + 1;
end if;
-- Ampersand
when '&' =>
Accumulate_Checksum ('&');
if Source (Scan_Ptr + 1) = '&' then
Error_Msg_S ("'&'& should be `AND THEN`");
Scan_Ptr := Scan_Ptr + 2;
Token := Tok_And;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Ampersand;
return;
end if;
-- Asterisk (can be multiplication operator or double asterisk which
-- is the exponentiation compound delimiter).
when '*' =>
Accumulate_Checksum ('*');
if Source (Scan_Ptr + 1) = '*' then
Accumulate_Checksum ('*');
Scan_Ptr := Scan_Ptr + 2;
Token := Tok_Double_Asterisk;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Asterisk;
return;
end if;
-- Colon, which can either be an isolated colon, or part of an
-- assignment compound delimiter.
when ':' =>
Accumulate_Checksum (':');
if Double_Char_Token ('=') then
Token := Tok_Colon_Equal;
-- LLVM local begin
if Style_Check then
Style.Check_Colon_Equal;
end if;
-- LLVM local end
return;
elsif Source (Scan_Ptr + 1) = '-'
and then Source (Scan_Ptr + 2) /= '-'
then
Token := Tok_Colon_Equal;
Error_Msg (":- should be :=", Scan_Ptr);
Scan_Ptr := Scan_Ptr + 2;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Colon;
-- LLVM local begin
if Style_Check then
Style.Check_Colon;
end if;
-- LLVM local end
return;
end if;
-- Left parenthesis
when '(' =>
Accumulate_Checksum ('(');
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Left_Paren;
-- LLVM local begin
if Style_Check then
Style.Check_Left_Paren;
end if;
-- LLVM local end
return;
-- Left bracket
when '[' =>
if Source (Scan_Ptr + 1) = '"' then
goto Scan_Wide_Character;
else
Error_Msg_S ("illegal character, replaced by ""(""");
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Left_Paren;
return;
end if;
-- Left brace
when '{' =>
Error_Msg_S ("illegal character, replaced by ""(""");
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Left_Paren;
return;
-- Comma
when ',' =>
Accumulate_Checksum (',');
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Comma;
-- LLVM local begin
if Style_Check then
Style.Check_Comma;
end if;
-- LLVM local end
return;
-- Dot, which is either an isolated period, or part of a double dot
-- compound delimiter sequence. We also check for the case of a
-- digit following the period, to give a better error message.
when '.' =>
Accumulate_Checksum ('.');
if Double_Char_Token ('.') then
Token := Tok_Dot_Dot;
-- LLVM local begin
if Style_Check then
Style.Check_Dot_Dot;
end if;
-- LLVM local end
return;
elsif Source (Scan_Ptr + 1) in '0' .. '9' then
Error_Msg_S ("numeric literal cannot start with point");
Scan_Ptr := Scan_Ptr + 1;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Dot;
return;
end if;
-- Equal, which can either be an equality operator, or part of the
-- arrow (=>) compound delimiter.
when '=' =>
Accumulate_Checksum ('=');
if Double_Char_Token ('>') then
Token := Tok_Arrow;
-- LLVM local begin
if Style_Check then
Style.Check_Arrow;
end if;
-- LLVM local end
return;
elsif Source (Scan_Ptr + 1) = '=' then
Error_Msg_S ("== should be =");
Scan_Ptr := Scan_Ptr + 1;
end if;
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Equal;
return;
-- Greater than, which can be a greater than operator, greater than
-- or equal operator, or first character of a right label bracket.
when '>' =>
Accumulate_Checksum ('>');
if Double_Char_Token ('=') then
Token := Tok_Greater_Equal;
return;
elsif Double_Char_Token ('>') then
Token := Tok_Greater_Greater;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Greater;
return;
end if;
-- Less than, which can be a less than operator, less than or equal
-- operator, or the first character of a left label bracket, or the
-- first character of a box (<>) compound delimiter.
when '<' =>
Accumulate_Checksum ('<');
if Double_Char_Token ('=') then
Token := Tok_Less_Equal;
return;
elsif Double_Char_Token ('>') then
Token := Tok_Box;
-- LLVM local begin
if Style_Check then
Style.Check_Box;
end if;
-- LLVM local end
return;
elsif Double_Char_Token ('<') then
Token := Tok_Less_Less;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Less;
return;
end if;
-- Minus, which is either a subtraction operator, or the first
-- character of double minus starting a comment
when '-' => Minus_Case : begin
if Source (Scan_Ptr + 1) = '>' then
Error_Msg_S ("invalid token");
Scan_Ptr := Scan_Ptr + 2;
Token := Tok_Arrow;
return;
elsif Source (Scan_Ptr + 1) /= '-' then
Accumulate_Checksum ('-');
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Minus;
return;
-- Comment
else -- Source (Scan_Ptr + 1) = '-' then
-- LLVM local begin
if Style_Check then
Style.Check_Comment;
end if;
-- LLVM local end
Scan_Ptr := Scan_Ptr + 2;
-- If we are in preprocessor mode with Replace_In_Comments set,
-- then we return the "--" as a token on its own.
if Replace_In_Comments then
Token := Tok_Comment;
return;
end if;
-- Otherwise scan out the comment
Start_Of_Comment := Scan_Ptr;
-- Loop to scan comment (this loop runs more than once only if
-- a horizontal tab or other non-graphic character is scanned)
loop
-- Scan to non graphic character (opened up for speed)
-- Note that we just eat left brackets, which means that
-- bracket notation cannot be used for end of line
-- characters in comments. This seems a reasonable choice,
-- since no one would ever use brackets notation in a real
-- program in this situation, and if we allow brackets
-- notation, we forbid some valid comments which contain a
-- brackets sequence that happens to match an end of line
-- character.
loop
exit when Source (Scan_Ptr) not in Graphic_Character;
Scan_Ptr := Scan_Ptr + 1;
exit when Source (Scan_Ptr) not in Graphic_Character;
Scan_Ptr := Scan_Ptr + 1;
exit when Source (Scan_Ptr) not in Graphic_Character;
Scan_Ptr := Scan_Ptr + 1;
exit when Source (Scan_Ptr) not in Graphic_Character;
Scan_Ptr := Scan_Ptr + 1;
exit when Source (Scan_Ptr) not in Graphic_Character;
Scan_Ptr := Scan_Ptr + 1;
end loop;
-- Keep going if horizontal tab
if Source (Scan_Ptr) = HT then
-- LLVM local begin
if Style_Check then
Style.Check_HT;
end if;
-- LLVM local end
Scan_Ptr := Scan_Ptr + 1;
-- Terminate scan of comment if line terminator
elsif Source (Scan_Ptr) in Line_Terminator then
exit;
-- Terminate scan of comment if end of file encountered
-- (embedded EOF character or real last character in file)
elsif Source (Scan_Ptr) = EOF then
exit;
-- If we have a wide character, we have to scan it out,
-- because it might be a legitimate line terminator
elsif (Source (Scan_Ptr) = ESC
and then Identifier_Char (ESC))
or else
(Source (Scan_Ptr) in Upper_Half_Character
and then Upper_Half_Encoding)
then
declare
Wptr : constant Source_Ptr := Scan_Ptr;
Code : Char_Code;
Err : Boolean;
begin
Scan_Wide (Source, Scan_Ptr, Code, Err);
-- If not well formed wide character, then just skip
-- past it and ignore it.
if Err then
Scan_Ptr := Wptr + 1;
-- If UTF_32 terminator, terminate comment scan
elsif Is_UTF_32_Line_Terminator (UTF_32 (Code)) then
Scan_Ptr := Wptr;
exit;
end if;
end;
-- Keep going if character in 80-FF range, or is ESC. These
-- characters are allowed in comments by RM-2.1(1), 2.7(2).
-- They are allowed even in Ada 83 mode according to the
-- approved AI. ESC was added to the AI in June 93.
elsif Source (Scan_Ptr) in Upper_Half_Character
or else Source (Scan_Ptr) = ESC
then
Scan_Ptr := Scan_Ptr + 1;
-- Otherwise we have an illegal comment character
else
Error_Illegal_Character;
end if;
end loop;
-- Note that, except when comments are tokens, we do NOT
-- execute a return here, instead we fall through to reexecute
-- the scan loop to look for a token.
if Comment_Is_Token then
Name_Len := Integer (Scan_Ptr - Start_Of_Comment);
Name_Buffer (1 .. Name_Len) :=
String (Source (Start_Of_Comment .. Scan_Ptr - 1));
Comment_Id := Name_Find;
Token := Tok_Comment;
return;
end if;
end if;
end Minus_Case;
-- Double quote starting a string literal
when '"' =>
Slit;
Post_Scan;
return;
-- Percent starting a string literal
when '%' =>
Obsolescent_Check (Token_Ptr);
if Warn_On_Obsolescent_Feature then
Error_Msg_S
("use of ""'%"" is an obsolescent feature ('R'M 'J.2(4))?");
Error_Msg_S
("\use """""" instead?");
end if;
Slit;
Post_Scan;
return;
-- Apostrophe. This can either be the start of a character literal,
-- or an isolated apostrophe used in a qualified expression or an
-- attribute. We treat it as a character literal if it does not
-- follow a right parenthesis, identifier, the keyword ALL or
-- a literal. This means that we correctly treat constructs like:
-- A := CHARACTER'('A');
-- Note that RM-2.2(7) does not require a separator between
-- "CHARACTER" and "'" in the above.
when ''' => Char_Literal_Case : declare
Code : Char_Code;
Err : Boolean;
begin
Accumulate_Checksum (''');
Scan_Ptr := Scan_Ptr + 1;
-- Here is where we make the test to distinguish the cases. Treat
-- as apostrophe if previous token is an identifier, right paren
-- or the reserved word "all" (latter case as in A.all'Address)
-- (or the reserved word "project" in project files). Also treat
-- it as apostrophe after a literal (this catches some legitimate
-- cases, like A."abs"'Address, and also gives better error
-- behavior for impossible cases like 123'xxx).
if Prev_Token = Tok_Identifier
or else Prev_Token = Tok_Right_Paren
or else Prev_Token = Tok_All
or else Prev_Token = Tok_Project
or else Prev_Token in Token_Class_Literal
then
Token := Tok_Apostrophe;
-- LLVM local begin
if Style_Check then
Style.Check_Apostrophe;
end if;
-- LLVM local end
return;
-- Otherwise the apostrophe starts a character literal
else
-- Case of wide character literal
if (Source (Scan_Ptr) = ESC
and then
Wide_Character_Encoding_Method in WC_ESC_Encoding_Method)
or else
(Source (Scan_Ptr) in Upper_Half_Character
and then
Upper_Half_Encoding)
or else
(Source (Scan_Ptr) = '['
and then
Source (Scan_Ptr + 1) = '"')
then
Wptr := Scan_Ptr;
Scan_Wide (Source, Scan_Ptr, Code, Err);
Accumulate_Checksum (Code);
if Err then
Error_Illegal_Wide_Character;
Code := Character'Pos (' ');
-- In Ada 95 mode we allow any wide character in a character
-- literal, but in Ada 2005, the set of characters allowed
-- is restricted to graphic characters.
elsif Ada_Version >= Ada_05
and then Is_UTF_32_Non_Graphic (UTF_32 (Code))
then
Error_Msg
("(Ada 2005) non-graphic character not permitted " &
"in character literal", Wptr);
end if;
if Source (Scan_Ptr) /= ''' then
Error_Msg_S ("missing apostrophe");
else
Scan_Ptr := Scan_Ptr + 1;
end if;
-- If we do not find a closing quote in the expected place then
-- assume that we have a misguided attempt at a string literal.
-- However, if previous token is RANGE, then we return an
-- apostrophe instead since this gives better error recovery
elsif Source (Scan_Ptr + 1) /= ''' then
if Prev_Token = Tok_Range then
Token := Tok_Apostrophe;
return;
else
Scan_Ptr := Scan_Ptr - 1;
Error_Msg_S
("strings are delimited by double quote character");
Slit;
Post_Scan;
return;
end if;
-- Otherwise we have a (non-wide) character literal
else
Accumulate_Checksum (Source (Scan_Ptr));
if Source (Scan_Ptr) not in Graphic_Character then
if Source (Scan_Ptr) in Upper_Half_Character then
if Ada_Version = Ada_83 then
Error_Illegal_Character;
end if;
else
Error_Illegal_Character;
end if;
end if;
Code := Get_Char_Code (Source (Scan_Ptr));
Scan_Ptr := Scan_Ptr + 2;
end if;
-- Fall through here with Scan_Ptr updated past the closing
-- quote, and Code set to the Char_Code value for the literal
Accumulate_Checksum (''');
Token := Tok_Char_Literal;
Set_Character_Literal_Name (Code);
Token_Name := Name_Find;
Character_Code := Code;
Post_Scan;
return;
end if;
end Char_Literal_Case;
-- Right parenthesis
when ')' =>
Accumulate_Checksum (')');
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Right_Paren;
-- LLVM local begin
if Style_Check then
Style.Check_Right_Paren;
end if;
-- LLVM local end
return;
-- Right bracket or right brace, treated as right paren
when ']' | '}' =>
Error_Msg_S ("illegal character, replaced by "")""");
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Right_Paren;
return;
-- Slash (can be division operator or first character of not equal)
when '/' =>
Accumulate_Checksum ('/');
if Double_Char_Token ('=') then
Token := Tok_Not_Equal;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Slash;
return;
end if;
-- Semicolon
when ';' =>
Accumulate_Checksum (';');
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Semicolon;
-- LLVM local begin
if Style_Check then
Style.Check_Semicolon;
end if;
-- LLVM local end
return;
-- Vertical bar
when '|' => Vertical_Bar_Case : begin
Accumulate_Checksum ('|');
-- Special check for || to give nice message
if Source (Scan_Ptr + 1) = '|' then
Error_Msg_S ("""'|'|"" should be `OR ELSE`");
Scan_Ptr := Scan_Ptr + 2;
Token := Tok_Or;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Vertical_Bar;
-- LLVM local begin
if Style_Check then
Style.Check_Vertical_Bar;
end if;
-- LLVM local end
return;
end if;
end Vertical_Bar_Case;
-- Exclamation, replacement character for vertical bar
when '!' => Exclamation_Case : begin
Accumulate_Checksum ('!');
Obsolescent_Check (Token_Ptr);
if Warn_On_Obsolescent_Feature then
Error_Msg_S
("use of ""'!"" is an obsolescent feature ('R'M 'J.2(2))?");
Error_Msg_S
("\use ""'|"" instead?");
end if;
if Source (Scan_Ptr + 1) = '=' then
Error_Msg_S ("'!= should be /=");
Scan_Ptr := Scan_Ptr + 2;
Token := Tok_Not_Equal;
return;
else
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Vertical_Bar;
return;
end if;
end Exclamation_Case;
-- Plus
when '+' => Plus_Case : begin
Accumulate_Checksum ('+');
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Plus;
return;
end Plus_Case;
-- Digits starting a numeric literal
when '0' .. '9' =>
Nlit;
if Identifier_Char (Source (Scan_Ptr)) then
Error_Msg_S
("delimiter required between literal and identifier");
end if;
Post_Scan;
return;
-- Lower case letters
when 'a' .. 'z' =>
Name_Len := 1;
Underline_Found := False;
Name_Buffer (1) := Source (Scan_Ptr);
Accumulate_Checksum (Name_Buffer (1));
Scan_Ptr := Scan_Ptr + 1;
goto Scan_Identifier;
-- Upper case letters
when 'A' .. 'Z' =>
Name_Len := 1;
Underline_Found := False;
Name_Buffer (1) :=
Character'Val (Character'Pos (Source (Scan_Ptr)) + 32);
Accumulate_Checksum (Name_Buffer (1));
Scan_Ptr := Scan_Ptr + 1;
goto Scan_Identifier;
-- Underline character
when '_' =>
if Special_Characters ('_') then
Token_Ptr := Scan_Ptr;
Scan_Ptr := Scan_Ptr + 1;
Token := Tok_Special;
Special_Character := '_';
return;
end if;
Error_Msg_S ("identifier cannot start with underline");
Name_Len := 1;
Name_Buffer (1) := '_';
Scan_Ptr := Scan_Ptr + 1;
Underline_Found := False;
goto Scan_Identifier;
-- Space (not possible, because we scanned past blanks)
when ' ' =>
raise Program_Error;
-- Characters in top half of ASCII 8-bit chart
when Upper_Half_Character =>
-- Wide character case
if Upper_Half_Encoding then
goto Scan_Wide_Character;
-- Otherwise we have OK Latin-1 character
else
-- Upper half characters may possibly be identifier letters
-- but can never be digits, so Identifier_Char can be used to
-- test for a valid start of identifier character.
if Identifier_Char (Source (Scan_Ptr)) then
Name_Len := 0;
Underline_Found := False;
goto Scan_Identifier;
else
Error_Illegal_Character;
end if;
end if;
when ESC =>
-- ESC character, possible start of identifier if wide characters
-- using ESC encoding are allowed in identifiers, which we can
-- tell by looking at the Identifier_Char flag for ESC, which is
-- only true if these conditions are met. In Ada 2005 mode, may
-- also be valid UTF_32 space or line terminator character.
if Identifier_Char (ESC) then
Name_Len := 0;
goto Scan_Wide_Character;
else
Error_Illegal_Character;
end if;
-- Invalid control characters
when NUL | SOH | STX | ETX | EOT | ENQ | ACK | BEL | BS | ASCII.SO |
SI | DLE | DC1 | DC2 | DC3 | DC4 | NAK | SYN | ETB | CAN |
EM | FS | GS | RS | US | DEL
=>
Error_Illegal_Character;
-- Invalid graphic characters
when '#' | '$' | '?' | '@' | '`' | '\' | '^' | '~' =>
-- If Set_Special_Character has been called for this character,
-- set Scans.Special_Character and return a Special token.
if Special_Characters (Source (Scan_Ptr)) then
Token_Ptr := Scan_Ptr;
Token := Tok_Special;
Special_Character := Source (Scan_Ptr);
Scan_Ptr := Scan_Ptr + 1;
return;
-- Otherwise, this is an illegal character
else
Error_Illegal_Character;
end if;
-- End switch on non-blank character
end case;
-- End loop past format effectors. The exit from this loop is by
-- executing a return statement following completion of token scan
-- (control never falls out of this loop to the code which follows)
end loop;
-- Wide_Character scanning routine. On entry we have encountered the
-- initial character of a wide character sequence.
<<Scan_Wide_Character>>
declare
Code : Char_Code;
Cat : Category;
Err : Boolean;
begin
Wptr := Scan_Ptr;
Scan_Wide (Source, Scan_Ptr, Code, Err);
-- If bad wide character, signal error and continue scan
if Err then
Error_Illegal_Wide_Character;
goto Scan_Next_Character;
end if;
Cat := Get_Category (UTF_32 (Code));
-- If OK letter, reset scan ptr and go scan identifier
if Is_UTF_32_Letter (Cat) then
Scan_Ptr := Wptr;
Name_Len := 0;
Underline_Found := False;
goto Scan_Identifier;
-- If OK wide space, ignore and keep scanning (we do not include
-- any ignored spaces in checksum)
elsif Is_UTF_32_Space (Cat) then
goto Scan_Next_Character;
-- If OK wide line terminator, terminate current line
elsif Is_UTF_32_Line_Terminator (UTF_32 (Code)) then
Scan_Ptr := Wptr;
goto Scan_Line_Terminator;
-- Punctuation is an error (at start of identifier)
elsif Is_UTF_32_Punctuation (Cat) then
Error_Msg
("identifier cannot start with punctuation", Wptr);
Scan_Ptr := Wptr;
Name_Len := 0;
Underline_Found := False;
goto Scan_Identifier;
-- Mark character is an error (at start of identifer)
elsif Is_UTF_32_Mark (Cat) then
Error_Msg
("identifier cannot start with mark character", Wptr);
Scan_Ptr := Wptr;
Name_Len := 0;
Underline_Found := False;
goto Scan_Identifier;
-- Other format character is an error (at start of identifer)
elsif Is_UTF_32_Other (Cat) then
Error_Msg
("identifier cannot start with other format character", Wptr);
Scan_Ptr := Wptr;
Name_Len := 0;
Underline_Found := False;
goto Scan_Identifier;
-- Extended digit character is an error. Could be bad start of
-- identifier or bad literal. Not worth doing too much to try to
-- distinguish these cases, but we will do a little bit.
elsif Is_UTF_32_Digit (Cat) then
Error_Msg
("identifier cannot start with digit character", Wptr);
Scan_Ptr := Wptr;
Name_Len := 0;
Underline_Found := False;
goto Scan_Identifier;
-- All other wide characters are illegal here
else
Error_Illegal_Wide_Character;
goto Scan_Next_Character;
end if;
end;
-- Routine to scan line terminator. On entry Scan_Ptr points to a
-- character which is one of FF,LR,CR,VT, or one of the wide characters
-- that is treated as a line termiantor.
<<Scan_Line_Terminator>>
-- Check line too long
Check_End_Of_Line;
-- Set Token_Ptr, if End_Of_Line is a token, for the case when it is
-- a physical line.
if End_Of_Line_Is_Token then
Token_Ptr := Scan_Ptr;
end if;
declare
Physical : Boolean;
begin
Skip_Line_Terminators (Scan_Ptr, Physical);
-- If we are at start of physical line, update scan pointers to
-- reflect the start of the new line.
if Physical then
Current_Line_Start := Scan_Ptr;
Start_Column := Set_Start_Column;
First_Non_Blank_Location := Scan_Ptr;
-- If End_Of_Line is a token, we return it as it is a
-- physical line.
if End_Of_Line_Is_Token then
Token := Tok_End_Of_Line;
return;
end if;
end if;
end;
goto Scan_Next_Character;
-- Identifier scanning routine. On entry, some initial characters of
-- the identifier may have already been stored in Name_Buffer. If so,
-- Name_Len has the number of characters stored. otherwise Name_Len is
-- set to zero on entry. Underline_Found is also set False on entry.
<<Scan_Identifier>>
-- This loop scans as fast as possible past lower half letters and
-- digits, which we expect to be the most common characters.
loop
if Source (Scan_Ptr) in 'a' .. 'z'
or else Source (Scan_Ptr) in '0' .. '9'
then
Name_Buffer (Name_Len + 1) := Source (Scan_Ptr);
Accumulate_Checksum (Source (Scan_Ptr));
elsif Source (Scan_Ptr) in 'A' .. 'Z' then
Name_Buffer (Name_Len + 1) :=
Character'Val (Character'Pos (Source (Scan_Ptr)) + 32);
Accumulate_Checksum (Name_Buffer (Name_Len + 1));
else
exit;
end if;
Underline_Found := False;
Scan_Ptr := Scan_Ptr + 1;
Name_Len := Name_Len + 1;
end loop;
-- If we fall through, then we have encountered either an underline
-- character, or an extended identifier character (i.e. one from the
-- upper half), or a wide character, or an identifier terminator. The
-- initial test speeds us up in the most common case where we have
-- an identifier terminator. Note that ESC is an identifier character
-- only if a wide character encoding method that uses ESC encoding
-- is active, so if we find an ESC character we know that we have a
-- wide character.
if Identifier_Char (Source (Scan_Ptr)) then
-- Case of underline
if Source (Scan_Ptr) = '_' then
Accumulate_Checksum ('_');
if Underline_Found then
Error_No_Double_Underline;
else
Underline_Found := True;
Name_Len := Name_Len + 1;
Name_Buffer (Name_Len) := '_';
end if;
Scan_Ptr := Scan_Ptr + 1;
goto Scan_Identifier;
-- Upper half character
elsif Source (Scan_Ptr) in Upper_Half_Character
and then not Upper_Half_Encoding
then
Accumulate_Checksum (Source (Scan_Ptr));
Store_Encoded_Character
(Get_Char_Code (Fold_Lower (Source (Scan_Ptr))));
Scan_Ptr := Scan_Ptr + 1;
Underline_Found := False;
goto Scan_Identifier;
-- Left bracket not followed by a quote terminates an identifier.
-- This is an error, but we don't want to give a junk error msg
-- about wide characters in this case!
elsif Source (Scan_Ptr) = '['
and then Source (Scan_Ptr + 1) /= '"'
then
null;
-- We know we have a wide character encoding here (the current
-- character is either ESC, left bracket, or an upper half
-- character depending on the encoding method).
else
-- Scan out the wide character and insert the appropriate
-- encoding into the name table entry for the identifier.
declare
Code : Char_Code;
Err : Boolean;
Chr : Character;
Cat : Category;
begin
Wptr := Scan_Ptr;
Scan_Wide (Source, Scan_Ptr, Code, Err);
-- If error, signal error
if Err then
Error_Illegal_Wide_Character;
-- If the character scanned is a normal identifier
-- character, then we treat it that way.
elsif In_Character_Range (Code)
and then Identifier_Char (Get_Character (Code))
then
Chr := Get_Character (Code);
Accumulate_Checksum (Chr);
Store_Encoded_Character
(Get_Char_Code (Fold_Lower (Chr)));
Underline_Found := False;
-- Here if not a normal identifier character
else
-- Make sure we are allowing wide characters in
-- identifiers. Note that we allow wide character
-- notation for an OK identifier character. This in
-- particular allows bracket or other notation to be
-- used for upper half letters.
-- Wide characters are always allowed in Ada 2005
if Identifier_Character_Set /= 'w'
and then Ada_Version < Ada_05
then
Error_Msg
("wide character not allowed in identifier", Wptr);
end if;
Cat := Get_Category (UTF_32 (Code));
-- If OK letter, store it folding to upper case. Note
-- that we include the folded letter in the checksum.
if Is_UTF_32_Letter (Cat) then
Code :=
Char_Code (UTF_32_To_Upper_Case (UTF_32 (Code)));
Accumulate_Checksum (Code);
Store_Encoded_Character (Code);
Underline_Found := False;
-- If OK extended digit or mark, then store it
elsif Is_UTF_32_Digit (Cat)
or else Is_UTF_32_Mark (Cat)
then
Accumulate_Checksum (Code);
Store_Encoded_Character (Code);
Underline_Found := False;
-- Wide punctuation is also stored, but counts as an
-- underline character for error checking purposes.
elsif Is_UTF_32_Punctuation (Cat) then
Accumulate_Checksum (Code);
if Underline_Found then
declare
Cend : constant Source_Ptr := Scan_Ptr;
begin
Scan_Ptr := Wptr;
Error_No_Double_Underline;
Scan_Ptr := Cend;
end;
else
Store_Encoded_Character (Code);
Underline_Found := True;
end if;
-- Wide character in Unicode cateogory "Other, Format"
-- is accepted in an identifier, but is ignored and not
-- stored. It seems reasonable to exclude it from the
-- checksum.
-- Note that it is correct (see AI-395) to simply strip
-- other format characters, before testing for double
-- underlines, or for reserved words).
elsif Is_UTF_32_Other (Cat) then
null;
-- Wide character in category Separator,Space terminates
elsif Is_UTF_32_Space (Cat) then
goto Scan_Identifier_Complete;
-- Any other wide character is not acceptable
else
Error_Msg
("invalid wide character in identifier", Wptr);
end if;
end if;
goto Scan_Identifier;
end;
end if;
end if;
-- Scan of identifier is complete. The identifier is stored in
-- Name_Buffer, and Scan_Ptr points past the last character.
<<Scan_Identifier_Complete>>
Token_Name := Name_Find;
-- Check for identifier ending with underline or punctuation char
if Underline_Found then
Underline_Found := False;
if Source (Scan_Ptr - 1) = '_' then
Error_Msg
("identifier cannot end with underline", Scan_Ptr - 1);
else
Error_Msg
("identifier cannot end with punctuation character", Wptr);
end if;
end if;
-- Here is where we check if it was a keyword
if Is_Keyword_Name (Token_Name) then
Token := Token_Type'Val (Get_Name_Table_Byte (Token_Name));
-- Deal with possible style check for non-lower case keyword, but
-- we don't treat ACCESS, DELTA, DIGITS, RANGE as keywords for
-- this purpose if they appear as attribute designators. Actually
-- we only check the first character for speed.
-- Ada 2005 (AI-284): Do not apply the style check in case of
-- "pragma Interface"
-- Ada 2005 (AI-340): Do not apply the style check in case of
-- MOD attribute.
if Style_Check
and then Source (Token_Ptr) <= 'Z'
and then (Prev_Token /= Tok_Apostrophe
or else
(Token /= Tok_Access and then
Token /= Tok_Delta and then
Token /= Tok_Digits and then
Token /= Tok_Mod and then
Token /= Tok_Range))
and then (Token /= Tok_Interface
or else
(Token = Tok_Interface
and then Prev_Token /= Tok_Pragma))
then
Style.Non_Lower_Case_Keyword;
end if;
-- We must reset Token_Name since this is not an identifier and
-- if we leave Token_Name set, the parser gets confused because
-- it thinks it is dealing with an identifier instead of the
-- corresponding keyword.
Token_Name := No_Name;
Accumulate_Token_Checksum;
return;
-- It is an identifier after all
else
Token := Tok_Identifier;
Accumulate_Token_Checksum;
Post_Scan;
return;
end if;
end Scan;
--------------------------
-- Set_Comment_As_Token --
--------------------------
procedure Set_Comment_As_Token (Value : Boolean) is
begin
Comment_Is_Token := Value;
end Set_Comment_As_Token;
------------------------------
-- Set_End_Of_Line_As_Token --
------------------------------
procedure Set_End_Of_Line_As_Token (Value : Boolean) is
begin
End_Of_Line_Is_Token := Value;
end Set_End_Of_Line_As_Token;
---------------------------
-- Set_Special_Character --
---------------------------
procedure Set_Special_Character (C : Character) is
begin
case C is
when '#' | '$' | '_' | '?' | '@' | '`' | '\' | '^' | '~' =>
Special_Characters (C) := True;
when others =>
null;
end case;
end Set_Special_Character;
----------------------
-- Set_Start_Column --
----------------------
-- Note: it seems at first glance a little expensive to compute this value
-- for every source line (since it is certainly not used for all source
-- lines). On the other hand, it doesn't take much more work to skip past
-- the initial white space on the line counting the columns than it would
-- to scan past the white space using the standard scanning circuits.
function Set_Start_Column return Column_Number is
Start_Column : Column_Number := 0;
begin
-- Outer loop scans past horizontal tab characters
Tabs_Loop : loop
-- Inner loop scans past blanks as fast as possible, bumping Scan_Ptr
-- past the blanks and adjusting Start_Column to account for them.
Blanks_Loop : loop
if Source (Scan_Ptr) = ' ' then
if Source (Scan_Ptr + 1) = ' ' then
if Source (Scan_Ptr + 2) = ' ' then
if Source (Scan_Ptr + 3) = ' ' then
if Source (Scan_Ptr + 4) = ' ' then
if Source (Scan_Ptr + 5) = ' ' then
if Source (Scan_Ptr + 6) = ' ' then
Scan_Ptr := Scan_Ptr + 7;
Start_Column := Start_Column + 7;
else
Scan_Ptr := Scan_Ptr + 6;
Start_Column := Start_Column + 6;
exit Blanks_Loop;
end if;
else
Scan_Ptr := Scan_Ptr + 5;
Start_Column := Start_Column + 5;
exit Blanks_Loop;
end if;
else
Scan_Ptr := Scan_Ptr + 4;
Start_Column := Start_Column + 4;
exit Blanks_Loop;
end if;
else
Scan_Ptr := Scan_Ptr + 3;
Start_Column := Start_Column + 3;
exit Blanks_Loop;
end if;
else
Scan_Ptr := Scan_Ptr + 2;
Start_Column := Start_Column + 2;
exit Blanks_Loop;
end if;
else
Scan_Ptr := Scan_Ptr + 1;
Start_Column := Start_Column + 1;
exit Blanks_Loop;
end if;
else
exit Blanks_Loop;
end if;
end loop Blanks_Loop;
-- Outer loop keeps going only if a horizontal tab follows
if Source (Scan_Ptr) = HT then
-- LLVM local begin
if Style_Check then
Style.Check_HT;
end if;
-- LLVM local end
Scan_Ptr := Scan_Ptr + 1;
Start_Column := (Start_Column / 8) * 8 + 8;
else
exit Tabs_Loop;
end if;
end loop Tabs_Loop;
return Start_Column;
end Set_Start_Column;
end Scng;
|
-- part of ParserTools, (c) 2017 Felix Krause
-- released under the terms of the MIT license, see the file "copying.txt"
package Text.Pool is
type Reference is tagged private;
Default_Size : constant Pool_Offset;
-- must be called once before the string pool can be used. if called again,
-- the string pool re-initializes itself with new memory, and the old memory
-- lives on only in References that have already been generated. the
-- old memory is reclaimed once all string references to it vanish.
procedure Create (P : in out Reference'Class;
Initial_Size : Pool_Offset := Default_Size);
-- constructor that calls Create with the given Size parameter
function With_Capacity (Size : Pool_Offset) return Reference;
-- create a new string from the given data. the string will be allocated
-- within the pool.
function From_String (P : Reference'Class; Data : String)
return Text.Reference;
private
type Reference is tagged record
Data : Pool_Data_Access;
end record with Type_Invariant =>
(Reference.Data = null or else Reference.Data.Pos mod Header_Size = 1);
Default_Size : constant Pool_Offset := 8192;
end Text.Pool;
|
pragma Extend_System (Aux_DEC);
with System; use System;
package Valued_Proc_Pkg is
procedure GETMSG (STATUS : out UNSIGNED_LONGWORD;
MSGLEN : out UNSIGNED_WORD);
pragma Interface (EXTERNAL, GETMSG);
pragma IMPORT_VALUED_PROCEDURE (GETMSG, "SYS$GETMSG",
(UNSIGNED_LONGWORD, UNSIGNED_WORD),
(VALUE, REFERENCE));
end Valued_Proc_Pkg;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . A S S E R T I O N S --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2013, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package provides support for assertions (including pragma Assert,
-- pragma Debug, and Precondition/Postcondition/Predicate/Invariant aspects
-- and their corresponding pragmas).
-- This unit may be used directly from an application program by providing
-- an appropriate WITH, and the interface can be expected to remain stable.
pragma Compiler_Unit_Warning;
package System.Assertions
with SPARK_Mode => On is
Assert_Failure : exception;
-- Exception raised when assertion fails
procedure Raise_Assert_Failure (Msg : String);
pragma No_Return (Raise_Assert_Failure);
-- Called to raise Assert_Failure with given message
end System.Assertions;
|
-- PR middle-end/36575
-- reporter: Laurent Guerby <laurent@guerby.net>
-- { dg-do run }
procedure Conv_Decimal is
type Unsigned_Over_8 is mod 2**8+2;
type Signed_Over_8 is range -200 .. 200;
procedure Assert(Truth: Boolean) is
begin
if not Truth then
raise Program_Error;
end if;
end;
type Decim is delta 0.1 digits 5;
Halfway : Decim := 2.5;
Neg_Half : Decim := -2.5;
Big : Unsigned_Over_8;
Also_Big : Signed_Over_8;
begin
Big := Unsigned_Over_8 (Halfway); -- Rounds up by 4.6(33).
Assert(Big = 3);
Also_Big := Signed_Over_8 (Halfway); -- Rounds up by 4.6(33).
Assert(Also_Big = 3);
Also_Big := Signed_Over_8 (Neg_Half); -- Rounds down by 4.6(33).
Assert(Also_Big = -3);
end;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- S Y S T E M . V A L _ F I X E D _ 3 2 --
-- --
-- S p e c --
-- --
-- Copyright (C) 2020-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains routines for scanning values for decimal fixed point
-- types up to 32-bit small and mantissa, for use in Text_IO.Decimal_IO, and
-- the Value attribute for such decimal types.
with Interfaces;
with System.Arith_32;
with System.Value_F;
package System.Val_Fixed_32 is
pragma Preelaborate;
subtype Int32 is Interfaces.Integer_32;
subtype Uns32 is Interfaces.Unsigned_32;
package Impl is new Value_F (Int32, Uns32, Arith_32.Scaled_Divide32);
function Scan_Fixed32
(Str : String;
Ptr : not null access Integer;
Max : Integer;
Num : Int32;
Den : Int32) return Int32
renames Impl.Scan_Fixed;
function Value_Fixed32
(Str : String; Num : Int32; Den : Int32) return Int32
renames Impl.Value_Fixed;
end System.Val_Fixed_32;
|
--
-- Copyright (C) 2016 secunet Security Networks AG
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
with HW.GFX.GMA.Registers;
package body HW.GFX.GMA.PLLs.DPLL_0 is
DPLL_CTRL1_DPLL0_LINK_RATE_MASK : constant := 7 * 2 ** 1;
DPLL_CTRL1_DPLL0_LINK_RATE_2700MHZ : constant := 0 * 2 ** 1;
DPLL_CTRL1_DPLL0_LINK_RATE_1350MHZ : constant := 1 * 2 ** 1;
DPLL_CTRL1_DPLL0_LINK_RATE_810MHZ : constant := 2 * 2 ** 1;
DPLL_CTRL1_DPLL0_LINK_RATE_1620MHZ : constant := 3 * 2 ** 1;
DPLL_CTRL1_DPLL0_LINK_RATE_1080MHZ : constant := 4 * 2 ** 1;
DPLL_CTRL1_DPLL0_LINK_RATE_2160MHZ : constant := 5 * 2 ** 1;
DPLL_CTRL1_DPLL0_OVERRIDE : constant := 1 * 2 ** 0;
procedure Check_Link_Rate
(Link_Rate : in DP_Bandwidth;
Success : out Boolean)
is
DPLL_Ctrl1 : Word32;
begin
Registers.Read (Registers.DPLL_CTRL1, DPLL_Ctrl1);
case DPLL_Ctrl1 and DPLL_CTRL1_DPLL0_LINK_RATE_MASK is
when DPLL_CTRL1_DPLL0_LINK_RATE_2700MHZ =>
Success := Link_Rate = DP_Bandwidth_5_4;
when DPLL_CTRL1_DPLL0_LINK_RATE_1350MHZ =>
Success := Link_Rate = DP_Bandwidth_2_7;
when DPLL_CTRL1_DPLL0_LINK_RATE_810MHZ =>
Success := Link_Rate = DP_Bandwidth_1_62;
when others =>
Success := False;
end case;
Success := Success and (DPLL_Ctrl1 and DPLL_CTRL1_DPLL0_OVERRIDE) /= 0;
end Check_Link_Rate;
end HW.GFX.GMA.PLLs.DPLL_0;
|
with Ada.Command_Line;
with Ada.Text_IO;
with GNAT.OS_Lib;
with GNAT.Strings;
with GNATCOLL.Projects;
with GNATCOLL.VFS;
with Ada.Directories;
procedure GPR_Tools.Gpradd is
use GNATCOLL.VFS;
use GNAT.Strings;
use GNATCOLL.Projects;
use Ada.Directories;
Env : Project_Environment_Access;
GNAT_Version : GNAT.Strings.String_Access;
New_Path : GNATCOLL.VFS.File_Array_Access;
Sys_Path : GNATCOLL.VFS.File_Array_Access;
Found : Boolean;
begin
Initialize (Env);
declare -- Read new entries from the command line.
F : Virtual_File;
begin
for I in 1 .. Ada.Command_Line.Argument_Count loop
if Exists (Ada.Command_Line.Argument (I))
and then (Kind (Ada.Command_Line.Argument (I)) = Directory)
then
F :=
Create
(Filesystem_String
(Ada.Directories.Full_Name
(Ada.Command_Line.Argument (I))));
if New_Path /= null then
Found := False;
for I of New_Path.all loop
if I = F then
Found := True;
end if;
end loop;
end if;
if not Found then
Append (New_Path, F);
end if;
end if;
end loop;
end;
begin -- Get the original Project-PATH
Env.all.Set_Path_From_Gnatls ("gnatls", GNAT_Version);
Append (New_Path, Env.all.Predefined_Project_Path);
end;
begin -- Remove all system entries.
GNAT.OS_Lib.Setenv ("ADA_PROJECT_PATH", "");
GNAT.OS_Lib.Setenv ("GPR_PROJECT_PATH", "");
GNAT.OS_Lib.Setenv ("GPR_PROJECT_PATH_FILE", "");
Env.all.Set_Path_From_Gnatls ("gnatls", GNAT_Version);
Append (Sys_Path, Env.all.Predefined_Project_Path);
for I of Sys_Path.all loop
Remove (New_Path, I);
end loop;
Unchecked_Free (Sys_Path);
end;
begin -- Build a new path with uniqe entries.
for I of New_Path.all loop
Found := False;
if Sys_Path /= null then
for J of Sys_Path.all loop
if J = I then
Found := True;
end if;
end loop;
end if;
if not Found then
Append (Sys_Path, I);
end if;
end loop;
end;
begin -- print the result.
Ada.Text_IO.Put_Line
("export GPR_PROJECT_PATH=" & String (To_Path (Sys_Path.all)));
Ada.Text_IO.Put_Line ("export ADA_PROJECT_PATH=");
end;
Unchecked_Free (New_Path);
end GPR_Tools.Gpradd;
|
-- MIT License
-- Copyright (c) 2021 Stephen Merrony
-- Permission is hereby granted, free of charge, to any person obtaining a copy
-- of this software and associated documentation files (the "Software"), to deal
-- in the Software without restriction, including without limitation the rights
-- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-- copies of the Software, and to permit persons to whom the Software is
-- furnished to do so, subject to the following conditions:
-- The above copyright notice and this permission notice shall be included in all
-- copies or substantial portions of the Software.
-- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-- SOFTWARE.
package Processor.Nova_Math_P is
procedure Do_Nova_Math (I : in Decoded_Instr_T; CPU : in out CPU_T);
end Processor.Nova_Math_P; |
with Ada.IO_Exceptions;
with Ada.Unchecked_Conversion;
package body YAML.Streams is
use type C.signed_int;
-- parser
function Read_Handler (
data : C.void_ptr;
buffer : access C.unsigned_char;
size : C.size_t;
size_read : access C.size_t)
return C.signed_int
with Convention => C;
function Read_Handler (
data : C.void_ptr;
buffer : access C.unsigned_char;
size : C.size_t;
size_read : access C.size_t)
return C.signed_int
is
type Stream_Access is access all Ada.Streams.Root_Stream_Type'Class;
function Cast is new Ada.Unchecked_Conversion (C.void_ptr, Stream_Access);
Stream : constant Stream_Access := Cast (data);
Ada_Data :
Ada.Streams.Stream_Element_Array (
1 .. Ada.Streams.Stream_Element_Offset (size));
for Ada_Data'Address use buffer.all'Address;
Last : Ada.Streams.Stream_Element_Offset;
begin
begin
Ada.Streams.Read (Stream.all, Ada_Data, Last);
exception
when Ada.IO_Exceptions.End_Error =>
Last := 0;
end;
size_read.all := C.size_t (Last);
return 1;
end Read_Handler;
-- implementation of parser
function Create (
Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return Parser is
begin
return Result : Parser do
declare
procedure Process (Raw_Result : not null access C.yaml.yaml_parser_t) is
begin
if C.yaml.yaml_parser_initialize (Raw_Result) = 0 then
Raise_Error (Raw_Result.error, Raw_Result.problem, null);
end if;
C.yaml.yaml_parser_set_input (
Raw_Result,
Read_Handler'Access,
C.void_ptr (Stream.all'Address));
end Process;
procedure Do_Create is new Controlled_Parsers.Update (Process);
begin
Do_Create (Result);
end;
end return;
end Create;
-- emitter
function Write_Handler (
data : C.void_ptr;
buffer : access C.unsigned_char;
size : C.size_t)
return C.signed_int
with Convention => C;
function Write_Handler (
data : C.void_ptr;
buffer : access C.unsigned_char;
size : C.size_t)
return C.signed_int
is
type Stream_Access is access all Ada.Streams.Root_Stream_Type'Class;
function Cast is new Ada.Unchecked_Conversion (C.void_ptr, Stream_Access);
Stream : constant Stream_Access := Cast (data);
Ada_Data :
Ada.Streams.Stream_Element_Array (
1 .. Ada.Streams.Stream_Element_Offset (size));
for Ada_Data'Address use buffer.all'Address;
begin
Ada.Streams.Write (Stream.all, Ada_Data);
return 1;
end Write_Handler;
-- implementation of emitter
function Create (
Stream : not null access Ada.Streams.Root_Stream_Type'Class)
return Emitter is
begin
return Result : Emitter do
declare
procedure Process (Raw_Result : not null access C.yaml.yaml_emitter_t) is
begin
if C.yaml.yaml_emitter_initialize (Raw_Result) = 0 then
Raise_Error (Raw_Result.error, Raw_Result.problem, null);
end if;
C.yaml.yaml_emitter_set_output (
Raw_Result,
Write_Handler'Access,
C.void_ptr (Stream.all'Address));
end Process;
procedure Do_Create is new Controlled_Emitters.Update (Process);
begin
Do_Create (Result);
end;
end return;
end Create;
end YAML.Streams;
|
-- Copyright 2015-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 Pack is
function Fun_Rename_Test_Next (I : Integer) return Integer;
function Renamed_Fun_Rename_Test_Next (I : Integer) return Integer
renames Fun_Rename_Test_Next;
procedure Discard (I : Integer);
end Pack;
|
-- EB4014A.ADA
-- Grant of Unlimited Rights
--
-- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687,
-- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained
-- unlimited rights in the software and documentation contained herein.
-- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making
-- this public release, the Government intends to confer upon all
-- recipients unlimited rights equal to those held by the Government.
-- These rights include rights to use, duplicate, release or disclose the
-- released technical data and computer software in whole or in part, in
-- any manner and for any purpose whatsoever, and to have or permit others
-- to do so.
--
-- DISCLAIMER
--
-- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR
-- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED
-- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE
-- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE
-- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A
-- PARTICULAR PURPOSE OF SAID MATERIAL.
--*
-- OBJECTIVE:
-- CHECK THAT WHEN EXCEPTIONS ARE RAISED DURING THE ELABORATION OF
-- A LIBRARY UNIT, EXECUTION OF THE MAIN PROGRAM IS ABANDONED.
-- PASS/FAIL CRITERIA:
-- THIS TEST MUST EXECUTE AND REPORT "TENTATIVELY PASSED". IN
-- ADDITION, THE OUTPUT/LOG FILE MUST INDICATE THAT THE PROGRAM
-- TERMINATED WITH AN UNHANDLED EXCEPTION.
-- HISTORY:
-- DHH 03/29/88 CREATED ORIGINAL TEST.
-- PWN 05/25/94 ADDED A PROCEDURE TO KEEP PACKAGE BODIES LEGAL.
WITH REPORT; USE REPORT;
FUNCTION EB4014A1 RETURN INTEGER IS
BEGIN
TEST("EB4014A", "THIS LINE SHOULD NOT BE PRINTED");
FAILED("THE MAIN PROGRAM BODY WAS ENTERED");
RESULT;
RETURN IDENT_INT(1);
END EB4014A1;
WITH REPORT; USE REPORT;
PRAGMA ELABORATE (REPORT);
PACKAGE EB4014A_OUTSIDE IS
PROCEDURE REQUIRE_BODY;
END EB4014A_OUTSIDE;
PACKAGE BODY EB4014A_OUTSIDE IS
PROCEDURE REQUIRE_BODY IS
BEGIN
NULL;
END;
BEGIN
TEST("EB4014A", "CHECK THAT WHEN EXCEPTIONS ARE RAISED DURING " &
"THE ELABORATION OF A LIBRARY UNIT, EXECUTION " &
"OF THE MAIN PROGRAM IS ABANDONED");
SPECIAL_ACTION("CHECK THE OUTPUT/LOG FILE TO SEE IF THIS " &
"PROGRAM TERMINATED WITH AN UNHANDLED " &
"EXCEPTION");
RESULT;
RAISE CONSTRAINT_ERROR;
END EB4014A_OUTSIDE;
WITH EB4014A1; WITH EB4014A_OUTSIDE;
WITH REPORT; USE REPORT;
PROCEDURE EB4014A IS
X : INTEGER := EB4014A1;
BEGIN
TEST("EB4014A", "THIS LINE SHOULD NOT PRINT OUT");
FAILED("EXCEPTION DID NOT CAUSE MAIN PROGRAM TERMINATION");
RESULT;
X := IDENT_INT(X);
END EB4014A;
|
-- { dg-do compile }
package Pack33 is
Bits : constant := 33;
type Bits_33 is mod 2 ** Bits;
for Bits_33'Size use Bits;
type Cluster is record
E0, E1, E2, E3, E4, E5, E6, E7 : Bits_33;
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;
end Pack33;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- A D A . W I D E _ T E X T _ I O . E N U M E R A T I O N _ A U X --
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2006, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, --
-- Boston, MA 02110-1301, USA. --
-- --
-- As a special exception, if other files instantiate generics from this --
-- unit, or you link this unit with other files to produce an executable, --
-- this unit does not by itself cause the resulting executable to be --
-- covered by the GNU General Public License. This exception does not --
-- however invalidate any other reasons why the executable file might be --
-- covered by the GNU Public License. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains the routines for Ada.Wide_Text_IO.Enumeration_IO
-- that are shared among separate instantiations.
private package Ada.Wide_Text_IO.Enumeration_Aux is
procedure Get_Enum_Lit
(File : File_Type;
Buf : out Wide_String;
Buflen : out Natural);
-- Reads an enumeration literal value from the file, folds to upper case,
-- and stores the result in Buf, setting Buflen to the number of stored
-- characters (Buf has a lower bound of 1). If more than Buflen characters
-- are present in the literal, Data_Error is raised.
procedure Scan_Enum_Lit
(From : Wide_String;
Start : out Natural;
Stop : out Natural);
-- Scans an enumeration literal at the start of From, skipping any leading
-- spaces. Sets Start to the first character, Stop to the last character.
-- Raises End_Error if no enumeration literal is found.
procedure Put
(File : File_Type;
Item : Wide_String;
Width : Field;
Set : Type_Set);
-- Outputs the enumeration literal image stored in Item to the given File,
-- using the given Width and Set parameters (Item is always in upper case).
procedure Puts
(To : out Wide_String;
Item : Wide_String;
Set : Type_Set);
-- Stores the enumeration literal image stored in Item to the string To,
-- padding with trailing spaces if necessary to fill To. Set is used to
end Ada.Wide_Text_IO.Enumeration_Aux;
|
------------------------------------------------------------------------------
-- --
-- ASIS-for-GNAT IMPLEMENTATION COMPONENTS --
-- --
-- A 4 G . A _ A L L O C --
-- --
-- S p e c --
-- --
-- Version : 1.00 --
-- --
-- Copyright (c) 1995-1999, Free Software Foundation, Inc. --
-- --
-- ASIS-for-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 --
-- Software Foundation; either version 2, or (at your option) any later --
-- version. ASIS-for-GNAT is distributed in the hope that it will be use- --
-- ful, but WITHOUT ANY WARRANTY; without even the implied warranty of MER- --
-- CHANTABILITY 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 ASIS-for-GNAT; see file --
-- COPYING. If not, write to the Free Software Foundation, 59 Temple Place --
-- - Suite 330, Boston, MA 02111-1307, USA. --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- --
-- ASIS-for-GNAT was originally developed by the ASIS-for-GNAT team at the --
-- Software Engineering Laboratory of the Swiss Federal Institute of --
-- Technology (LGL-EPFL) in Lausanne, Switzerland, in cooperation with the --
-- Scientific Research Computer Center of Moscow State University (SRCC --
-- MSU), Russia, with funding partially provided by grants from the Swiss --
-- National Science Foundation and the Swiss Academy of Engineering --
-- Sciences. ASIS-for-GNAT is now maintained by Ada Core Technologies Inc --
-- (http://www.gnat.com). --
-- --
------------------------------------------------------------------------------
package A4G.A_Alloc is
-- This package contains definitions for initial sizes and growth increments
-- for the various dynamic arrays used for principle ASIS Context
-- Model data strcutures. The indicated initial size is allocated for the
-- start of each file, and the increment factor is a percentage used
-- to increase the table size when it needs expanding
-- (e.g. a value of 100 = 100% increase = double)
-- This package is the ASIS implementation's analog of the GNAT Alloc package
Alloc_ASIS_Units_Initial : constant := 1_000;
-- Initial allocation for unit tables
Alloc_ASIS_Units_Increment : constant := 150;
-- Incremental allocation factor for unit tables
Alloc_Contexts_Initial : constant := 20;
-- Initial allocation for Context table (A4G.Contt)
Alloc_Contexts_Increment : constant := 150;
-- Incremental allocation factor for Context table (Contt)
Alloc_ASIS_Trees_Initial : constant := 1_000;
-- Initial allocation for tree tables
Alloc_ASIS_Trees_Increment : constant := 150;
-- Incremental allocation factor for tree tables
end A4G.A_Alloc;
|
---------------------------------------------------------------------------------
-- Copyright 2004-2005 © Luke A. Guest
--
-- This code is to be used for tutorial purposes only.
-- You may not redistribute this code in any form without my express permission.
---------------------------------------------------------------------------------
with Interfaces.C; use Interfaces.C;
with Text_Io; use Text_Io;
with SDL.Types; use SDL.Types;
with SDL.Keyboard;
with SDL.Keysym;
with SDL.Video;
with SDL.Events;
with SDL.Timer;
with SDL.Active;
use type SDL.Init_Flags;
use type SDL.Active.Active_State;
use type SDL.Video.Surface_Flags;
use type SDL.Video.Surface_Ptr;
use type SDL.Video.VideoInfo_ConstPtr;
with Example;
with GL;
with GLU;
use type GL.GLdouble;
-- A simple example of a cube drawn with a display list.
procedure CVA is
pragma Link_With("-lSDL");
VideoFlags : SDL.Video.Surface_Flags := SDL.Video.OPENGL or SDL.Video.HWPALETTE or SDL.Video.RESIZABLE;
Result : Boolean := False;
TickCount : Integer := 0;
procedure ReshapeGL(Width, Height : in GL.GLint) is
AspectRatio : constant GL.GLdouble := GL.GLdouble(Width) / GL.GLdouble(Height);
begin
GL.glViewport(0, 0, GL.GLsizei(Width), GL.GLsizei(Height)); -- The Current Viewport.
GL.glMatrixMode(GL.GL_PROJECTION); -- The Projection Matrix.
GL.glLoadIdentity; -- The Projection Matrix.
GLU.gluPerspective(45.0, AspectRatio, 1.0, 100.0); -- Calculate The Aspect Ratio Of The Window.
GL.glMatrixMode(GL.GL_MODELVIEW); -- The Modelview Matrix.
GL.glLoadIdentity; -- Reset The Modelview Matrix.
end ReshapeGL;
procedure CreateWindowGL(Result : out Boolean) is
VideoInfo : SDL.Video.VideoInfo_ConstPtr;
begin
if SDL.Init(SDL.INIT_VIDEO or SDL.INIT_TIMER) = -1 then
Put_Line("Error Initialising SDL");
Result := False;
else
VideoInfo := SDL.Video.GetVideoInfo;
if VideoInfo = null then
Put_Line("Error Retrieving video information");
Result := False;
else
if VideoInfo.hw_available = 1 then
VideoFlags := VideoFlags or SDL.Video.HWSURFACE;
else
VideoFlags := VideoFlags or SDL.Video.SWSURFACE;
end if;
if VideoInfo.blit_hw = 1 then
VideoFlags := VideoFlags or SDL.Video.HWACCEL;
end if;
SDL.Video.GL_SetAttribute(SDL.Video.GL_RED_SIZE, 5);
SDL.Video.GL_SetAttribute(SDL.Video.GL_GREEN_SIZE, 5);
SDL.Video.GL_SetAttribute(SDL.Video.GL_BLUE_SIZE, 5);
SDL.Video.GL_SetAttribute(SDL.Video.GL_DEPTH_SIZE, 16);
SDL.Video.GL_SetAttribute(SDL.Video.GL_DOUBLEBUFFER, 1);
Example.SetSurface(SDL.Video.SetVideoMode(C.int(Example.GetWidth), C.int(Example.GetHeight), C.int(Example.GetBitsPerPixel), VideoFlags));
if Example.GetSurface = null then
Put_Line("Error setting video mode");
Result := False;
else
SDL.Video.WM_Set_Caption_Title(Example.GetTitle);
ReshapeGL(GL.GLint(Example.GetWidth), GL.GLint(Example.GetHeight));
end if;
end if;
end if;
Result := True;
end CreateWindowGL;
procedure DestroyWindowGL is
begin
SDL.SDL_Quit;
end DestroyWindowGL;
procedure PollEvents is
Event : aliased SDL.Events.Event;
begin
while SDL.Events.PollEvent(Event'Unchecked_Access) /= 0 loop
case Event.the_type is
when SDL.Events.QUIT =>
Put_Line("Quitting...");
Example.SetQuit(True);
when SDL.Events.KEYDOWN =>
Example.SetKey(Event.Key.Keysym.sym, True);
when SDL.Events.KEYUP =>
Example.SetKey(Event.Key.Keysym.sym, False);
when SDL.Events.VIDEORESIZE =>
Example.SetSurface(SDL.Video.SetVideoMode(Event.Resize.w, Event.Resize.h, C.int(Example.GetBitsPerPixel), VideoFlags));
ReshapeGL(GL.GLint(Event.Resize.w), GL.GLint(Event.Resize.h));
when SDL.Events.ISACTIVEEVENT =>
if Event.Active.Gain = 0 then
Example.SetActive(False);
else
Example.SetActive(True);
end if;
when others =>
null;
end case;
end loop;
end PollEvents;
package Float_InOut is new Text_IO.Float_IO(Float);
use Float_InOut;
begin
CreateWindowGL(Result);
Example.PrintGLInfo;
Example.PrintUsage;
if Result = True then
if Example.Initialise = True then
while Example.Quit = False loop
PollEvents;
if Example.IsActive = True then
--TickCount := Integer(SDL.Timer.GetTicks);
Example.Update;--(TickCount);
--Example.SetLastTickCount(TickCount);
Example.Draw;
Example.CalculateFPS;
SDL.Video.GL_SwapBuffers;
end if;
end loop;
Example.Uninitialise;
end if;
DestroyWindowGL;
end if;
end CVA;
|
-- Auto generated file. Don't edit
-- Read copyright and license at the end of this file
package Encodings.Maps.CP_1257 is
function Decode (Char : Character) return Wide_Character;
pragma Inline (Decode);
procedure Encode
(Text : in Wide_String;
Text_Last : out Natural;
Result : out Raw_String;
Result_Last : out Natural;
Map : in Encoding := Encodings.CP_1257);
procedure Decode
(Text : in Raw_String;
Text_Last : out Natural;
Result : out Wide_String;
Result_Last : out Natural;
Map : in Encoding := Encodings.CP_1257);
end Encodings.Maps.CP_1257;
------------------------------------------------------------------------------
-- Copyright (c) 2006-2013, Maxim Reznik
-- All rights reserved.
--
-- Redistribution and use in source and binary forms, with or without
-- modification, are permitted provided that the following conditions are met:
--
-- * Redistributions of source code must retain the above copyright notice,
-- this list of conditions and the following disclaimer.
-- * Redistributions in binary form must reproduce the above copyright
-- notice, this list of conditions and the following disclaimer in the
-- documentation and/or other materials provided with the distribution.
-- * Neither the name of the Maxim Reznik, IE nor the names of its
-- contributors may be used to endorse or promote products derived from
-- this software without specific prior written permission.
--
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
-- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-- POSSIBILITY OF SUCH DAMAGE.
------------------------------------------------------------------------------
|
<?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>reduce_1</name>
<ret_bitwidth>18</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>x_0_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>x[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</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>x_1_V_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x[1].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</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>x_2_V_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x[2].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</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>x_3_V_read</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>x[3].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</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>34</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>5</id>
<name>x_3_V_read_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>62</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</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>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>62</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x[3].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>49</item>
<item>50</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="_6">
<Value>
<Obj>
<type>0</type>
<id>6</id>
<name>x_2_V_read_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>62</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>62</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x[2].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>51</item>
<item>52</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="_7">
<Value>
<Obj>
<type>0</type>
<id>7</id>
<name>x_1_V_read_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>62</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>62</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x[1].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>53</item>
<item>54</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="_8">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>x_0_V_read_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>62</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>62</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>55</item>
<item>56</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="_9">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</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>57</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>p_Val2_9</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>59</item>
<item>60</item>
<item>61</item>
<item>62</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>p_Val2_s</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>left[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>63</item>
<item>64</item>
<item>65</item>
<item>66</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>7</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>i</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>exitcond2</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</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>72</item>
<item>74</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.95</m_delay>
<m_topoIndex>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>i_5</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>75</item>
<item>77</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.56</m_delay>
<m_topoIndex>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</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>78</item>
<item>79</item>
<item>80</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>cond</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</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>82</item>
<item>83</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.95</m_delay>
<m_topoIndex>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>left_1_V</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>84</item>
<item>85</item>
<item>86</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.75</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>tmp_20</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>14</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>left_0_V</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>left[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>88</item>
<item>89</item>
<item>90</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.75</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>left_0_V_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>75</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>75</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>left[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>91</item>
<item>92</item>
<item>93</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.75</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>74</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>74</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>94</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>17</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</oprand_edges>
<opcode>br</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.76</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>p_Val2_10</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>right[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>95</item>
<item>96</item>
<item>97</item>
<item>98</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>19</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>p_Val2_1</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>right[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>99</item>
<item>100</item>
<item>101</item>
<item>102</item>
</oprand_edges>
<opcode>phi</opcode>
<m_Display>0</m_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="_25">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>i2</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>103</item>
<item>104</item>
<item>105</item>
<item>106</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>21</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>exitcond</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</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>107</item>
<item>108</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.95</m_delay>
<m_topoIndex>22</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>i_6</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>i</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>109</item>
<item>110</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.56</m_delay>
<m_topoIndex>23</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</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>111</item>
<item>112</item>
<item>113</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>24</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>cond1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</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>114</item>
<item>115</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.95</m_delay>
<m_topoIndex>25</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>right_1_V</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x[2].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>116</item>
<item>117</item>
<item>118</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.75</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>tmp_21</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>119</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>27</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>right_0_V</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>right[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>120</item>
<item>121</item>
<item>122</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.75</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>right_0_V_1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>78</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>78</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>right[0].V</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>18</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>123</item>
<item>124</item>
<item>125</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.75</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>77</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>77</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>126</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>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>tmp</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>88</lineNumber>
<contextFuncName>operator()</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>operator()</second>
</first>
<second>88</second>
</item>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</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>127</item>
<item>128</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>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>tmp1</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>88</lineNumber>
<contextFuncName>operator()</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>operator()</second>
</first>
<second>88</second>
</item>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</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>129</item>
<item>130</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.13</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>agg_result_i</name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>88</lineNumber>
<contextFuncName>operator()</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>operator()</second>
</first>
<second>88</second>
</item>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</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>131</item>
<item>132</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.96</m_delay>
<m_topoIndex>33</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name></name>
<fileName>firmware/nnet_utils/nnet_common.h</fileName>
<fileDirectory>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</fileDirectory>
<lineNumber>80</lineNumber>
<contextFuncName>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/filipe/MEGA/GitHub/nas-hls4ml/model_multistart/0/hls4ml_prj</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>firmware/nnet_utils/nnet_common.h</first>
<second>reduce&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt;, 4, nnet::Op_add&lt;ap_fixed&lt;18, 8, 5, 3, 0&gt; &gt; &gt;</second>
</first>
<second>80</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>133</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>34</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="_39">
<Value>
<Obj>
<type>2</type>
<id>58</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>4</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_40">
<Value>
<Obj>
<type>2</type>
<id>67</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_41">
<Value>
<Obj>
<type>2</type>
<id>73</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_42">
<Value>
<Obj>
<type>2</type>
<id>76</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
</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="_43">
<Obj>
<type>3</type>
<id>10</id>
<name>arrayctor.loop1.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>5</count>
<item_version>0</item_version>
<item>5</item>
<item>6</item>
<item>7</item>
<item>8</item>
<item>9</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_44">
<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>6</count>
<item_version>0</item_version>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>16</item>
<item>17</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_45">
<Obj>
<type>3</type>
<id>25</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</item>
<item>24</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_46">
<Obj>
<type>3</type>
<id>27</id>
<name>.preheader.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_47">
<Obj>
<type>3</type>
<id>35</id>
<name>.preheader</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>28</item>
<item>29</item>
<item>30</item>
<item>31</item>
<item>33</item>
<item>34</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_48">
<Obj>
<type>3</type>
<id>42</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>36</item>
<item>37</item>
<item>38</item>
<item>39</item>
<item>40</item>
<item>41</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_49">
<Obj>
<type>3</type>
<id>47</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>4</count>
<item_version>0</item_version>
<item>43</item>
<item>44</item>
<item>45</item>
<item>46</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>85</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_50">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>5</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_51">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>6</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_52">
<id>54</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>7</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_53">
<id>56</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_54">
<id>57</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_55">
<id>59</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_56">
<id>60</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_57">
<id>61</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_58">
<id>62</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_59">
<id>63</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_60">
<id>64</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_61">
<id>65</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_62">
<id>66</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_63">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_64">
<id>69</id>
<edge_type>2</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="_65">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_66">
<id>71</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_67">
<id>72</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="_68">
<id>74</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_69">
<id>75</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="_70">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_71">
<id>78</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="_72">
<id>79</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_73">
<id>80</id>
<edge_type>2</edge_type>
<source_obj>27</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_74">
<id>81</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_75">
<id>82</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_76">
<id>83</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_77">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_78">
<id>85</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_79">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>7</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_80">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>21</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_81">
<id>88</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_82">
<id>89</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="_83">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_84">
<id>91</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="_85">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_86">
<id>93</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="_87">
<id>94</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_88">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_89">
<id>96</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_90">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_91">
<id>98</id>
<edge_type>2</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="_92">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_93">
<id>100</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_94">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_95">
<id>102</id>
<edge_type>2</edge_type>
<source_obj>27</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_96">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_97">
<id>104</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_98">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_99">
<id>106</id>
<edge_type>2</edge_type>
<source_obj>27</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_100">
<id>107</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="_101">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_102">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_103">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_104">
<id>111</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="_105">
<id>112</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_106">
<id>113</id>
<edge_type>2</edge_type>
<source_obj>47</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_107">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_108">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>36</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_109">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_110">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>6</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_111">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>5</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_112">
<id>119</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_113">
<id>120</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="_114">
<id>121</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="_115">
<id>122</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>39</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_116">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_117">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_118">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_119">
<id>126</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_120">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_121">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_122">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_123">
<id>130</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_124">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_125">
<id>132</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="_126">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_127">
<id>144</id>
<edge_type>2</edge_type>
<source_obj>10</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_128">
<id>145</id>
<edge_type>2</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="_129">
<id>146</id>
<edge_type>2</edge_type>
<source_obj>18</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_130">
<id>147</id>
<edge_type>2</edge_type>
<source_obj>25</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
<item class_id_reference="20" object_id="_131">
<id>148</id>
<edge_type>2</edge_type>
<source_obj>27</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_132">
<id>149</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_133">
<id>150</id>
<edge_type>2</edge_type>
<source_obj>35</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_134">
<id>151</id>
<edge_type>2</edge_type>
<source_obj>42</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>1</is_back_edge>
</item>
</edges>
</cdfg>
<cdfg_regions class_id="21" tracking_level="0" version="0">
<count>6</count>
<item_version>0</item_version>
<item class_id="22" tracking_level="1" version="0" object_id="_135">
<mId>1</mId>
<mTag>reduce.1</mTag>
<mType>0</mType>
<sub_regions>
<count>5</count>
<item_version>0</item_version>
<item>2</item>
<item>3</item>
<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>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>7</mMinLatency>
<mMaxLatency>7</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_136">
<mId>2</mId>
<mTag>Entry</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_137">
<mId>3</mId>
<mTag>Loop 1</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>18</item>
<item>25</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>2</mMinTripCount>
<mMaxTripCount>2</mMaxTripCount>
<mMinLatency>2</mMinLatency>
<mMaxLatency>2</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_138">
<mId>4</mId>
<mTag>Region 1</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>0</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_139">
<mId>5</mId>
<mTag>Loop 2</mTag>
<mType>1</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>35</item>
<item>42</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>2</mMinTripCount>
<mMaxTripCount>2</mMaxTripCount>
<mMinLatency>2</mMinLatency>
<mMaxLatency>2</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_140">
<mId>6</mId>
<mTag>Return</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>1</mMinLatency>
<mMaxLatency>1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="-1"></res>
<node_label_latency class_id="26" tracking_level="0" version="0">
<count>34</count>
<item_version>0</item_version>
<item class_id="27" tracking_level="0" version="0">
<first>5</first>
<second class_id="28" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>6</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>7</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>8</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>14</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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</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>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>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>43</first>
<second>
<first>3</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>3</first>
<second>0</second>
</second>
</item>
<item>
<first>46</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="29" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="30" tracking_level="0" version="0">
<first>10</first>
<second class_id="31" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>2</first>
<second>3</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>
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Web Framework --
-- --
-- Web API Definition --
-- --
------------------------------------------------------------------------------
-- --
-- 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 WebAPI.DOM.Child_Nodes;
package WebAPI.DOM.Document_Types is
pragma Preelaborate;
type Document_Type is limited interface
and WebAPI.DOM.Child_Nodes.Child_Node;
type Document_Type_Access is access all Document_Type'Class
with Storage_Size => 0;
end WebAPI.DOM.Document_Types;
|
with
lace.Strings.search;
package body lace.Strings.superbounded
is
use ada.Strings.Maps;
------------
-- Concat --
------------
function Concat
(Left : Super_String;
Right : Super_String) return Super_String
is
begin
return Result : Super_String (Left.Max_Length) do
declare
Llen : constant Natural := Left.Current_Length;
Rlen : constant Natural := Right.Current_Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen > Left.Max_Length then
raise Ada.Strings.Length_Error;
end if;
Result.Current_Length := Nlen;
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen);
end;
end return;
end Concat;
function Concat
(Left : Super_String;
Right : String) return Super_String
is
begin
return Result : Super_String (Left.Max_Length) do
declare
Llen : constant Natural := Left.Current_Length;
Nlen : constant Natural := Llen + Right'Length;
begin
if Nlen > Left.Max_Length then
raise Ada.Strings.Length_Error;
end if;
Result.Current_Length := Nlen;
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1 .. Nlen) := Right;
end;
end return;
end Concat;
function Concat
(Left : String;
Right : Super_String) return Super_String
is
begin
return Result : Super_String (Right.Max_Length) do
declare
Llen : constant Natural := Left'Length;
Rlen : constant Natural := Right.Current_Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen > Right.Max_Length then
raise Ada.Strings.Length_Error;
end if;
Result.Current_Length := Nlen;
Result.Data (1 .. Llen) := Left;
Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen);
end;
end return;
end Concat;
function Concat
(Left : Super_String;
Right : Character) return Super_String
is
begin
return Result : Super_String (Left.Max_Length) do
declare
Llen : constant Natural := Left.Current_Length;
begin
if Llen = Left.Max_Length then
raise Ada.Strings.Length_Error;
end if;
Result.Current_Length := Llen + 1;
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Result.Current_Length) := Right;
end;
end return;
end Concat;
function Concat
(Left : Character;
Right : Super_String) return Super_String
is
begin
return Result : Super_String (Right.Max_Length) do
declare
Rlen : constant Natural := Right.Current_Length;
begin
if Rlen = Right.Max_Length then
raise Ada.Strings.Length_Error;
end if;
Result.Current_Length := Rlen + 1;
Result.Data (1) := Left;
Result.Data (2 .. Result.Current_Length) :=
Right.Data (1 .. Rlen);
end;
end return;
end Concat;
-----------
-- Equal --
-----------
overriding
function "="
(Left : Super_String;
Right : Super_String) return Boolean
is
begin
return Left.Current_Length = Right.Current_Length
and then Left.Data (1 .. Left.Current_Length) =
Right.Data (1 .. Right.Current_Length);
end "=";
function Equal
(Left : Super_String;
Right : String) return Boolean
is
begin
return Left.Current_Length = Right'Length
and then Left.Data (1 .. Left.Current_Length) = Right;
end Equal;
function Equal
(Left : String;
Right : Super_String) return Boolean
is
begin
return Left'Length = Right.Current_Length
and then Left = Right.Data (1 .. Right.Current_Length);
end Equal;
-------------
-- Greater --
-------------
function Greater
(Left : Super_String;
Right : Super_String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) >
Right.Data (1 .. Right.Current_Length);
end Greater;
function Greater
(Left : Super_String;
Right : String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) > Right;
end Greater;
function Greater
(Left : String;
Right : Super_String) return Boolean
is
begin
return Left > Right.Data (1 .. Right.Current_Length);
end Greater;
----------------------
-- Greater_Or_Equal --
----------------------
function Greater_Or_Equal
(Left : Super_String;
Right : Super_String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) >=
Right.Data (1 .. Right.Current_Length);
end Greater_Or_Equal;
function Greater_Or_Equal
(Left : Super_String;
Right : String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) >= Right;
end Greater_Or_Equal;
function Greater_Or_Equal
(Left : String;
Right : Super_String) return Boolean
is
begin
return Left >= Right.Data (1 .. Right.Current_Length);
end Greater_Or_Equal;
----------
-- Less --
----------
function Less
(Left : Super_String;
Right : Super_String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) <
Right.Data (1 .. Right.Current_Length);
end Less;
function Less
(Left : Super_String;
Right : String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) < Right;
end Less;
function Less
(Left : String;
Right : Super_String) return Boolean
is
begin
return Left < Right.Data (1 .. Right.Current_Length);
end Less;
-------------------
-- Less_Or_Equal --
-------------------
function Less_Or_Equal
(Left : Super_String;
Right : Super_String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) <=
Right.Data (1 .. Right.Current_Length);
end Less_Or_Equal;
function Less_Or_Equal
(Left : Super_String;
Right : String) return Boolean
is
begin
return Left.Data (1 .. Left.Current_Length) <= Right;
end Less_Or_Equal;
function Less_Or_Equal
(Left : String;
Right : Super_String) return Boolean
is
begin
return Left <= Right.Data (1 .. Right.Current_Length);
end Less_Or_Equal;
----------------------
-- Set_Super_String --
----------------------
procedure Set_Super_String
(Target : out Super_String;
Source : String;
Drop : Truncation := Error)
is
Slen : constant Natural := Source'Length;
Max_Length : constant Positive := Target.Max_Length;
begin
if Slen <= Max_Length then
Target.Current_Length := Slen;
Target.Data (1 .. Slen) := Source;
else
case Drop is
when ada.Strings.Right =>
Target.Current_Length := Max_Length;
Target.Data (1 .. Max_Length) :=
Source (Source'First .. Source'First - 1 + Max_Length);
when ada.Strings.Left =>
Target.Current_Length := Max_Length;
Target.Data (1 .. Max_Length) :=
Source (Source'Last - (Max_Length - 1) .. Source'Last);
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Set_Super_String;
------------------
-- Super_Append --
------------------
-- Case of Super_String and Super_String
function Super_Append
(Left : Super_String;
Right : Super_String;
Drop : Truncation := Error) return Super_String
is
Max_Length : constant Positive := Left.Max_Length;
Result : Super_String (Max_Length);
Llen : constant Natural := Left.Current_Length;
Rlen : constant Natural := Right.Current_Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen <= Max_Length then
Result.Current_Length := Nlen;
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1 .. Nlen) := Right.Data (1 .. Rlen);
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Llen >= Max_Length then -- only case is Llen = Max_Length
Result.Data := Left.Data;
else
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1 .. Max_Length) :=
Right.Data (1 .. Max_Length - Llen);
end if;
when ada.Strings.Left =>
if Rlen >= Max_Length then -- only case is Rlen = Max_Length
Result.Data := Right.Data;
else
Result.Data (1 .. Max_Length - Rlen) :=
Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen);
Result.Data (Max_Length - Rlen + 1 .. Max_Length) :=
Right.Data (1 .. Rlen);
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Append;
procedure Super_Append
(Source : in out Super_String;
New_Item : Super_String;
Drop : Truncation := Error)
is
Max_Length : constant Positive := Source.Max_Length;
Llen : constant Natural := Source.Current_Length;
Rlen : constant Natural := New_Item.Current_Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen <= Max_Length then
Source.Current_Length := Nlen;
Source.Data (Llen + 1 .. Nlen) := New_Item.Data (1 .. Rlen);
else
Source.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Llen < Max_Length then
Source.Data (Llen + 1 .. Max_Length) :=
New_Item.Data (1 .. Max_Length - Llen);
end if;
when ada.Strings.Left =>
if Rlen >= Max_Length then -- only case is Rlen = Max_Length
Source.Data := New_Item.Data;
else
Source.Data (1 .. Max_Length - Rlen) :=
Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen);
Source.Data (Max_Length - Rlen + 1 .. Max_Length) :=
New_Item.Data (1 .. Rlen);
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Append;
-- Case of Super_String and String
function Super_Append
(Left : Super_String;
Right : String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Left.Max_Length;
Result : Super_String (Max_Length);
Llen : constant Natural := Left.Current_Length;
Rlen : constant Natural := Right'Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen <= Max_Length then
Result.Current_Length := Nlen;
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1 .. Nlen) := Right;
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Llen >= Max_Length then -- only case is Llen = Max_Length
Result.Data := Left.Data;
else
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1 .. Max_Length) :=
Right (Right'First .. Right'First - 1 +
Max_Length - Llen);
end if;
when ada.Strings.Left =>
if Rlen >= Max_Length then
Result.Data (1 .. Max_Length) :=
Right (Right'Last - (Max_Length - 1) .. Right'Last);
else
Result.Data (1 .. Max_Length - Rlen) :=
Left.Data (Llen - (Max_Length - Rlen - 1) .. Llen);
Result.Data (Max_Length - Rlen + 1 .. Max_Length) :=
Right;
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Append;
procedure Super_Append
(Source : in out Super_String;
New_Item : String;
Drop : Truncation := Error)
is
Max_Length : constant Positive := Source.Max_Length;
Llen : constant Natural := Source.Current_Length;
Rlen : constant Natural := New_Item'Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen <= Max_Length then
Source.Current_Length := Nlen;
Source.Data (Llen + 1 .. Nlen) := New_Item;
else
Source.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Llen < Max_Length then
Source.Data (Llen + 1 .. Max_Length) :=
New_Item (New_Item'First ..
New_Item'First - 1 + Max_Length - Llen);
end if;
when ada.Strings.Left =>
if Rlen >= Max_Length then
Source.Data (1 .. Max_Length) :=
New_Item (New_Item'Last - (Max_Length - 1) ..
New_Item'Last);
else
Source.Data (1 .. Max_Length - Rlen) :=
Source.Data (Llen - (Max_Length - Rlen - 1) .. Llen);
Source.Data (Max_Length - Rlen + 1 .. Max_Length) :=
New_Item;
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Append;
-- Case of String and Super_String
function Super_Append
(Left : String;
Right : Super_String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Right.Max_Length;
Result : Super_String (Max_Length);
Llen : constant Natural := Left'Length;
Rlen : constant Natural := Right.Current_Length;
Nlen : constant Natural := Llen + Rlen;
begin
if Nlen <= Max_Length then
Result.Current_Length := Nlen;
Result.Data (1 .. Llen) := Left;
Result.Data (Llen + 1 .. Llen + Rlen) := Right.Data (1 .. Rlen);
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Llen >= Max_Length then
Result.Data (1 .. Max_Length) :=
Left (Left'First .. Left'First + (Max_Length - 1));
else
Result.Data (1 .. Llen) := Left;
Result.Data (Llen + 1 .. Max_Length) :=
Right.Data (1 .. Max_Length - Llen);
end if;
when ada.Strings.Left =>
if Rlen >= Max_Length then
Result.Data (1 .. Max_Length) :=
Right.Data (Rlen - (Max_Length - 1) .. Rlen);
else
Result.Data (1 .. Max_Length - Rlen) :=
Left (Left'Last - (Max_Length - Rlen - 1) .. Left'Last);
Result.Data (Max_Length - Rlen + 1 .. Max_Length) :=
Right.Data (1 .. Rlen);
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Append;
-- Case of Super_String and Character
function Super_Append
(Left : Super_String;
Right : Character;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Left.Max_Length;
Result : Super_String (Max_Length);
Llen : constant Natural := Left.Current_Length;
begin
if Llen < Max_Length then
Result.Current_Length := Llen + 1;
Result.Data (1 .. Llen) := Left.Data (1 .. Llen);
Result.Data (Llen + 1) := Right;
return Result;
else
case Drop is
when ada.Strings.Right =>
return Left;
when ada.Strings.Left =>
Result.Current_Length := Max_Length;
Result.Data (1 .. Max_Length - 1) :=
Left.Data (2 .. Max_Length);
Result.Data (Max_Length) := Right;
return Result;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Append;
procedure Super_Append
(Source : in out Super_String;
New_Item : Character;
Drop : Truncation := Error)
is
Max_Length : constant Positive := Source.Max_Length;
Llen : constant Natural := Source.Current_Length;
begin
if Llen < Max_Length then
Source.Current_Length := Llen + 1;
Source.Data (Llen + 1) := New_Item;
else
Source.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
null;
when ada.Strings.Left =>
Source.Data (1 .. Max_Length - 1) :=
Source.Data (2 .. Max_Length);
Source.Data (Max_Length) := New_Item;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Append;
-- Case of Character and Super_String
function Super_Append
(Left : Character;
Right : Super_String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Right.Max_Length;
Result : Super_String (Max_Length);
Rlen : constant Natural := Right.Current_Length;
begin
if Rlen < Max_Length then
Result.Current_Length := Rlen + 1;
Result.Data (1) := Left;
Result.Data (2 .. Rlen + 1) := Right.Data (1 .. Rlen);
return Result;
else
case Drop is
when ada.Strings.Right =>
Result.Current_Length := Max_Length;
Result.Data (1) := Left;
Result.Data (2 .. Max_Length) :=
Right.Data (1 .. Max_Length - 1);
return Result;
when ada.Strings.Left =>
return Right;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Append;
-----------------
-- Super_Count --
-----------------
function Super_Count
(Source : Super_String;
Pattern : String;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural
is
begin
return
Search.Count
(Source.Data (1 .. Source.Current_Length), Pattern, Mapping);
end Super_Count;
function Super_Count
(Source : Super_String;
Pattern : String;
Mapping : Maps.Character_Mapping_Function) return Natural
is
begin
return
Search.Count
(Source.Data (1 .. Source.Current_Length), Pattern, Mapping);
end Super_Count;
function Super_Count
(Source : Super_String;
Set : Maps.Character_Set) return Natural
is
begin
return Search.Count (Source.Data (1 .. Source.Current_Length), Set);
end Super_Count;
------------------
-- Super_Delete --
------------------
function Super_Delete
(Source : Super_String;
From : Positive;
Through : Natural) return Super_String
is
Result : Super_String (Source.Max_Length);
Slen : constant Natural := Source.Current_Length;
Num_Delete : constant Integer := Through - From + 1;
begin
if Num_Delete <= 0 then
return Source;
elsif From > Slen + 1 then
raise Ada.Strings.Index_Error;
elsif Through >= Slen then
Result.Current_Length := From - 1;
Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1);
return Result;
else
Result.Current_Length := Slen - Num_Delete;
Result.Data (1 .. From - 1) := Source.Data (1 .. From - 1);
Result.Data (From .. Result.Current_Length) :=
Source.Data (Through + 1 .. Slen);
return Result;
end if;
end Super_Delete;
procedure Super_Delete
(Source : in out Super_String;
From : Positive;
Through : Natural)
is
Slen : constant Natural := Source.Current_Length;
Num_Delete : constant Integer := Through - From + 1;
begin
if Num_Delete <= 0 then
return;
elsif From > Slen + 1 then
raise Ada.Strings.Index_Error;
elsif Through >= Slen then
Source.Current_Length := From - 1;
else
Source.Current_Length := Slen - Num_Delete;
Source.Data (From .. Source.Current_Length) :=
Source.Data (Through + 1 .. Slen);
end if;
end Super_Delete;
-------------------
-- Super_Element --
-------------------
function Super_Element
(Source : Super_String;
Index : Positive) return Character
is
begin
if Index <= Source.Current_Length then
return Source.Data (Index);
else
raise ada.Strings.Index_Error;
end if;
end Super_Element;
----------------------
-- Super_Find_Token --
----------------------
procedure Super_Find_Token
(Source : Super_String;
Set : Maps.Character_Set;
From : Positive;
Test : ada.Strings.Membership;
First : out Positive;
Last : out Natural)
is
begin
Search.Find_Token
(Source.Data (From .. Source.Current_Length), Set, Test, First, Last);
end Super_Find_Token;
procedure Super_Find_Token
(Source : Super_String;
Set : Maps.Character_Set;
Test : ada.Strings.Membership;
First : out Positive;
Last : out Natural)
is
begin
Search.Find_Token
(Source.Data (1 .. Source.Current_Length), Set, Test, First, Last);
end Super_Find_Token;
----------------
-- Super_Head --
----------------
function Super_Head
(Source : Super_String;
Count : Natural;
Pad : Character := Space;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Source.Max_Length;
Result : Super_String (Max_Length);
Slen : constant Natural := Source.Current_Length;
Npad : constant Integer := Count - Slen;
begin
if Npad <= 0 then
Result.Current_Length := Count;
Result.Data (1 .. Count) := Source.Data (1 .. Count);
elsif Count <= Max_Length then
Result.Current_Length := Count;
Result.Data (1 .. Slen) := Source.Data (1 .. Slen);
Result.Data (Slen + 1 .. Count) := (others => Pad);
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
Result.Data (1 .. Slen) := Source.Data (1 .. Slen);
Result.Data (Slen + 1 .. Max_Length) := (others => Pad);
when ada.Strings.Left =>
if Npad >= Max_Length then
Result.Data := (others => Pad);
else
Result.Data (1 .. Max_Length - Npad) :=
Source.Data (Count - Max_Length + 1 .. Slen);
Result.Data (Max_Length - Npad + 1 .. Max_Length) :=
(others => Pad);
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Head;
procedure Super_Head
(Source : in out Super_String;
Count : Natural;
Pad : Character := Space;
Drop : Truncation := Error)
is
Max_Length : constant Positive := Source.Max_Length;
Slen : constant Natural := Source.Current_Length;
Npad : constant Integer := Count - Slen;
Temp : String (1 .. Max_Length);
begin
if Npad <= 0 then
Source.Current_Length := Count;
elsif Count <= Max_Length then
Source.Current_Length := Count;
Source.Data (Slen + 1 .. Count) := (others => Pad);
else
Source.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
Source.Data (Slen + 1 .. Max_Length) := (others => Pad);
when ada.Strings.Left =>
if Npad > Max_Length then
Source.Data := (others => Pad);
else
Temp := Source.Data;
Source.Data (1 .. Max_Length - Npad) :=
Temp (Count - Max_Length + 1 .. Slen);
for J in Max_Length - Npad + 1 .. Max_Length loop
Source.Data (J) := Pad;
end loop;
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Head;
-----------------
-- Super_Index --
-----------------
function Super_Index
(Source : Super_String;
Pattern : String;
Going : ada.Strings.Direction := ada.Strings.Forward;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural
is
begin
return Search.Index
(Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping);
end Super_Index;
function Super_Index
(Source : Super_String;
Pattern : String;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping_Function) return Natural
is
begin
return Search.Index
(Source.Data (1 .. Source.Current_Length), Pattern, Going, Mapping);
end Super_Index;
function Super_Index
(Source : Super_String;
Set : Maps.Character_Set;
Test : ada.Strings.Membership := ada.Strings.Inside;
Going : ada.Strings.Direction := ada.Strings.Forward) return Natural
is
begin
return Search.Index
(Source.Data (1 .. Source.Current_Length), Set, Test, Going);
end Super_Index;
function Super_Index
(Source : Super_String;
Pattern : String;
From : Positive;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping := Maps.Identity) return Natural
is
begin
return Search.Index
(Source.Data (1 .. Source.Current_Length),
Pattern, From, Going, Mapping);
end Super_Index;
function Super_Index
(Source : Super_String;
Pattern : String;
From : Positive;
Going : Direction := Forward;
Mapping : Maps.Character_Mapping_Function) return Natural
is
begin
return Search.Index
(Source.Data (1 .. Source.Current_Length),
Pattern, From, Going, Mapping);
end Super_Index;
function Super_Index
(Source : Super_String;
Set : Maps.Character_Set;
From : Positive;
Test : Membership := Inside;
Going : Direction := Forward) return Natural
is
begin
return Search.Index
(Source.Data (1 .. Source.Current_Length), Set, From, Test, Going);
end Super_Index;
---------------------------
-- Super_Index_Non_Blank --
---------------------------
function Super_Index_Non_Blank
(Source : Super_String;
Going : ada.Strings.Direction := ada.Strings.Forward) return Natural
is
begin
return
Search.Index_Non_Blank
(Source.Data (1 .. Source.Current_Length), Going);
end Super_Index_Non_Blank;
function Super_Index_Non_Blank
(Source : Super_String;
From : Positive;
Going : Direction := Forward) return Natural
is
begin
return
Search.Index_Non_Blank
(Source.Data (1 .. Source.Current_Length), From, Going);
end Super_Index_Non_Blank;
------------------
-- Super_Insert --
------------------
function Super_Insert
(Source : Super_String;
Before : Positive;
New_Item : String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Source.Max_Length;
Result : Super_String (Max_Length);
Slen : constant Natural := Source.Current_Length;
Nlen : constant Natural := New_Item'Length;
Tlen : constant Natural := Slen + Nlen;
Blen : constant Natural := Before - 1;
Alen : constant Integer := Slen - Blen;
Droplen : constant Integer := Tlen - Max_Length;
-- Tlen is the length of the total string before possible truncation.
-- Blen, Alen are the lengths of the before and after pieces of the
-- source string.
begin
if Alen < 0 then
raise Ada.Strings.Index_Error;
elsif Droplen <= 0 then
Result.Current_Length := Tlen;
Result.Data (1 .. Blen) := Source.Data (1 .. Blen);
Result.Data (Before .. Before + Nlen - 1) := New_Item;
Result.Data (Before + Nlen .. Tlen) :=
Source.Data (Before .. Slen);
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
Result.Data (1 .. Blen) := Source.Data (1 .. Blen);
if Droplen > Alen then
Result.Data (Before .. Max_Length) :=
New_Item (New_Item'First
.. New_Item'First + Max_Length - Before);
else
Result.Data (Before .. Before + Nlen - 1) := New_Item;
Result.Data (Before + Nlen .. Max_Length) :=
Source.Data (Before .. Slen - Droplen);
end if;
when ada.Strings.Left =>
Result.Data (Max_Length - (Alen - 1) .. Max_Length) :=
Source.Data (Before .. Slen);
if Droplen >= Blen then
Result.Data (1 .. Max_Length - Alen) :=
New_Item (New_Item'Last - (Max_Length - Alen) + 1
.. New_Item'Last);
else
Result.Data
(Blen - Droplen + 1 .. Max_Length - Alen) :=
New_Item;
Result.Data (1 .. Blen - Droplen) :=
Source.Data (Droplen + 1 .. Blen);
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Insert;
procedure Super_Insert
(Source : in out Super_String;
Before : Positive;
New_Item : String;
Drop : ada.Strings.Truncation := ada.Strings.Error)
is
begin
-- We do a double copy here because this is one of the situations
-- in which we move data to the right, and at least at the moment,
-- GNAT is not handling such cases correctly ???
Source := Super_Insert (Source, Before, New_Item, Drop);
end Super_Insert;
------------------
-- Super_Length --
------------------
function Super_Length (Source : Super_String) return Natural is
begin
return Source.Current_Length;
end Super_Length;
---------------------
-- Super_Overwrite --
---------------------
function Super_Overwrite
(Source : Super_String;
Position : Positive;
New_Item : String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Source.Max_Length;
Result : Super_String (Max_Length);
Endpos : constant Natural := Position + New_Item'Length - 1;
Slen : constant Natural := Source.Current_Length;
Droplen : Natural;
begin
if Position > Slen + 1 then
raise Ada.Strings.Index_Error;
elsif New_Item'Length = 0 then
return Source;
elsif Endpos <= Slen then
Result.Current_Length := Source.Current_Length;
Result.Data (1 .. Slen) := Source.Data (1 .. Slen);
Result.Data (Position .. Endpos) := New_Item;
return Result;
elsif Endpos <= Max_Length then
Result.Current_Length := Endpos;
Result.Data (1 .. Position - 1) := Source.Data (1 .. Position - 1);
Result.Data (Position .. Endpos) := New_Item;
return Result;
else
Result.Current_Length := Max_Length;
Droplen := Endpos - Max_Length;
case Drop is
when ada.Strings.Right =>
Result.Data (1 .. Position - 1) :=
Source.Data (1 .. Position - 1);
Result.Data (Position .. Max_Length) :=
New_Item (New_Item'First .. New_Item'Last - Droplen);
return Result;
when ada.Strings.Left =>
if New_Item'Length >= Max_Length then
Result.Data (1 .. Max_Length) :=
New_Item (New_Item'Last - Max_Length + 1 ..
New_Item'Last);
return Result;
else
Result.Data (1 .. Max_Length - New_Item'Length) :=
Source.Data (Droplen + 1 .. Position - 1);
Result.Data
(Max_Length - New_Item'Length + 1 .. Max_Length) :=
New_Item;
return Result;
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Overwrite;
procedure Super_Overwrite
(Source : in out Super_String;
Position : Positive;
New_Item : String;
Drop : ada.Strings.Truncation := ada.Strings.Error)
is
Max_Length : constant Positive := Source.Max_Length;
Endpos : constant Positive := Position + New_Item'Length - 1;
Slen : constant Natural := Source.Current_Length;
Droplen : Natural;
begin
if Position > Slen + 1 then
raise Ada.Strings.Index_Error;
elsif Endpos <= Slen then
Source.Data (Position .. Endpos) := New_Item;
elsif Endpos <= Max_Length then
Source.Data (Position .. Endpos) := New_Item;
Source.Current_Length := Endpos;
else
Source.Current_Length := Max_Length;
Droplen := Endpos - Max_Length;
case Drop is
when ada.Strings.Right =>
Source.Data (Position .. Max_Length) :=
New_Item (New_Item'First .. New_Item'Last - Droplen);
when ada.Strings.Left =>
if New_Item'Length > Max_Length then
Source.Data (1 .. Max_Length) :=
New_Item (New_Item'Last - Max_Length + 1 ..
New_Item'Last);
else
Source.Data (1 .. Max_Length - New_Item'Length) :=
Source.Data (Droplen + 1 .. Position - 1);
Source.Data
(Max_Length - New_Item'Length + 1 .. Max_Length) :=
New_Item;
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Overwrite;
---------------------------
-- Super_Replace_Element --
---------------------------
procedure Super_Replace_Element
(Source : in out Super_String;
Index : Positive;
By : Character)
is
begin
if Index <= Source.Current_Length then
Source.Data (Index) := By;
else
raise Ada.Strings.Index_Error;
end if;
end Super_Replace_Element;
-------------------------
-- Super_Replace_Slice --
-------------------------
function Super_Replace_Slice
(Source : Super_String;
Low : Positive;
High : Natural;
By : String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Source.Max_Length;
Slen : constant Natural := Source.Current_Length;
begin
if Low > Slen + 1 then
raise ada.Strings.Index_Error;
elsif High < Low then
return Super_Insert (Source, Low, By, Drop);
else
declare
Blen : constant Natural := Natural'Max (0, Low - 1);
Alen : constant Natural := Natural'Max (0, Slen - High);
Tlen : constant Natural := Blen + By'Length + Alen;
Droplen : constant Integer := Tlen - Max_Length;
Result : Super_String (Max_Length);
-- Tlen is the total length of the result string before any
-- truncation. Blen and Alen are the lengths of the pieces
-- of the original string that end up in the result string
-- before and after the replaced slice.
begin
if Droplen <= 0 then
Result.Current_Length := Tlen;
Result.Data (1 .. Blen) := Source.Data (1 .. Blen);
Result.Data (Low .. Low + By'Length - 1) := By;
Result.Data (Low + By'Length .. Tlen) :=
Source.Data (High + 1 .. Slen);
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
Result.Data (1 .. Blen) := Source.Data (1 .. Blen);
if Droplen > Alen then
Result.Data (Low .. Max_Length) :=
By (By'First .. By'First + Max_Length - Low);
else
Result.Data (Low .. Low + By'Length - 1) := By;
Result.Data (Low + By'Length .. Max_Length) :=
Source.Data (High + 1 .. Slen - Droplen);
end if;
when ada.Strings.Left =>
Result.Data (Max_Length - (Alen - 1) .. Max_Length) :=
Source.Data (High + 1 .. Slen);
if Droplen >= Blen then
Result.Data (1 .. Max_Length - Alen) :=
By (By'Last - (Max_Length - Alen) + 1 .. By'Last);
else
Result.Data
(Blen - Droplen + 1 .. Max_Length - Alen) := By;
Result.Data (1 .. Blen - Droplen) :=
Source.Data (Droplen + 1 .. Blen);
end if;
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end;
end if;
end Super_Replace_Slice;
procedure Super_Replace_Slice
(Source : in out Super_String;
Low : Positive;
High : Natural;
By : String;
Drop : ada.Strings.Truncation := ada.Strings.Error)
is
begin
-- We do a double copy here because this is one of the situations
-- in which we move data to the right, and at least at the moment,
-- GNAT is not handling such cases correctly ???
Source := Super_Replace_Slice (Source, Low, High, By, Drop);
end Super_Replace_Slice;
---------------------
-- Super_Replicate --
---------------------
function Super_Replicate
(Count : Natural;
Item : Character;
Drop : Truncation := Error;
Max_Length : Positive) return Super_String
is
Result : Super_String (Max_Length);
begin
if Count <= Max_Length then
Result.Current_Length := Count;
elsif Drop = ada.Strings.Error then
raise Ada.Strings.Length_Error;
else
Result.Current_Length := Max_Length;
end if;
Result.Data (1 .. Result.Current_Length) := (others => Item);
return Result;
end Super_Replicate;
function Super_Replicate
(Count : Natural;
Item : String;
Drop : Truncation := Error;
Max_Length : Positive) return Super_String
is
Length : constant Integer := Count * Item'Length;
Result : Super_String (Max_Length);
Indx : Positive;
begin
if Length <= Max_Length then
Result.Current_Length := Length;
if Length > 0 then
Indx := 1;
for J in 1 .. Count loop
Result.Data (Indx .. Indx + Item'Length - 1) := Item;
Indx := Indx + Item'Length;
end loop;
end if;
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
Indx := 1;
while Indx + Item'Length <= Max_Length + 1 loop
Result.Data (Indx .. Indx + Item'Length - 1) := Item;
Indx := Indx + Item'Length;
end loop;
Result.Data (Indx .. Max_Length) :=
Item (Item'First .. Item'First + Max_Length - Indx);
when ada.Strings.Left =>
Indx := Max_Length;
while Indx - Item'Length >= 1 loop
Result.Data (Indx - (Item'Length - 1) .. Indx) := Item;
Indx := Indx - Item'Length;
end loop;
Result.Data (1 .. Indx) :=
Item (Item'Last - Indx + 1 .. Item'Last);
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Replicate;
function Super_Replicate
(Count : Natural;
Item : Super_String;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
begin
return
Super_Replicate
(Count,
Item.Data (1 .. Item.Current_Length),
Drop,
Item.Max_Length);
end Super_Replicate;
-----------------
-- Super_Slice --
-----------------
function Super_Slice
(Source : Super_String;
Low : Positive;
High : Natural) return String
is
begin
-- Note: test of High > Length is in accordance with AI95-00128
return R : String (Low .. High) do
if Low > Source.Current_Length + 1
or else High > Source.Current_Length
then
raise Index_Error;
end if;
R := Source.Data (Low .. High);
end return;
end Super_Slice;
function Super_Slice
(Source : Super_String;
Low : Positive;
High : Natural) return Super_String
is
begin
return Result : Super_String (Source.Max_Length) do
if Low > Source.Current_Length + 1
or else High > Source.Current_Length
then
raise Index_Error;
end if;
Result.Current_Length := High - Low + 1;
Result.Data (1 .. Result.Current_Length) := Source.Data (Low .. High);
end return;
end Super_Slice;
procedure Super_Slice
(Source : Super_String;
Target : out Super_String;
Low : Positive;
High : Natural)
is
begin
if Low > Source.Current_Length + 1
or else High > Source.Current_Length
then
raise Index_Error;
else
Target.Current_Length := High - Low + 1;
Target.Data (1 .. Target.Current_Length) := Source.Data (Low .. High);
end if;
end Super_Slice;
----------------
-- Super_Tail --
----------------
function Super_Tail
(Source : Super_String;
Count : Natural;
Pad : Character := Space;
Drop : ada.Strings.Truncation := ada.Strings.Error) return Super_String
is
Max_Length : constant Positive := Source.Max_Length;
Result : Super_String (Max_Length);
Slen : constant Natural := Source.Current_Length;
Npad : constant Integer := Count - Slen;
begin
if Npad <= 0 then
Result.Current_Length := Count;
Result.Data (1 .. Count) :=
Source.Data (Slen - (Count - 1) .. Slen);
elsif Count <= Max_Length then
Result.Current_Length := Count;
Result.Data (1 .. Npad) := (others => Pad);
Result.Data (Npad + 1 .. Count) := Source.Data (1 .. Slen);
else
Result.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Npad >= Max_Length then
Result.Data := (others => Pad);
else
Result.Data (1 .. Npad) := (others => Pad);
Result.Data (Npad + 1 .. Max_Length) :=
Source.Data (1 .. Max_Length - Npad);
end if;
when ada.Strings.Left =>
Result.Data (1 .. Max_Length - Slen) := (others => Pad);
Result.Data (Max_Length - Slen + 1 .. Max_Length) :=
Source.Data (1 .. Slen);
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end Super_Tail;
procedure Super_Tail
(Source : in out Super_String;
Count : Natural;
Pad : Character := Space;
Drop : Truncation := Error)
is
Max_Length : constant Positive := Source.Max_Length;
Slen : constant Natural := Source.Current_Length;
Npad : constant Integer := Count - Slen;
Temp : constant String (1 .. Max_Length) := Source.Data;
begin
if Npad <= 0 then
Source.Current_Length := Count;
Source.Data (1 .. Count) :=
Temp (Slen - (Count - 1) .. Slen);
elsif Count <= Max_Length then
Source.Current_Length := Count;
Source.Data (1 .. Npad) := (others => Pad);
Source.Data (Npad + 1 .. Count) := Temp (1 .. Slen);
else
Source.Current_Length := Max_Length;
case Drop is
when ada.Strings.Right =>
if Npad >= Max_Length then
Source.Data := (others => Pad);
else
Source.Data (1 .. Npad) := (others => Pad);
Source.Data (Npad + 1 .. Max_Length) :=
Temp (1 .. Max_Length - Npad);
end if;
when ada.Strings.Left =>
for J in 1 .. Max_Length - Slen loop
Source.Data (J) := Pad;
end loop;
Source.Data (Max_Length - Slen + 1 .. Max_Length) :=
Temp (1 .. Slen);
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
end Super_Tail;
---------------------
-- Super_To_String --
---------------------
function Super_To_String (Source : Super_String) return String is
begin
return R : String (1 .. Source.Current_Length) do
R := Source.Data (1 .. Source.Current_Length);
end return;
end Super_To_String;
---------------------
-- Super_Translate --
---------------------
function Super_Translate
(Source : Super_String;
Mapping : Maps.Character_Mapping) return Super_String
is
Result : Super_String (Source.Max_Length);
begin
Result.Current_Length := Source.Current_Length;
for J in 1 .. Source.Current_Length loop
Result.Data (J) := Value (Mapping, Source.Data (J));
end loop;
return Result;
end Super_Translate;
procedure Super_Translate
(Source : in out Super_String;
Mapping : Maps.Character_Mapping)
is
begin
for J in 1 .. Source.Current_Length loop
Source.Data (J) := Value (Mapping, Source.Data (J));
end loop;
end Super_Translate;
function Super_Translate
(Source : Super_String;
Mapping : Maps.Character_Mapping_Function) return Super_String
is
Result : Super_String (Source.Max_Length);
begin
Result.Current_Length := Source.Current_Length;
for J in 1 .. Source.Current_Length loop
Result.Data (J) := Mapping.all (Source.Data (J));
end loop;
return Result;
end Super_Translate;
procedure Super_Translate
(Source : in out Super_String;
Mapping : Maps.Character_Mapping_Function)
is
begin
for J in 1 .. Source.Current_Length loop
Source.Data (J) := Mapping.all (Source.Data (J));
end loop;
end Super_Translate;
----------------
-- Super_Trim --
----------------
function Super_Trim
(Source : Super_String;
Side : Trim_End) return Super_String
is
Result : Super_String (Source.Max_Length);
Last : Natural := Source.Current_Length;
First : Positive := 1;
begin
if Side = Left or else Side = Both then
while First <= Last and then Source.Data (First) = ' ' loop
First := First + 1;
end loop;
end if;
if Side = Right or else Side = Both then
while Last >= First and then Source.Data (Last) = ' ' loop
Last := Last - 1;
end loop;
end if;
Result.Current_Length := Last - First + 1;
Result.Data (1 .. Result.Current_Length) := Source.Data (First .. Last);
return Result;
end Super_Trim;
procedure Super_Trim
(Source : in out Super_String;
Side : Trim_End)
is
Max_Length : constant Positive := Source.Max_Length;
Last : Natural := Source.Current_Length;
First : Positive := 1;
Temp : String (1 .. Max_Length);
begin
Temp (1 .. Last) := Source.Data (1 .. Last);
if Side = Left or else Side = Both then
while First <= Last and then Temp (First) = ' ' loop
First := First + 1;
end loop;
end if;
if Side = Right or else Side = Both then
while Last >= First and then Temp (Last) = ' ' loop
Last := Last - 1;
end loop;
end if;
Source.Data := (others => ASCII.NUL);
Source.Current_Length := Last - First + 1;
Source.Data (1 .. Source.Current_Length) := Temp (First .. Last);
end Super_Trim;
function Super_Trim
(Source : Super_String;
Left : Maps.Character_Set;
Right : Maps.Character_Set) return Super_String
is
Result : Super_String (Source.Max_Length);
begin
for First in 1 .. Source.Current_Length loop
if not Is_In (Source.Data (First), Left) then
for Last in reverse First .. Source.Current_Length loop
if not Is_In (Source.Data (Last), Right) then
Result.Current_Length := Last - First + 1;
Result.Data (1 .. Result.Current_Length) :=
Source.Data (First .. Last);
return Result;
end if;
end loop;
end if;
end loop;
Result.Current_Length := 0;
return Result;
end Super_Trim;
procedure Super_Trim
(Source : in out Super_String;
Left : Maps.Character_Set;
Right : Maps.Character_Set)
is
begin
for First in 1 .. Source.Current_Length loop
if not Is_In (Source.Data (First), Left) then
for Last in reverse First .. Source.Current_Length loop
if not Is_In (Source.Data (Last), Right) then
if First = 1 then
Source.Current_Length := Last;
return;
else
Source.Current_Length := Last - First + 1;
Source.Data (1 .. Source.Current_Length) :=
Source.Data (First .. Last);
for J in Source.Current_Length + 1 ..
Source.Max_Length
loop
Source.Data (J) := ASCII.NUL;
end loop;
return;
end if;
end if;
end loop;
Source.Current_Length := 0;
return;
end if;
end loop;
Source.Current_Length := 0;
end Super_Trim;
-----------
-- Times --
-----------
function Times
(Left : Natural;
Right : Character;
Max_Length : Positive) return Super_String
is
Result : Super_String (Max_Length);
begin
if Left > Max_Length then
raise Ada.Strings.Length_Error;
else
Result.Current_Length := Left;
for J in 1 .. Left loop
Result.Data (J) := Right;
end loop;
end if;
return Result;
end Times;
function Times
(Left : Natural;
Right : String;
Max_Length : Positive) return Super_String
is
Result : Super_String (Max_Length);
Pos : Positive := 1;
Rlen : constant Natural := Right'Length;
Nlen : constant Natural := Left * Rlen;
begin
if Nlen > Max_Length then
raise Ada.Strings.Index_Error;
else
Result.Current_Length := Nlen;
if Nlen > 0 then
for J in 1 .. Left loop
Result.Data (Pos .. Pos + Rlen - 1) := Right;
Pos := Pos + Rlen;
end loop;
end if;
end if;
return Result;
end Times;
function Times
(Left : Natural;
Right : Super_String) return Super_String
is
Result : Super_String (Right.Max_Length);
Pos : Positive := 1;
Rlen : constant Natural := Right.Current_Length;
Nlen : constant Natural := Left * Rlen;
begin
if Nlen > Right.Max_Length then
raise Ada.Strings.Length_Error;
else
Result.Current_Length := Nlen;
if Nlen > 0 then
for J in 1 .. Left loop
Result.Data (Pos .. Pos + Rlen - 1) :=
Right.Data (1 .. Rlen);
Pos := Pos + Rlen;
end loop;
end if;
end if;
return Result;
end Times;
---------------------
-- To_Super_String --
---------------------
function To_Super_String
(Source : String;
Max_Length : Natural;
Drop : Truncation := Error) return Super_String
is
Result : Super_String (Max_Length);
Slen : constant Natural := Source'Length;
begin
if Slen <= Max_Length then
Result.Current_Length := Slen;
Result.Data (1 .. Slen) := Source;
else
case Drop is
when ada.Strings.Right =>
Result.Current_Length := Max_Length;
Result.Data (1 .. Max_Length) :=
Source (Source'First .. Source'First - 1 + Max_Length);
when ada.Strings.Left =>
Result.Current_Length := Max_Length;
Result.Data (1 .. Max_Length) :=
Source (Source'Last - (Max_Length - 1) .. Source'Last);
when ada.Strings.Error =>
raise Ada.Strings.Length_Error;
end case;
end if;
return Result;
end To_Super_String;
end lace.Strings.superbounded;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- G N A T M E M --
-- --
-- B o d y --
-- --
-- Copyright (C) 1997-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. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- GNATMEM is a utility that tracks memory leaks. It is based on a simple
-- idea:
-- - Read the allocation log generated by the application linked using
-- instrumented memory allocation and dealocation (see memtrack.adb for
-- this circuitry). To get access to this functionality, the application
-- must be relinked with library libgmem.a:
-- $ gnatmake my_prog -largs -lgmem
-- The running my_prog will produce a file named gmem.out that will be
-- parsed by gnatmem.
-- - Record a reference to the allocated memory on each allocation call
-- - Suppress this reference on deallocation
-- - At the end of the program, remaining references are potential leaks.
-- sort them out the best possible way in order to locate the root of
-- the leak.
-- This capability is not supported on all platforms, please refer to
-- memtrack.adb for further information.
-- In order to help finding out the real leaks, the notion of "allocation
-- root" is defined. An allocation root is a specific point in the program
-- execution generating memory allocation where data is collected (such as
-- number of allocations, amount of memory allocated, high water mark, etc.)
with Gnatvsn; use Gnatvsn;
with Ada.Text_IO; use Ada.Text_IO;
with Ada.Float_Text_IO;
with Ada.Integer_Text_IO;
with GNAT.Command_Line; use GNAT.Command_Line;
with GNAT.Heap_Sort_G;
with GNAT.OS_Lib; use GNAT.OS_Lib;
with GNAT.HTable; use GNAT.HTable;
with System; use System;
with System.Storage_Elements; use System.Storage_Elements;
with Memroot; use Memroot;
procedure Gnatmem is
------------------------
-- Other Declarations --
------------------------
type Storage_Elmt is record
Elmt : Character;
-- * = End of log file
-- A = found a ALLOC mark in the log
-- D = found a DEALL mark in the log
Address : Integer_Address;
Size : Storage_Count;
end record;
-- This needs a comment ???
Log_Name, Program_Name : String_Access;
-- These need comments, and should be on separate lines ???
function Read_Next return Storage_Elmt;
-- Reads next dynamic storage operation from the log file
function Mem_Image (X : Storage_Count) return String;
-- X is a size in storage_element. Returns a value
-- in Megabytes, Kilobytes or Bytes as appropriate.
procedure Process_Arguments;
-- Read command line arguments
procedure Usage;
-- Prints out the option help
function Gmem_Initialize (Dumpname : String) return Boolean;
-- Opens the file represented by Dumpname and prepares it for
-- work. Returns False if the file does not have the correct format, True
-- otherwise.
procedure Gmem_A2l_Initialize (Exename : String);
-- Initialises the convert_addresses interface by supplying it with
-- the name of the executable file Exename
-----------------------------------
-- HTable address --> Allocation --
-----------------------------------
type Allocation is record
Root : Root_Id;
Size : Storage_Count;
end record;
type Address_Range is range 0 .. 4097;
function H (A : Integer_Address) return Address_Range;
No_Alloc : constant Allocation := (No_Root_Id, 0);
package Address_HTable is new GNAT.HTable.Simple_HTable (
Header_Num => Address_Range,
Element => Allocation,
No_Element => No_Alloc,
Key => Integer_Address,
Hash => H,
Equal => "=");
BT_Depth : Integer := 1;
-- The following need comments ???
Global_Alloc_Size : Storage_Count := 0;
Global_High_Water_Mark : Storage_Count := 0;
Global_Nb_Alloc : Integer := 0;
Global_Nb_Dealloc : Integer := 0;
Nb_Root : Integer := 0;
Nb_Wrong_Deall : Integer := 0;
Minimum_NB_Leaks : Integer := 1;
Tmp_Alloc : Allocation;
Quiet_Mode : Boolean := False;
------------------------------
-- Allocation Roots Sorting --
------------------------------
Sort_Order : String (1 .. 3) := "nwh";
-- This is the default order in which sorting criteria will be applied
-- n - Total number of unfreed allocations
-- w - Final watermark
-- h - High watermark
--------------------------------
-- GMEM functionality binding --
--------------------------------
function Gmem_Initialize (Dumpname : String) return Boolean is
function Initialize (Dumpname : System.Address) return Boolean;
pragma Import (C, Initialize, "__gnat_gmem_initialize");
S : aliased String := Dumpname & ASCII.NUL;
begin
return Initialize (S'Address);
end Gmem_Initialize;
procedure Gmem_A2l_Initialize (Exename : String) is
procedure A2l_Initialize (Exename : System.Address);
pragma Import (C, A2l_Initialize, "__gnat_gmem_a2l_initialize");
S : aliased String := Exename & ASCII.NUL;
begin
A2l_Initialize (S'Address);
end Gmem_A2l_Initialize;
function Read_Next return Storage_Elmt is
procedure Read_Next (buf : System.Address);
pragma Import (C, Read_Next, "__gnat_gmem_read_next");
S : Storage_Elmt;
begin
Read_Next (S'Address);
return S;
end Read_Next;
-------
-- H --
-------
function H (A : Integer_Address) return Address_Range is
begin
return Address_Range (A mod Integer_Address (Address_Range'Last));
end H;
---------------
-- Mem_Image --
---------------
function Mem_Image (X : Storage_Count) return String is
Ks : constant Storage_Count := X / 1024;
Megs : constant Storage_Count := Ks / 1024;
Buff : String (1 .. 7);
begin
if Megs /= 0 then
Ada.Float_Text_IO.Put (Buff, Float (X) / 1024.0 / 1024.0, 2, 0);
return Buff & " Megabytes";
elsif Ks /= 0 then
Ada.Float_Text_IO.Put (Buff, Float (X) / 1024.0, 2, 0);
return Buff & " Kilobytes";
else
Ada.Integer_Text_IO.Put (Buff (1 .. 4), Integer (X));
return Buff (1 .. 4) & " Bytes";
end if;
end Mem_Image;
-----------
-- Usage --
-----------
procedure Usage is
begin
New_Line;
Put ("GNATMEM ");
Put_Line (Gnat_Version_String);
Put_Line ("Copyright 1997-2005, Free Software Foundation, Inc.");
New_Line;
Put_Line ("Usage: gnatmem switches [depth] exename");
New_Line;
Put_Line (" depth backtrace depth to take into account, default is"
& Integer'Image (BT_Depth));
Put_Line (" exename the name of the executable to be analyzed");
New_Line;
Put_Line ("Switches:");
Put_Line (" -b n same as depth parameter");
Put_Line (" -i file read the allocation log from specific file");
Put_Line (" default is gmem.out in the current directory");
Put_Line (" -m n masks roots with less than n leaks, default is 1");
Put_Line (" specify 0 to see even released allocation roots");
Put_Line (" -q quiet, minimum output");
Put_Line (" -s order sort allocation roots according to an order of");
Put_Line (" sort criteria");
GNAT.OS_Lib.OS_Exit (1);
end Usage;
-----------------------
-- Process_Arguments --
-----------------------
procedure Process_Arguments is
begin
-- Parse the options first
loop
case Getopt ("b: m: i: q s:") is
when ASCII.Nul => exit;
when 'b' =>
begin
BT_Depth := Natural'Value (Parameter);
exception
when Constraint_Error =>
Usage;
end;
when 'm' =>
begin
Minimum_NB_Leaks := Natural'Value (Parameter);
exception
when Constraint_Error =>
Usage;
end;
when 'i' =>
Log_Name := new String'(Parameter);
when 'q' =>
Quiet_Mode := True;
when 's' =>
declare
S : constant String (Sort_Order'Range) := Parameter;
begin
for J in Sort_Order'Range loop
if S (J) = 'n' or else
S (J) = 'w' or else
S (J) = 'h'
then
Sort_Order (J) := S (J);
else
Put_Line ("Invalid sort criteria string.");
GNAT.OS_Lib.OS_Exit (1);
end if;
end loop;
end;
when others =>
null;
end case;
end loop;
-- Set default log file if -i hasn't been specified
if Log_Name = null then
Log_Name := new String'("gmem.out");
end if;
-- Get the optional backtrace length and program name
declare
Str1 : constant String := GNAT.Command_Line.Get_Argument;
Str2 : constant String := GNAT.Command_Line.Get_Argument;
begin
if Str1 = "" then
Usage;
end if;
if Str2 = "" then
Program_Name := new String'(Str1);
else
BT_Depth := Natural'Value (Str1);
Program_Name := new String'(Str2);
end if;
exception
when Constraint_Error =>
Usage;
end;
-- Ensure presence of executable suffix in Program_Name
declare
Suffix : String_Access := Get_Executable_Suffix;
Tmp : String_Access;
begin
if Suffix.all /= ""
and then
Program_Name.all
(Program_Name.all'Last - Suffix.all'Length + 1 ..
Program_Name.all'Last) /= Suffix.all
then
Tmp := new String'(Program_Name.all & Suffix.all);
Free (Program_Name);
Program_Name := Tmp;
end if;
Free (Suffix);
-- Search the executable on the path. If not found in the PATH, we
-- default to the current directory. Otherwise, libaddr2line will
-- fail with an error:
-- (null): Bad address
Tmp := Locate_Exec_On_Path (Program_Name.all);
if Tmp = null then
Tmp := new String'('.' & Directory_Separator & Program_Name.all);
end if;
Free (Program_Name);
Program_Name := Tmp;
end;
if not Is_Regular_File (Log_Name.all) then
Put_Line ("Couldn't find " & Log_Name.all);
GNAT.OS_Lib.OS_Exit (1);
end if;
if not Gmem_Initialize (Log_Name.all) then
Put_Line ("File " & Log_Name.all & " is not a gnatmem log file");
GNAT.OS_Lib.OS_Exit (1);
end if;
if not Is_Regular_File (Program_Name.all) then
Put_Line ("Couldn't find " & Program_Name.all);
end if;
Gmem_A2l_Initialize (Program_Name.all);
exception
when GNAT.Command_Line.Invalid_Switch =>
Ada.Text_IO.Put_Line ("Invalid switch : "
& GNAT.Command_Line.Full_Switch);
Usage;
end Process_Arguments;
Cur_Elmt : Storage_Elmt;
-- Start of processing for Gnatmem
begin
Process_Arguments;
-- Main loop analysing the data generated by the instrumented routines.
-- For each allocation, the backtrace is kept and stored in a htable
-- whose entry is the address. For each deallocation, we look for the
-- corresponding allocation and cancel it.
Main : loop
Cur_Elmt := Read_Next;
case Cur_Elmt.Elmt is
when '*' =>
exit Main;
when 'A' =>
-- Update global counters if the allocated size is meaningful
if Quiet_Mode then
Tmp_Alloc.Root := Read_BT (BT_Depth);
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Nb_Root := Nb_Root + 1;
end if;
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) + 1);
Address_HTable.Set (Cur_Elmt.Address, Tmp_Alloc);
elsif Cur_Elmt.Size > 0 then
Global_Alloc_Size := Global_Alloc_Size + Cur_Elmt.Size;
Global_Nb_Alloc := Global_Nb_Alloc + 1;
if Global_High_Water_Mark < Global_Alloc_Size then
Global_High_Water_Mark := Global_Alloc_Size;
end if;
-- Read the corresponding back trace
Tmp_Alloc.Root := Read_BT (BT_Depth);
-- Update the number of allocation root if this is a new one
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Nb_Root := Nb_Root + 1;
end if;
-- Update allocation root specific counters
Set_Alloc_Size (Tmp_Alloc.Root,
Alloc_Size (Tmp_Alloc.Root) + Cur_Elmt.Size);
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) + 1);
if High_Water_Mark (Tmp_Alloc.Root) <
Alloc_Size (Tmp_Alloc.Root)
then
Set_High_Water_Mark (Tmp_Alloc.Root,
Alloc_Size (Tmp_Alloc.Root));
end if;
-- Associate this allocation root to the allocated address
Tmp_Alloc.Size := Cur_Elmt.Size;
Address_HTable.Set (Cur_Elmt.Address, Tmp_Alloc);
-- non meaningful output, just consumes the backtrace
else
Tmp_Alloc.Root := Read_BT (BT_Depth);
end if;
when 'D' =>
-- Get the corresponding Dealloc_Size and Root
Tmp_Alloc := Address_HTable.Get (Cur_Elmt.Address);
if Tmp_Alloc.Root = No_Root_Id then
-- There was no prior allocation at this address, something is
-- very wrong. Mark this allocation root as problematic
Tmp_Alloc.Root := Read_BT (BT_Depth);
if Nb_Alloc (Tmp_Alloc.Root) = 0 then
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) - 1);
Nb_Wrong_Deall := Nb_Wrong_Deall + 1;
end if;
else
-- Update global counters
if not Quiet_Mode then
Global_Alloc_Size := Global_Alloc_Size - Tmp_Alloc.Size;
end if;
Global_Nb_Dealloc := Global_Nb_Dealloc + 1;
-- Update allocation root specific counters
if not Quiet_Mode then
Set_Alloc_Size (Tmp_Alloc.Root,
Alloc_Size (Tmp_Alloc.Root) - Tmp_Alloc.Size);
end if;
Set_Nb_Alloc (Tmp_Alloc.Root, Nb_Alloc (Tmp_Alloc.Root) - 1);
-- update the number of allocation root if this one disappear
if Nb_Alloc (Tmp_Alloc.Root) = 0
and then Minimum_NB_Leaks > 0 then
Nb_Root := Nb_Root - 1;
end if;
-- De-associate the deallocated address
Address_HTable.Remove (Cur_Elmt.Address);
end if;
when others =>
raise Program_Error;
end case;
end loop Main;
-- Print out general information about overall allocation
if not Quiet_Mode then
Put_Line ("Global information");
Put_Line ("------------------");
Put (" Total number of allocations :");
Ada.Integer_Text_IO.Put (Global_Nb_Alloc, 4);
New_Line;
Put (" Total number of deallocations :");
Ada.Integer_Text_IO.Put (Global_Nb_Dealloc, 4);
New_Line;
Put_Line (" Final Water Mark (non freed mem) :"
& Mem_Image (Global_Alloc_Size));
Put_Line (" High Water Mark :"
& Mem_Image (Global_High_Water_Mark));
New_Line;
end if;
-- Print out the back traces corresponding to potential leaks in order
-- greatest number of non-deallocated allocations
Print_Back_Traces : declare
type Root_Array is array (Natural range <>) of Root_Id;
Leaks : Root_Array (0 .. Nb_Root);
Leak_Index : Natural := 0;
Bogus_Dealls : Root_Array (1 .. Nb_Wrong_Deall);
Deall_Index : Natural := 0;
Nb_Alloc_J : Natural := 0;
procedure Move (From : Natural; To : Natural);
function Lt (Op1, Op2 : Natural) return Boolean;
package Root_Sort is new GNAT.Heap_Sort_G (Move, Lt);
procedure Move (From : Natural; To : Natural) is
begin
Leaks (To) := Leaks (From);
end Move;
function Lt (Op1, Op2 : Natural) return Boolean is
function Apply_Sort_Criterion (S : Character) return Integer;
-- Applies a specific sort criterion; returns -1, 0 or 1 if Op1 is
-- smaller than, equal, or greater than Op2 according to criterion
function Apply_Sort_Criterion (S : Character) return Integer is
LOp1, LOp2 : Integer;
begin
case S is
when 'n' =>
LOp1 := Nb_Alloc (Leaks (Op1));
LOp2 := Nb_Alloc (Leaks (Op2));
when 'w' =>
LOp1 := Integer (Alloc_Size (Leaks (Op1)));
LOp2 := Integer (Alloc_Size (Leaks (Op2)));
when 'h' =>
LOp1 := Integer (High_Water_Mark (Leaks (Op1)));
LOp2 := Integer (High_Water_Mark (Leaks (Op2)));
when others =>
return 0; -- Can't actually happen
end case;
if LOp1 < LOp2 then
return -1;
elsif LOp1 > LOp2 then
return 1;
else
return 0;
end if;
exception
when Constraint_Error =>
return 0;
end Apply_Sort_Criterion;
Result : Integer;
-- Start of processing for Lt
begin
for S in Sort_Order'Range loop
Result := Apply_Sort_Criterion (Sort_Order (S));
if Result = -1 then
return False;
elsif Result = 1 then
return True;
end if;
end loop;
return False;
end Lt;
-- Start of processing for Print_Back_Traces
begin
-- Transfer all the relevant Roots in the Leaks and a
-- Bogus_Deall arrays
Tmp_Alloc.Root := Get_First;
while Tmp_Alloc.Root /= No_Root_Id loop
if Nb_Alloc (Tmp_Alloc.Root) = 0 and then Minimum_NB_Leaks > 0 then
null;
elsif Nb_Alloc (Tmp_Alloc.Root) < 0 then
Deall_Index := Deall_Index + 1;
Bogus_Dealls (Deall_Index) := Tmp_Alloc.Root;
else
Leak_Index := Leak_Index + 1;
Leaks (Leak_Index) := Tmp_Alloc.Root;
end if;
Tmp_Alloc.Root := Get_Next;
end loop;
-- Print out wrong deallocations
if Nb_Wrong_Deall > 0 then
Put_Line ("Releasing deallocated memory at :");
if not Quiet_Mode then
Put_Line ("--------------------------------");
end if;
for J in 1 .. Bogus_Dealls'Last loop
Print_BT (Bogus_Dealls (J), Short => Quiet_Mode);
New_Line;
end loop;
end if;
-- Print out all allocation Leaks
if Nb_Root > 0 then
-- Sort the Leaks so that potentially important leaks appear first
Root_Sort.Sort (Nb_Root);
for J in 1 .. Leaks'Last loop
Nb_Alloc_J := Nb_Alloc (Leaks (J));
if Nb_Alloc_J >= Minimum_NB_Leaks then
if Quiet_Mode then
if Nb_Alloc_J = 1 then
Put_Line (" 1 leak at :");
else
Put_Line (Integer'Image (Nb_Alloc_J) & " leaks at :");
end if;
else
Put_Line ("Allocation Root #" & Integer'Image (J));
Put_Line ("-------------------");
Put (" Number of non freed allocations :");
Ada.Integer_Text_IO.Put (Nb_Alloc_J, 4);
New_Line;
Put_Line
(" Final Water Mark (non freed mem) :"
& Mem_Image (Alloc_Size (Leaks (J))));
Put_Line
(" High Water Mark :"
& Mem_Image (High_Water_Mark (Leaks (J))));
Put_Line (" Backtrace :");
end if;
Print_BT (Leaks (J), Short => Quiet_Mode);
New_Line;
end if;
end loop;
end if;
end Print_Back_Traces;
end Gnatmem;
|
package Utilities is
generic
Width: Positive;
function LeftPad (Str : String; Level : Natural) return String;
end Utilities; |
-----------------------------------------------------------------------
-- gen-artifacts-query -- Query artifact for Code Generator
-- Copyright (C) 2011, 2012, 2021 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 DOM.Core;
with Gen.Model.Packages;
-- The <b>Gen.Artifacts.Query</b> package is an artifact for the generation of
-- data structures returned by queries.
package Gen.Artifacts.Query is
-- ------------------------------
-- Query artifact
-- ------------------------------
type Artifact is new Gen.Artifacts.Artifact with private;
-- After the configuration file is read, processes the node whose root
-- is passed in <b>Node</b> and initializes the <b>Model</b> with the information.
overriding
procedure Initialize (Handler : in out Artifact;
Path : in String;
Node : in DOM.Core.Node;
Model : in out Gen.Model.Packages.Model_Definition'Class;
Context : in out Generator'Class);
-- Prepare the model after all the configuration files have been read and before
-- actually invoking the generation.
overriding
procedure Prepare (Handler : in out Artifact;
Model : in out Gen.Model.Packages.Model_Definition'Class;
Project : in out Gen.Model.Projects.Project_Definition'Class;
Context : in out Generator'Class);
private
type Artifact is new Gen.Artifacts.Artifact with null record;
end Gen.Artifacts.Query;
|
package body getter is
procedure push (getter : getter_type) is
begin
getters_stack.append(getter);
current_getter := getter;
end push;
procedure pop is
begin
getters_stack.delete_last;
if not getters_stack_t.is_empty(getters_stack) then
current_getter := getters_stack_t.last_element(getters_stack);
end if;
end pop;
function get (lf2space : boolean := true) return character is
c : character;
begin
if getters_stack_t.is_empty(getters_stack) then
raise ERROR_NO_GETTERS;
end if;
c := current_getter.all;
if c = ascii.nul then
getters_stack.delete_last;
if getters_stack_t.is_empty(getters_stack) then
return ascii.nul;
end if;
current_getter := getters_stack_t.last_element(getters_stack);
return get;
end if;
if lf2space and c = ascii.lf then
return ' ';
end if;
return c;
end get;
procedure set_line (cnt : pos_count) is
begin
current_line := cnt;
end set_line;
function get_line return pos_count is
begin
return current_line;
end get_line;
end getter; |
-- Copyright 2009-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 System;
package Pck is
procedure Do_Nothing (A : System.Address);
end Pck;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME LIBRARY COMPONENTS --
-- --
-- S Y S T E M . C O M P A R E _ A R R A Y _ S I G N E D _ 3 2 --
-- --
-- B o d y --
-- --
-- Copyright (C) 2002-2021, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 3, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. --
-- --
-- --
-- --
-- --
-- --
-- You should have received a copy of the GNU General Public License and --
-- a copy of the GCC Runtime Library Exception along with this program; --
-- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see --
-- <http://www.gnu.org/licenses/>. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
with System.Address_Operations; use System.Address_Operations;
with Ada.Unchecked_Conversion;
package body System.Compare_Array_Signed_32 is
type Word is range -2**31 .. 2**31 - 1;
for Word'Size use 32;
-- Used to process operands by words
type Uword is new Word;
for Uword'Alignment use 1;
-- Used to process operands when unaligned
type WP is access Word;
type UP is access Uword;
function W is new Ada.Unchecked_Conversion (Address, WP);
function U is new Ada.Unchecked_Conversion (Address, UP);
-----------------------
-- Compare_Array_S32 --
-----------------------
function Compare_Array_S32
(Left : System.Address;
Right : System.Address;
Left_Len : Natural;
Right_Len : Natural) return Integer
is
Clen : Natural := Natural'Min (Left_Len, Right_Len);
-- Number of elements left to compare
L : Address := Left;
R : Address := Right;
-- Pointers to next elements to compare
begin
-- Case of going by aligned words
if ModA (OrA (Left, Right), 4) = 0 then
while Clen /= 0 loop
if W (L).all /= W (R).all then
if W (L).all > W (R).all then
return +1;
else
return -1;
end if;
end if;
Clen := Clen - 1;
L := AddA (L, 4);
R := AddA (R, 4);
end loop;
-- Case of going by unaligned words
else
while Clen /= 0 loop
if U (L).all /= U (R).all then
if U (L).all > U (R).all then
return +1;
else
return -1;
end if;
end if;
Clen := Clen - 1;
L := AddA (L, 4);
R := AddA (R, 4);
end loop;
end if;
-- Here if common section equal, result decided by lengths
if Left_Len = Right_Len then
return 0;
elsif Left_Len > Right_Len then
return +1;
else
return -1;
end if;
end Compare_Array_S32;
end System.Compare_Array_Signed_32;
|
package body Arena_Pools is
procedure Allocate
( Pool : in out Arena;
Address : out System.Address;
Size : Storage_Count;
Alignment : Storage_Count
) is
Free : constant Storage_Offset :=
Pool.Free + Alignment - Pool.Core (Pool.Free)'Address mod Alignment + Size;
begin
if Free - 1 > Pool.Size then
raise Storage_Error;
end if;
Pool.Free := Free;
Address := Pool.Core (Pool.Free - Size)'Address;
end Allocate;
function Storage_Size (Pool : Arena) return Storage_Count is
begin
return Pool.Size;
end Storage_Size;
end Arena_Pools;
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . P A C K _ 1 2 --
-- --
-- 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 System.Storage_Elements;
with System.Unsigned_Types;
package body System.Pack_12 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_12;
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_12 or SetU_12 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_12 --
------------
function Get_12
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_12
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_12;
-------------
-- GetU_12 --
-------------
function GetU_12
(Arr : System.Address;
N : Natural;
Rev_SSO : Boolean) return Bits_12
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_12;
------------
-- Set_12 --
------------
procedure Set_12
(Arr : System.Address;
N : Natural;
E : Bits_12;
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_12;
-------------
-- SetU_12 --
-------------
procedure SetU_12
(Arr : System.Address;
N : Natural;
E : Bits_12;
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_12;
end System.Pack_12;
|
------------------------------------------------------------------------------
-- --
-- GNAT COMPILER COMPONENTS --
-- --
-- C O M P E R R --
-- --
-- B o d y --
-- --
-- $Revision$
-- --
-- Copyright (C) 1992-2002 Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
-- ware Foundation; either version 2, or (at your option) any later ver- --
-- sion. GNAT is distributed in the hope that it will be useful, but WITH- --
-- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY --
-- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License --
-- for more details. You should have received a copy of the GNU General --
-- Public License distributed with GNAT; see file COPYING. If not, write --
-- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, --
-- MA 02111-1307, USA. --
-- --
-- GNAT was originally developed by the GNAT team at New York University. --
-- Extensive contributions were provided by Ada Core Technologies Inc. --
-- --
------------------------------------------------------------------------------
-- This package contains routines called when a fatal internal compiler
-- error is detected. Calls to these routines cause termination of the
-- current compilation with appropriate error output.
with Atree; use Atree;
with Debug; use Debug;
with Errout; use Errout;
with Fname; use Fname;
with Gnatvsn; use Gnatvsn;
with Lib; use Lib;
with Namet; use Namet;
with Osint; use Osint;
with Output; use Output;
with Sinput; use Sinput;
with Sprint; use Sprint;
with Sdefault; use Sdefault;
with Treepr; use Treepr;
with Types; use Types;
with Ada.Exceptions; use Ada.Exceptions;
with System.Soft_Links; use System.Soft_Links;
package body Comperr is
----------------
-- Local Data --
----------------
Abort_In_Progress : Boolean := False;
-- Used to prevent runaway recursion if something segfaults
-- while processing a previous abort.
-----------------------
-- Local Subprograms --
-----------------------
procedure Repeat_Char (Char : Character; Col : Nat; After : Character);
-- Output Char until current column is at or past Col, and then output
-- the character given by After (if column is already past Col on entry,
-- then the effect is simply to output the After character).
--------------------
-- Compiler_Abort --
--------------------
procedure Compiler_Abort
(X : String;
Code : Integer := 0)
is
procedure End_Line;
-- Add blanks up to column 76, and then a final vertical bar
procedure End_Line is
begin
Repeat_Char (' ', 76, '|');
Write_Eol;
end End_Line;
-- Start of processing for Compiler_Abort
begin
-- Prevent recursion through Compiler_Abort, e.g. via SIGSEGV.
if Abort_In_Progress then
Exit_Program (E_Abort);
end if;
Abort_In_Progress := True;
-- If errors have already occurred, then we guess that the abort may
-- well be caused by previous errors, and we don't make too much fuss
-- about it, since we want to let the programmer fix the errors first.
-- Debug flag K disables this behavior (useful for debugging)
if Errors_Detected /= 0 and then not Debug_Flag_K then
Errout.Finalize;
Set_Standard_Error;
Write_Str ("compilation abandoned due to previous error");
Write_Eol;
Set_Standard_Output;
Source_Dump;
Tree_Dump;
Exit_Program (E_Errors);
-- Otherwise give message with details of the abort
else
Set_Standard_Error;
-- Generate header for bug box
Write_Char ('+');
Repeat_Char ('=', 29, 'G');
Write_Str ("NAT BUG DETECTED");
Repeat_Char ('=', 76, '+');
Write_Eol;
-- Output GNAT version identification
Write_Str ("| ");
Write_Str (Gnat_Version_String);
Write_Str (" (");
-- Output target name, deleting junk final reverse slash
if Target_Name.all (Target_Name.all'Last) = '\'
or else Target_Name.all (Target_Name.all'Last) = '/'
then
Write_Str (Target_Name.all (1 .. Target_Name.all'Last - 1));
else
Write_Str (Target_Name.all);
end if;
-- Output identification of error
Write_Str (") ");
if X'Length + Column > 76 then
if Code < 0 then
Write_Str ("GCC error:");
end if;
End_Line;
Write_Str ("| ");
end if;
if X'Length > 70 then
declare
Last_Blank : Integer := 70;
begin
for P in 40 .. 69 loop
if X (P) = ' ' then
Last_Blank := P;
end if;
end loop;
Write_Str (X (1 .. Last_Blank));
End_Line;
Write_Str ("| ");
Write_Str (X (Last_Blank + 1 .. X'Length));
end;
else
Write_Str (X);
end if;
if Code > 0 then
Write_Str (", Code=");
Write_Int (Int (Code));
elsif Code = 0 then
-- For exception case, get exception message from the TSD. Note
-- that it would be neater and cleaner to pass the exception
-- message (obtained from Exception_Message) as a parameter to
-- Compiler_Abort, but we can't do this quite yet since it would
-- cause bootstrap path problems for 3.10 to 3.11.
Write_Char (' ');
Write_Str (Exception_Message (Get_Current_Excep.all.all));
end if;
End_Line;
-- Output source location information
if Sloc (Current_Error_Node) <= Standard_Location
or else Sloc (Current_Error_Node) = No_Location
then
Write_Str ("| No source file position information available");
End_Line;
else
Write_Str ("| Error detected at ");
Write_Location (Sloc (Current_Error_Node));
End_Line;
end if;
-- There are two cases now. If the file gnat_bug.box exists,
-- we use the contents of this file at this point.
declare
Lo : Source_Ptr;
Hi : Source_Ptr;
Src : Source_Buffer_Ptr;
begin
Namet.Unlock;
Name_Buffer (1 .. 12) := "gnat_bug.box";
Name_Len := 12;
Read_Source_File (Name_Enter, 0, Hi, Src);
-- If we get a Src file, we use it
if Src /= null then
Lo := 0;
Outer : while Lo < Hi loop
Write_Str ("| ");
Inner : loop
exit Inner when Src (Lo) = ASCII.CR
or else Src (Lo) = ASCII.LF;
Write_Char (Src (Lo));
Lo := Lo + 1;
end loop Inner;
End_Line;
while Lo <= Hi
and then (Src (Lo) = ASCII.CR
or else Src (Lo) = ASCII.LF)
loop
Lo := Lo + 1;
end loop;
end loop Outer;
-- Otherwise we use the standard fixed text
else
Write_Str
("| Please submit a bug report, see" &
" http://gcc.gnu.org/bugs.html.");
End_Line;
Write_Str
("| Include the entire contents of this bug " &
"box in the report.");
End_Line;
Write_Str
("| Include the exact gcc or gnatmake command " &
"that you entered.");
End_Line;
Write_Str
("| Also include sources listed below in gnatchop format");
End_Line;
Write_Str
("| (concatenated together with no headers between files).");
End_Line;
end if;
end;
-- Complete output of bug box
Write_Char ('+');
Repeat_Char ('=', 76, '+');
Write_Eol;
if Debug_Flag_3 then
Write_Eol;
Write_Eol;
Print_Tree_Node (Current_Error_Node);
Write_Eol;
end if;
Write_Eol;
Write_Line ("Please include these source files with error report");
Write_Eol;
for U in Main_Unit .. Last_Unit loop
begin
if not Is_Internal_File_Name
(File_Name (Source_Index (U)))
then
Write_Name (Full_File_Name (Source_Index (U)));
Write_Eol;
end if;
-- No point in double bug box if we blow up trying to print
-- the list of file names! Output informative msg and quit.
exception
when others =>
Write_Str ("list may be incomplete");
exit;
end;
end loop;
Write_Eol;
Set_Standard_Output;
Tree_Dump;
Source_Dump;
raise Unrecoverable_Error;
end if;
end Compiler_Abort;
-----------------
-- Repeat_Char --
-----------------
procedure Repeat_Char (Char : Character; Col : Nat; After : Character) is
begin
while Column < Col loop
Write_Char (Char);
end loop;
Write_Char (After);
end Repeat_Char;
end Comperr;
|
------------------------------------------------------------------------------
-- --
-- Copyright (C) 2015-2022, 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. --
-- --
------------------------------------------------------------------------------
-- A demonstration of a higher-level USART interface, using blocking I/O.
-- The file declares the main procedure for the demonstration.
with Last_Chance_Handler; pragma Unreferenced (Last_Chance_Handler);
-- The "last chance handler" is the user-defined routine that is called when
-- an exception is propagated. We need it in the executable, therefore it
-- must be somewhere in the closure of the context clauses.
with Peripherals_Blocking; use Peripherals_Blocking;
with Serial_IO.Blocking; use Serial_IO.Blocking;
with Message_Buffers; use Message_Buffers;
use Serial_IO;
procedure Demo_Serial_Port_Blocking is
Incoming : aliased Message (Physical_Size => 1024); -- arbitrary size
Outgoing : aliased Message (Physical_Size => 1024); -- arbitrary size
procedure Send (This : String);
procedure Send (This : String) is
begin
Set (Outgoing, To => This);
Blocking.Send (COM, Outgoing'Unchecked_Access);
-- Send won't return until the entire message has been sent
end Send;
begin
Initialize_Hardware (COM);
Configure (COM, Baud_Rate => 115_200);
Incoming.Set_Terminator (To => ASCII.CR);
Send ("Enter text, terminated by CR.");
loop
Blocking.Receive (COM, Incoming'Unchecked_Access);
Send ("Received : " & Incoming.Content);
end loop;
end Demo_Serial_Port_Blocking;
|
with AUnit.Reporter.Text;
with AUnit.Run;
with AUnit.Test_Suites;
with HMAC_SHA1_Streams_Tests;
with HMAC_SHA2_Streams_Tests;
procedure HMAC_Tests is
function Suite return AUnit.Test_Suites.Access_Test_Suite;
procedure Runner is new AUnit.Run.Test_Runner (Suite);
Reporter : AUnit.Reporter.Text.Text_Reporter;
Test_Suite : aliased AUnit.Test_Suites.Test_Suite;
function Suite return AUnit.Test_Suites.Access_Test_Suite is
begin
Test_Suite.Add_Test (HMAC_SHA1_Streams_Tests.Suite);
Test_Suite.Add_Test (HMAC_SHA2_Streams_Tests.Suite);
return Test_Suite'Unchecked_Access;
end Suite;
begin
Reporter.Set_Use_ANSI_Colors (True);
Runner (Reporter);
end HMAC_Tests;
|
with Interfaces.C; use Interfaces.C;
with System;
package Mysql.My_list is
pragma Preelaborate;
-- arg-macro: function list_rest (a)
-- return (a).next;
-- arg-macro: function list_push (a, b)
-- return a):=list_cons((b),(a);
-- Copyright (C) 2000 MySQL AB
-- 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; version 2 of the License.
-- 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, write to the Free Software
-- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-- /usr/include/mysql/my_list.h:24:19
type st_list is record
prev : access st_list;
next : access st_list;
data : System.Address;
end record;
pragma Convention (C, st_list);
subtype LIST is st_list;
type List_Walk_Action is
access function (arg1 : System.Address; arg2 : System.Address) return int;
function list_add (arg1 : access st_list; arg2 : access st_list) return access st_list;
pragma Import (C, list_add, "list_add");
function list_delete (arg1 : access st_list; arg2 : access st_list) return access st_list;
pragma Import (C, list_delete, "list_delete");
function list_cons (arg1 : System.Address; arg2 : access st_list) return access st_list;
pragma Import (C, list_cons, "list_cons");
function list_reverse (arg1 : access st_list) return access st_list;
pragma Import (C, list_reverse, "list_reverse");
procedure list_free (arg1 : access st_list; arg2 : unsigned);
pragma Import (C, list_free, "list_free");
function list_length (arg1 : access st_list) return unsigned;
pragma Import (C, list_length, "list_length");
end Mysql.My_list;
|
------------------------------------------------------------------------------
-- --
-- Matreshka Project --
-- --
-- Ada Modeling Framework --
-- --
-- Runtime Library Component --
-- --
------------------------------------------------------------------------------
-- --
-- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> --
-- All rights reserved. --
-- --
-- Redistribution and use in source and binary forms, with or without --
-- modification, are permitted provided that the following conditions --
-- are met: --
-- --
-- * Redistributions of source code must retain the above copyright --
-- notice, this list of conditions and the following disclaimer. --
-- --
-- * Redistributions in binary form must reproduce the above copyright --
-- notice, this list of conditions and the following disclaimer in the --
-- documentation and/or other materials provided with the distribution. --
-- --
-- * Neither the name of the Vadim Godunko, IE nor the names of its --
-- contributors may be used to endorse or promote products derived from --
-- this software without specific prior written permission. --
-- --
-- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS --
-- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT --
-- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR --
-- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT --
-- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, --
-- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED --
-- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR --
-- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF --
-- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING --
-- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS --
-- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --
-- --
------------------------------------------------------------------------------
-- $Revision$ $Date$
------------------------------------------------------------------------------
with AMF.Internals.UML_Packages;
with AMF.String_Collections;
with AMF.UML.Constraints.Collections;
with AMF.UML.Dependencies.Collections;
with AMF.UML.Element_Imports.Collections;
with AMF.UML.Named_Elements.Collections;
with AMF.UML.Namespaces;
with AMF.UML.Package_Imports.Collections;
with AMF.UML.Package_Merges.Collections;
with AMF.UML.Packageable_Elements.Collections;
with AMF.UML.Packages.Collections;
with AMF.UML.Parameterable_Elements.Collections;
with AMF.UML.Profile_Applications.Collections;
with AMF.UML.Profiles;
with AMF.UML.Stereotypes.Collections;
with AMF.UML.String_Expressions;
with AMF.UML.Template_Bindings.Collections;
with AMF.UML.Template_Parameters;
with AMF.UML.Template_Signatures;
with AMF.UML.Types.Collections;
with AMF.Visitors;
package AMF.Internals.UML_Profiles is
type UML_Profile_Proxy is
limited new AMF.Internals.UML_Packages.UML_Package_Proxy
and AMF.UML.Profiles.UML_Profile with null record;
overriding function Get_Metaclass_Reference
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Element_Imports.Collections.Set_Of_UML_Element_Import;
-- Getter of Profile::metaclassReference.
--
-- References a metaclass that may be extended.
overriding function Get_Metamodel_Reference
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Package_Imports.Collections.Set_Of_UML_Package_Import;
-- Getter of Profile::metamodelReference.
--
-- References a package containing (directly or indirectly) metaclasses
-- that may be extended.
overriding function Get_URI
(Self : not null access constant UML_Profile_Proxy)
return AMF.Optional_String;
-- Getter of Package::URI.
--
-- Provides an identifier for the package that can be used for many
-- purposes. A URI is the universally unique identification of the package
-- following the IETF URI specification, RFC 2396
-- http://www.ietf.org/rfc/rfc2396.txt and it must comply with those
-- syntax rules.
overriding procedure Set_URI
(Self : not null access UML_Profile_Proxy;
To : AMF.Optional_String);
-- Setter of Package::URI.
--
-- Provides an identifier for the package that can be used for many
-- purposes. A URI is the universally unique identification of the package
-- following the IETF URI specification, RFC 2396
-- http://www.ietf.org/rfc/rfc2396.txt and it must comply with those
-- syntax rules.
overriding function Get_Nested_Package
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Getter of Package::nestedPackage.
--
-- References the packaged elements that are Packages.
overriding function Get_Nesting_Package
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packages.UML_Package_Access;
-- Getter of Package::nestingPackage.
--
-- References the Package that owns this Package.
overriding procedure Set_Nesting_Package
(Self : not null access UML_Profile_Proxy;
To : AMF.UML.Packages.UML_Package_Access);
-- Setter of Package::nestingPackage.
--
-- References the Package that owns this Package.
overriding function Get_Owned_Stereotype
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Stereotypes.Collections.Set_Of_UML_Stereotype;
-- Getter of Package::ownedStereotype.
--
-- References the Stereotypes that are owned by the Package
overriding function Get_Owned_Type
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Types.Collections.Set_Of_UML_Type;
-- Getter of Package::ownedType.
--
-- References the packaged elements that are Types.
overriding function Get_Package_Merge
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Package_Merges.Collections.Set_Of_UML_Package_Merge;
-- Getter of Package::packageMerge.
--
-- References the PackageMerges that are owned by this Package.
overriding function Get_Profile_Application
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Profile_Applications.Collections.Set_Of_UML_Profile_Application;
-- Getter of Package::profileApplication.
--
-- References the ProfileApplications that indicate which profiles have
-- been applied to the Package.
overriding function Get_Element_Import
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Element_Imports.Collections.Set_Of_UML_Element_Import;
-- Getter of Namespace::elementImport.
--
-- References the ElementImports owned by the Namespace.
overriding function Get_Imported_Member
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Getter of Namespace::importedMember.
--
-- References the PackageableElements that are members of this Namespace
-- as a result of either PackageImports or ElementImports.
overriding function Get_Member
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Namespace::member.
--
-- A collection of NamedElements identifiable within the Namespace, either
-- by being owned or by being introduced by importing or inheritance.
overriding function Get_Owned_Member
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Getter of Namespace::ownedMember.
--
-- A collection of NamedElements owned by the Namespace.
overriding function Get_Owned_Rule
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Constraints.Collections.Set_Of_UML_Constraint;
-- Getter of Namespace::ownedRule.
--
-- Specifies a set of Constraints owned by this Namespace.
overriding function Get_Package_Import
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Package_Imports.Collections.Set_Of_UML_Package_Import;
-- Getter of Namespace::packageImport.
--
-- References the PackageImports owned by the Namespace.
overriding function Get_Client_Dependency
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Dependencies.Collections.Set_Of_UML_Dependency;
-- Getter of NamedElement::clientDependency.
--
-- Indicates the dependencies that reference the client.
overriding function Get_Name_Expression
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.String_Expressions.UML_String_Expression_Access;
-- Getter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding procedure Set_Name_Expression
(Self : not null access UML_Profile_Proxy;
To : AMF.UML.String_Expressions.UML_String_Expression_Access);
-- Setter of NamedElement::nameExpression.
--
-- The string expression used to define the name of this named element.
overriding function Get_Namespace
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Getter of NamedElement::namespace.
--
-- Specifies the namespace that owns the NamedElement.
overriding function Get_Qualified_Name
(Self : not null access constant UML_Profile_Proxy)
return AMF.Optional_String;
-- Getter of NamedElement::qualifiedName.
--
-- A name which allows the NamedElement to be identified within a
-- hierarchy of nested Namespaces. It is constructed from the names of the
-- containing namespaces starting at the root of the hierarchy and ending
-- with the name of the NamedElement itself.
overriding function Get_Owning_Template_Parameter
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding procedure Set_Owning_Template_Parameter
(Self : not null access UML_Profile_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::owningTemplateParameter.
--
-- The formal template parameter that owns this element.
overriding function Get_Template_Parameter
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Template_Parameters.UML_Template_Parameter_Access;
-- Getter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding procedure Set_Template_Parameter
(Self : not null access UML_Profile_Proxy;
To : AMF.UML.Template_Parameters.UML_Template_Parameter_Access);
-- Setter of ParameterableElement::templateParameter.
--
-- The template parameter that exposes this element as a formal parameter.
overriding function Get_Owned_Template_Signature
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Template_Signatures.UML_Template_Signature_Access;
-- Getter of TemplateableElement::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding procedure Set_Owned_Template_Signature
(Self : not null access UML_Profile_Proxy;
To : AMF.UML.Template_Signatures.UML_Template_Signature_Access);
-- Setter of TemplateableElement::ownedTemplateSignature.
--
-- The optional template signature specifying the formal template
-- parameters.
overriding function Get_Template_Binding
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Template_Bindings.Collections.Set_Of_UML_Template_Binding;
-- Getter of TemplateableElement::templateBinding.
--
-- The optional bindings from this element to templates.
overriding function All_Applicable_Stereotypes
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Stereotypes.Collections.Set_Of_UML_Stereotype;
-- Operation Package::allApplicableStereotypes.
--
-- The query allApplicableStereotypes() returns all the directly or
-- indirectly owned stereotypes, including stereotypes contained in
-- sub-profiles.
overriding function Containing_Profile
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Profiles.UML_Profile_Access;
-- Operation Package::containingProfile.
--
-- The query containingProfile() returns the closest profile directly or
-- indirectly containing this package (or this package itself, if it is a
-- profile).
overriding function Makes_Visible
(Self : not null access constant UML_Profile_Proxy;
El : AMF.UML.Named_Elements.UML_Named_Element_Access)
return Boolean;
-- Operation Package::makesVisible.
--
-- The query makesVisible() defines whether a Package makes an element
-- visible outside itself. Elements with no visibility and elements with
-- public visibility are made visible.
overriding function Nested_Package
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation Package::nestedPackage.
--
-- Missing derivation for Package::/nestedPackage : Package
overriding function Owned_Stereotype
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Stereotypes.Collections.Set_Of_UML_Stereotype;
-- Operation Package::ownedStereotype.
--
-- Missing derivation for Package::/ownedStereotype : Stereotype
overriding function Owned_Type
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Types.Collections.Set_Of_UML_Type;
-- Operation Package::ownedType.
--
-- Missing derivation for Package::/ownedType : Type
overriding function Visible_Members
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Package::visibleMembers.
--
-- The query visibleMembers() defines which members of a Package can be
-- accessed outside it.
overriding function Exclude_Collisions
(Self : not null access constant UML_Profile_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::excludeCollisions.
--
-- The query excludeCollisions() excludes from a set of
-- PackageableElements any that would not be distinguishable from each
-- other in this namespace.
overriding function Get_Names_Of_Member
(Self : not null access constant UML_Profile_Proxy;
Element : AMF.UML.Named_Elements.UML_Named_Element_Access)
return AMF.String_Collections.Set_Of_String;
-- Operation Namespace::getNamesOfMember.
--
-- The query getNamesOfMember() takes importing into account. It gives
-- back the set of names that an element would have in an importing
-- namespace, either because it is owned, or if not owned then imported
-- individually, or if not individually then from a package.
-- The query getNamesOfMember() gives a set of all of the names that a
-- member would have in a Namespace. In general a member can have multiple
-- names in a Namespace if it is imported more than once with different
-- aliases. The query takes account of importing. It gives back the set of
-- names that an element would have in an importing namespace, either
-- because it is owned, or if not owned then imported individually, or if
-- not individually then from a package.
overriding function Import_Members
(Self : not null access constant UML_Profile_Proxy;
Imps : AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::importMembers.
--
-- The query importMembers() defines which of a set of PackageableElements
-- are actually imported into the namespace. This excludes hidden ones,
-- i.e., those which have names that conflict with names of owned members,
-- and also excludes elements which would have the same name when imported.
overriding function Imported_Member
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packageable_Elements.Collections.Set_Of_UML_Packageable_Element;
-- Operation Namespace::importedMember.
--
-- The importedMember property is derived from the ElementImports and the
-- PackageImports. References the PackageableElements that are members of
-- this Namespace as a result of either PackageImports or ElementImports.
overriding function Members_Are_Distinguishable
(Self : not null access constant UML_Profile_Proxy)
return Boolean;
-- Operation Namespace::membersAreDistinguishable.
--
-- The Boolean query membersAreDistinguishable() determines whether all of
-- the namespace's members are distinguishable within it.
overriding function Owned_Member
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element;
-- Operation Namespace::ownedMember.
--
-- Missing derivation for Namespace::/ownedMember : NamedElement
overriding function All_Owning_Packages
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Packages.Collections.Set_Of_UML_Package;
-- Operation NamedElement::allOwningPackages.
--
-- The query allOwningPackages() returns all the directly or indirectly
-- owning packages.
overriding function Is_Distinguishable_From
(Self : not null access constant UML_Profile_Proxy;
N : AMF.UML.Named_Elements.UML_Named_Element_Access;
Ns : AMF.UML.Namespaces.UML_Namespace_Access)
return Boolean;
-- Operation NamedElement::isDistinguishableFrom.
--
-- The query isDistinguishableFrom() determines whether two NamedElements
-- may logically co-exist within a Namespace. By default, two named
-- elements are distinguishable if (a) they have unrelated types or (b)
-- they have related types but different names.
overriding function Namespace
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Namespaces.UML_Namespace_Access;
-- Operation NamedElement::namespace.
--
-- Missing derivation for NamedElement::/namespace : Namespace
overriding function Is_Compatible_With
(Self : not null access constant UML_Profile_Proxy;
P : AMF.UML.Parameterable_Elements.UML_Parameterable_Element_Access)
return Boolean;
-- Operation ParameterableElement::isCompatibleWith.
--
-- The query isCompatibleWith() determines if this parameterable element
-- is compatible with the specified parameterable element. By default
-- parameterable element P is compatible with parameterable element Q if
-- the kind of P is the same or a subtype as the kind of Q. Subclasses
-- should override this operation to specify different compatibility
-- constraints.
overriding function Is_Template_Parameter
(Self : not null access constant UML_Profile_Proxy)
return Boolean;
-- Operation ParameterableElement::isTemplateParameter.
--
-- The query isTemplateParameter() determines if this parameterable
-- element is exposed as a formal template parameter.
overriding function Is_Template
(Self : not null access constant UML_Profile_Proxy)
return Boolean;
-- Operation TemplateableElement::isTemplate.
--
-- The query isTemplate() returns whether this templateable element is
-- actually a template.
overriding function Parameterable_Elements
(Self : not null access constant UML_Profile_Proxy)
return AMF.UML.Parameterable_Elements.Collections.Set_Of_UML_Parameterable_Element;
-- Operation TemplateableElement::parameterableElements.
--
-- The query parameterableElements() returns the set of elements that may
-- be used as the parametered elements for a template parameter of this
-- templateable element. By default, this set includes all the owned
-- elements. Subclasses may override this operation if they choose to
-- restrict the set of parameterable elements.
overriding procedure Enter_Element
(Self : not null access constant UML_Profile_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Leave_Element
(Self : not null access constant UML_Profile_Proxy;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of visitor interface.
overriding procedure Visit_Element
(Self : not null access constant UML_Profile_Proxy;
Iterator : in out AMF.Visitors.Abstract_Iterator'Class;
Visitor : in out AMF.Visitors.Abstract_Visitor'Class;
Control : in out AMF.Visitors.Traverse_Control);
-- Dispatch call to corresponding subprogram of iterator interface.
end AMF.Internals.UML_Profiles;
|
-- Standard Ada library specification
-- Copyright (c) 2003-2018 Maxim Reznik <reznikmm@gmail.com>
-- Copyright (c) 2004-2016 AXE Consultants
-- Copyright (c) 2004, 2005, 2006 Ada-Europe
-- Copyright (c) 2000 The MITRE Corporation, Inc.
-- Copyright (c) 1992, 1993, 1994, 1995 Intermetrics, Inc.
-- SPDX-License-Identifier: BSD-3-Clause and LicenseRef-AdaReferenceManual
---------------------------------------------------------------------------
package Ada is
pragma Pure (Ada);
end Ada;
|
pragma Ada_2012;
pragma Style_Checks (Off);
pragma Warnings ("U");
with Interfaces.C; use Interfaces.C;
with arm_math_types_h;
with sys_ustdint_h;
package statistics_functions_h is
function arm_logsumexp_f32 (c_in : access arm_math_types_h.float32_t; blockSize : sys_ustdint_h.uint32_t) return arm_math_types_h.float32_t -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:74
with Import => True,
Convention => C,
External_Name => "arm_logsumexp_f32";
function arm_logsumexp_dot_prod_f32
(pSrcA : access arm_math_types_h.float32_t;
pSrcB : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pTmpBuffer : access arm_math_types_h.float32_t) return arm_math_types_h.float32_t -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:90
with Import => True,
Convention => C,
External_Name => "arm_logsumexp_dot_prod_f32";
function arm_entropy_f32 (pSrcA : access arm_math_types_h.float32_t; blockSize : sys_ustdint_h.uint32_t) return arm_math_types_h.float32_t -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:105
with Import => True,
Convention => C,
External_Name => "arm_entropy_f32";
function arm_entropy_f64 (pSrcA : access arm_math_types_h.float64_t; blockSize : sys_ustdint_h.uint32_t) return arm_math_types_h.float64_t -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:118
with Import => True,
Convention => C,
External_Name => "arm_entropy_f64";
function arm_kullback_leibler_f32
(pSrcA : access arm_math_types_h.float32_t;
pSrcB : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t) return arm_math_types_h.float32_t -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:130
with Import => True,
Convention => C,
External_Name => "arm_kullback_leibler_f32";
function arm_kullback_leibler_f64
(pSrcA : access arm_math_types_h.float64_t;
pSrcB : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t) return arm_math_types_h.float64_t -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:144
with Import => True,
Convention => C,
External_Name => "arm_kullback_leibler_f64";
procedure arm_power_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q63_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:155
with Import => True,
Convention => C,
External_Name => "arm_power_q31";
procedure arm_power_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:167
with Import => True,
Convention => C,
External_Name => "arm_power_f32";
procedure arm_power_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:179
with Import => True,
Convention => C,
External_Name => "arm_power_f64";
procedure arm_power_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q63_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:191
with Import => True,
Convention => C,
External_Name => "arm_power_q15";
procedure arm_power_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:203
with Import => True,
Convention => C,
External_Name => "arm_power_q7";
procedure arm_mean_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q7_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:215
with Import => True,
Convention => C,
External_Name => "arm_mean_q7";
procedure arm_mean_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:227
with Import => True,
Convention => C,
External_Name => "arm_mean_q15";
procedure arm_mean_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:239
with Import => True,
Convention => C,
External_Name => "arm_mean_q31";
procedure arm_mean_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:251
with Import => True,
Convention => C,
External_Name => "arm_mean_f32";
procedure arm_mean_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:263
with Import => True,
Convention => C,
External_Name => "arm_mean_f64";
procedure arm_var_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:275
with Import => True,
Convention => C,
External_Name => "arm_var_f32";
procedure arm_var_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:287
with Import => True,
Convention => C,
External_Name => "arm_var_f64";
procedure arm_var_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:299
with Import => True,
Convention => C,
External_Name => "arm_var_q31";
procedure arm_var_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:311
with Import => True,
Convention => C,
External_Name => "arm_var_q15";
procedure arm_rms_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:323
with Import => True,
Convention => C,
External_Name => "arm_rms_f32";
procedure arm_rms_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:335
with Import => True,
Convention => C,
External_Name => "arm_rms_q31";
procedure arm_rms_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:347
with Import => True,
Convention => C,
External_Name => "arm_rms_q15";
procedure arm_std_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:359
with Import => True,
Convention => C,
External_Name => "arm_std_f32";
procedure arm_std_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:371
with Import => True,
Convention => C,
External_Name => "arm_std_f64";
procedure arm_std_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:383
with Import => True,
Convention => C,
External_Name => "arm_std_q31";
procedure arm_std_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:395
with Import => True,
Convention => C,
External_Name => "arm_std_q15";
procedure arm_min_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
result : access arm_math_types_h.q7_t;
index : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:409
with Import => True,
Convention => C,
External_Name => "arm_min_q7";
procedure arm_absmin_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
result : access arm_math_types_h.q7_t;
index : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:422
with Import => True,
Convention => C,
External_Name => "arm_absmin_q7";
procedure arm_absmin_no_idx_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
result : access arm_math_types_h.q7_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:434
with Import => True,
Convention => C,
External_Name => "arm_absmin_no_idx_q7";
procedure arm_min_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:447
with Import => True,
Convention => C,
External_Name => "arm_min_q15";
procedure arm_absmin_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:460
with Import => True,
Convention => C,
External_Name => "arm_absmin_q15";
procedure arm_absmin_no_idx_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:472
with Import => True,
Convention => C,
External_Name => "arm_absmin_no_idx_q15";
procedure arm_min_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:485
with Import => True,
Convention => C,
External_Name => "arm_min_q31";
procedure arm_absmin_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:498
with Import => True,
Convention => C,
External_Name => "arm_absmin_q31";
procedure arm_absmin_no_idx_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:510
with Import => True,
Convention => C,
External_Name => "arm_absmin_no_idx_q31";
procedure arm_min_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:523
with Import => True,
Convention => C,
External_Name => "arm_min_f32";
procedure arm_absmin_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:536
with Import => True,
Convention => C,
External_Name => "arm_absmin_f32";
procedure arm_absmin_no_idx_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:548
with Import => True,
Convention => C,
External_Name => "arm_absmin_no_idx_f32";
procedure arm_min_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:561
with Import => True,
Convention => C,
External_Name => "arm_min_f64";
procedure arm_absmin_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:574
with Import => True,
Convention => C,
External_Name => "arm_absmin_f64";
procedure arm_absmin_no_idx_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:586
with Import => True,
Convention => C,
External_Name => "arm_absmin_no_idx_f64";
procedure arm_max_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q7_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:599
with Import => True,
Convention => C,
External_Name => "arm_max_q7";
procedure arm_absmax_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q7_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:612
with Import => True,
Convention => C,
External_Name => "arm_absmax_q7";
procedure arm_absmax_no_idx_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q7_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:624
with Import => True,
Convention => C,
External_Name => "arm_absmax_no_idx_q7";
procedure arm_max_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:637
with Import => True,
Convention => C,
External_Name => "arm_max_q15";
procedure arm_absmax_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:650
with Import => True,
Convention => C,
External_Name => "arm_absmax_q15";
procedure arm_absmax_no_idx_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:662
with Import => True,
Convention => C,
External_Name => "arm_absmax_no_idx_q15";
procedure arm_max_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:674
with Import => True,
Convention => C,
External_Name => "arm_max_q31";
procedure arm_absmax_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:687
with Import => True,
Convention => C,
External_Name => "arm_absmax_q31";
procedure arm_absmax_no_idx_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:699
with Import => True,
Convention => C,
External_Name => "arm_absmax_no_idx_q31";
procedure arm_max_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:711
with Import => True,
Convention => C,
External_Name => "arm_max_f32";
procedure arm_absmax_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:724
with Import => True,
Convention => C,
External_Name => "arm_absmax_f32";
procedure arm_absmax_no_idx_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:736
with Import => True,
Convention => C,
External_Name => "arm_absmax_no_idx_f32";
procedure arm_max_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:748
with Import => True,
Convention => C,
External_Name => "arm_max_f64";
procedure arm_absmax_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t;
pIndex : access sys_ustdint_h.uint32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:761
with Import => True,
Convention => C,
External_Name => "arm_absmax_f64";
procedure arm_absmax_no_idx_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:773
with Import => True,
Convention => C,
External_Name => "arm_absmax_no_idx_f64";
procedure arm_max_no_idx_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:785
with Import => True,
Convention => C,
External_Name => "arm_max_no_idx_f32";
procedure arm_min_no_idx_f32
(pSrc : access arm_math_types_h.float32_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float32_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:797
with Import => True,
Convention => C,
External_Name => "arm_min_no_idx_f32";
procedure arm_max_no_idx_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:809
with Import => True,
Convention => C,
External_Name => "arm_max_no_idx_f64";
procedure arm_max_no_idx_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:821
with Import => True,
Convention => C,
External_Name => "arm_max_no_idx_q31";
procedure arm_max_no_idx_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:833
with Import => True,
Convention => C,
External_Name => "arm_max_no_idx_q15";
procedure arm_max_no_idx_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q7_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:845
with Import => True,
Convention => C,
External_Name => "arm_max_no_idx_q7";
procedure arm_min_no_idx_f64
(pSrc : access arm_math_types_h.float64_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.float64_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:857
with Import => True,
Convention => C,
External_Name => "arm_min_no_idx_f64";
procedure arm_min_no_idx_q31
(pSrc : access arm_math_types_h.q31_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q31_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:869
with Import => True,
Convention => C,
External_Name => "arm_min_no_idx_q31";
procedure arm_min_no_idx_q15
(pSrc : access arm_math_types_h.q15_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q15_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:881
with Import => True,
Convention => C,
External_Name => "arm_min_no_idx_q15";
procedure arm_min_no_idx_q7
(pSrc : access arm_math_types_h.q7_t;
blockSize : sys_ustdint_h.uint32_t;
pResult : access arm_math_types_h.q7_t) -- ../CMSIS_5/CMSIS/DSP/Include/dsp/statistics_functions.h:893
with Import => True,
Convention => C,
External_Name => "arm_min_no_idx_q7";
end statistics_functions_h;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="11">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName></userIPName>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>matrixmul</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>a</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>a</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>3</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>b</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>b</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<direction>0</direction>
<if_type>1</if_type>
<array_size>3</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>res</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>res</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<direction>1</direction>
<if_type>1</if_type>
<array_size>9</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>48</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name></name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</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>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>54</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>66</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>indvar_flatten</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>68</item>
<item>69</item>
<item>70</item>
<item>71</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>i</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>73</item>
<item>74</item>
<item>75</item>
<item>76</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>j</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>77</item>
<item>78</item>
<item>79</item>
<item>80</item>
</oprand_edges>
<opcode>phi</opcode>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>exitcond_flatten</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>81</item>
<item>83</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>indvar_flatten_next</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>84</item>
<item>86</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>87</item>
<item>88</item>
<item>89</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>exitcond</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</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>90</item>
<item>92</item>
</oprand_edges>
<opcode>icmp</opcode>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>j_mid2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>93</item>
<item>94</item>
<item>95</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>i_s</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>54</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>97</item>
<item>98</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_14">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>i_mid2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>99</item>
<item>100</item>
<item>101</item>
</oprand_edges>
<opcode>select</opcode>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>tmp</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>102</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>tmp_2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>tmp_trn_cast</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>tmp_2_trn_cast</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</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>105</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>tmp_1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</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>107</item>
<item>108</item>
<item>109</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>p_shl_cast</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>5</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>p_addr</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>111</item>
<item>112</item>
</oprand_edges>
<opcode>sub</opcode>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>p_addr_cast</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>113</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>p_addr1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>114</item>
<item>115</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>p_addr1_cast</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>116</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>tmp_5</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>117</item>
</oprand_edges>
<opcode>zext</opcode>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>res_addr</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>57</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>57</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>118</item>
<item>120</item>
<item>121</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>a_addr</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>122</item>
<item>123</item>
<item>124</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>a_load</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>125</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>tmp_6</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>126</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>tmp_s</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>127</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>b_addr</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
<item>130</item>
</oprand_edges>
<opcode>getelementptr</opcode>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>b_load</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>131</item>
</oprand_edges>
<opcode>load</opcode>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>tmp_12</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>132</item>
</oprand_edges>
<opcode>trunc</opcode>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>tmp_4</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>133</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>tmp_7</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>134</item>
<item>135</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>tmp_9</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>137</item>
<item>138</item>
<item>140</item>
<item>142</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>tmp_5_1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>143</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>tmp_8</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>144</item>
<item>145</item>
<item>146</item>
<item>147</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>tmp_6_1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>148</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>tmp_7_1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>149</item>
<item>150</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>tmp_10</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>151</item>
<item>152</item>
<item>154</item>
<item>156</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>tmp_5_2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>157</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>tmp_11</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>158</item>
<item>159</item>
<item>160</item>
<item>161</item>
</oprand_edges>
<opcode>partselect</opcode>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>tmp_6_2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>162</item>
</oprand_edges>
<opcode>sext</opcode>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>tmp_7_2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>163</item>
<item>164</item>
</oprand_edges>
<opcode>mul</opcode>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>tmp1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>165</item>
<item>166</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>tmp_8_2</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</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>167</item>
<item>168</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name></name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>60</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>60</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>169</item>
<item>170</item>
</oprand_edges>
<opcode>store</opcode>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>j_1</name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>56</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>56</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>171</item>
<item>172</item>
</oprand_edges>
<opcode>add</opcode>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>62</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>173</item>
</oprand_edges>
<opcode>br</opcode>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name></name>
<fileName>matrixmul.cpp</fileName>
<fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</fileDirectory>
<lineNumber>65</lineNumber>
<contextFuncName>matrixmul</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Optimization/lab1</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>matrixmul.cpp</first>
<second>matrixmul</second>
</first>
<second>65</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>11</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_52">
<Value>
<Obj>
<type>2</type>
<id>67</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_53">
<Value>
<Obj>
<type>2</type>
<id>72</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_54">
<Value>
<Obj>
<type>2</type>
<id>82</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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>9</content>
</item>
<item class_id_reference="16" object_id="_55">
<Value>
<Obj>
<type>2</type>
<id>85</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_56">
<Value>
<Obj>
<type>2</type>
<id>91</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>3</content>
</item>
<item class_id_reference="16" object_id="_57">
<Value>
<Obj>
<type>2</type>
<id>96</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_58">
<Value>
<Obj>
<type>2</type>
<id>119</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_59">
<Value>
<Obj>
<type>2</type>
<id>139</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_60">
<Value>
<Obj>
<type>2</type>
<id>141</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>15</content>
</item>
<item class_id_reference="16" object_id="_61">
<Value>
<Obj>
<type>2</type>
<id>153</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></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="_62">
<Value>
<Obj>
<type>2</type>
<id>155</id>
<name>empty</name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
</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="_63">
<Obj>
<type>3</type>
<id>9</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>8</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_64">
<Obj>
<type>3</type>
<id>16</id>
<name></name>
<fileName></fileName>
<fileDirectory></fileDirectory>
<lineNumber>0</lineNumber>
<contextFuncName></contextFuncName>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName></originalName>
<rtlName></rtlName>
<coreName></coreName>
</Obj>
<node_objs>
<count>6</count>
<item_version>0</item_version>
<item>10</item>
<item>11</item>
<item>12</item>
<item>13</item>
<item>14</item>
<item>15</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_65">
<Obj>
<type>3</type>
<id>63</id>
<name>.reset</name>
<fileName></fileName>
<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>40</count>
<item_version>0</item_version>
<item>19</item>
<item>20</item>
<item>21</item>
<item>22</item>
<item>23</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>61</item>
<item>62</item>
</node_objs>
</item>
<item class_id_reference="18" object_id="_66">
<Obj>
<type>3</type>
<id>65</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>64</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>94</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_67">
<id>66</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>8</sink_obj>
</item>
<item class_id_reference="20" object_id="_68">
<id>68</id>
<edge_type>1</edge_type>
<source_obj>67</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_69">
<id>69</id>
<edge_type>2</edge_type>
<source_obj>9</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_70">
<id>70</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_71">
<id>71</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>10</sink_obj>
</item>
<item class_id_reference="20" object_id="_72">
<id>73</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_73">
<id>74</id>
<edge_type>2</edge_type>
<source_obj>9</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_74">
<id>75</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_75">
<id>76</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_76">
<id>77</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_77">
<id>78</id>
<edge_type>2</edge_type>
<source_obj>9</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_78">
<id>79</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_79">
<id>80</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>12</sink_obj>
</item>
<item class_id_reference="20" object_id="_80">
<id>81</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_81">
<id>83</id>
<edge_type>1</edge_type>
<source_obj>82</source_obj>
<sink_obj>13</sink_obj>
</item>
<item class_id_reference="20" object_id="_82">
<id>84</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_83">
<id>86</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>14</sink_obj>
</item>
<item class_id_reference="20" object_id="_84">
<id>87</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_85">
<id>88</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_86">
<id>89</id>
<edge_type>2</edge_type>
<source_obj>65</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_87">
<id>90</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_88">
<id>92</id>
<edge_type>1</edge_type>
<source_obj>91</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_89">
<id>93</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_90">
<id>94</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_91">
<id>95</id>
<edge_type>1</edge_type>
<source_obj>12</source_obj>
<sink_obj>20</sink_obj>
</item>
<item class_id_reference="20" object_id="_92">
<id>97</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_93">
<id>98</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>21</sink_obj>
</item>
<item class_id_reference="20" object_id="_94">
<id>99</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_95">
<id>100</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_96">
<id>101</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>22</sink_obj>
</item>
<item class_id_reference="20" object_id="_97">
<id>102</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>23</sink_obj>
</item>
<item class_id_reference="20" object_id="_98">
<id>103</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_99">
<id>104</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_100">
<id>105</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_101">
<id>108</id>
<edge_type>1</edge_type>
<source_obj>22</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_102">
<id>109</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>30</sink_obj>
</item>
<item class_id_reference="20" object_id="_103">
<id>110</id>
<edge_type>1</edge_type>
<source_obj>30</source_obj>
<sink_obj>31</sink_obj>
</item>
<item class_id_reference="20" object_id="_104">
<id>111</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_105">
<id>112</id>
<edge_type>1</edge_type>
<source_obj>28</source_obj>
<sink_obj>32</sink_obj>
</item>
<item class_id_reference="20" object_id="_106">
<id>113</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>33</sink_obj>
</item>
<item class_id_reference="20" object_id="_107">
<id>114</id>
<edge_type>1</edge_type>
<source_obj>29</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_108">
<id>115</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>34</sink_obj>
</item>
<item class_id_reference="20" object_id="_109">
<id>116</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>35</sink_obj>
</item>
<item class_id_reference="20" object_id="_110">
<id>117</id>
<edge_type>1</edge_type>
<source_obj>35</source_obj>
<sink_obj>36</sink_obj>
</item>
<item class_id_reference="20" object_id="_111">
<id>118</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_112">
<id>120</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_113">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
</item>
<item class_id_reference="20" object_id="_114">
<id>122</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_115">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_116">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>23</source_obj>
<sink_obj>38</sink_obj>
</item>
<item class_id_reference="20" object_id="_117">
<id>125</id>
<edge_type>1</edge_type>
<source_obj>38</source_obj>
<sink_obj>39</sink_obj>
</item>
<item class_id_reference="20" object_id="_118">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>40</sink_obj>
</item>
<item class_id_reference="20" object_id="_119">
<id>127</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>41</sink_obj>
</item>
<item class_id_reference="20" object_id="_120">
<id>128</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_121">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>119</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_122">
<id>130</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>42</sink_obj>
</item>
<item class_id_reference="20" object_id="_123">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>42</source_obj>
<sink_obj>43</sink_obj>
</item>
<item class_id_reference="20" object_id="_124">
<id>132</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
</item>
<item class_id_reference="20" object_id="_125">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
</item>
<item class_id_reference="20" object_id="_126">
<id>134</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_127">
<id>135</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
</item>
<item class_id_reference="20" object_id="_128">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_129">
<id>140</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_130">
<id>142</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>47</sink_obj>
</item>
<item class_id_reference="20" object_id="_131">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>47</source_obj>
<sink_obj>48</sink_obj>
</item>
<item class_id_reference="20" object_id="_132">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_133">
<id>146</id>
<edge_type>1</edge_type>
<source_obj>139</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_134">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>141</source_obj>
<sink_obj>49</sink_obj>
</item>
<item class_id_reference="20" object_id="_135">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
</item>
<item class_id_reference="20" object_id="_136">
<id>149</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_137">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>50</source_obj>
<sink_obj>51</sink_obj>
</item>
<item class_id_reference="20" object_id="_138">
<id>152</id>
<edge_type>1</edge_type>
<source_obj>39</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_139">
<id>154</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_140">
<id>156</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>52</sink_obj>
</item>
<item class_id_reference="20" object_id="_141">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>52</source_obj>
<sink_obj>53</sink_obj>
</item>
<item class_id_reference="20" object_id="_142">
<id>159</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_143">
<id>160</id>
<edge_type>1</edge_type>
<source_obj>153</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_144">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>155</source_obj>
<sink_obj>54</sink_obj>
</item>
<item class_id_reference="20" object_id="_145">
<id>162</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>55</sink_obj>
</item>
<item class_id_reference="20" object_id="_146">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>53</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_147">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>56</sink_obj>
</item>
<item class_id_reference="20" object_id="_148">
<id>165</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_149">
<id>166</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>57</sink_obj>
</item>
<item class_id_reference="20" object_id="_150">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_151">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>51</source_obj>
<sink_obj>58</sink_obj>
</item>
<item class_id_reference="20" object_id="_152">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>58</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_153">
<id>170</id>
<edge_type>1</edge_type>
<source_obj>37</source_obj>
<sink_obj>59</sink_obj>
</item>
<item class_id_reference="20" object_id="_154">
<id>171</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_155">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>20</source_obj>
<sink_obj>61</sink_obj>
</item>
<item class_id_reference="20" object_id="_156">
<id>173</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>62</sink_obj>
</item>
<item class_id_reference="20" object_id="_157">
<id>215</id>
<edge_type>2</edge_type>
<source_obj>9</source_obj>
<sink_obj>16</sink_obj>
</item>
<item class_id_reference="20" object_id="_158">
<id>216</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>65</sink_obj>
</item>
<item class_id_reference="20" object_id="_159">
<id>217</id>
<edge_type>2</edge_type>
<source_obj>16</source_obj>
<sink_obj>63</sink_obj>
</item>
<item class_id_reference="20" object_id="_160">
<id>218</id>
<edge_type>2</edge_type>
<source_obj>63</source_obj>
<sink_obj>16</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="_161">
<mId>1</mId>
<mTag>matrixmul</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>12</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_162">
<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>9</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="_163">
<mId>3</mId>
<mTag>Row_Col</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>16</item>
<item>63</item>
</basic_blocks>
<mII>1</mII>
<mDepth>3</mDepth>
<mMinTripCount>9</mMinTripCount>
<mMaxTripCount>9</mMaxTripCount>
<mMinLatency>10</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
<item class_id_reference="22" object_id="_164">
<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>65</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>0</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"></mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="-1"></fsm>
<res class_id="25" tracking_level="1" version="0" object_id="_165">
<dp_component_resource class_id="26" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_resource>
<dp_expression_resource>
<count>0</count>
<item_version>0</item_version>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>0</count>
<item_version>0</item_version>
</dp_multiplexer_resource>
<dp_register_resource>
<count>0</count>
<item_version>0</item_version>
</dp_register_resource>
<dp_component_map class_id="27" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="28" tracking_level="0" version="0">
<count>48</count>
<item_version>0</item_version>
<item class_id="29" tracking_level="0" version="0">
<first>8</first>
<second class_id="30" tracking_level="0" version="0">
<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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>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>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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>39</first>
<second>
<first>1</first>
<second>1</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>1</first>
<second>0</second>
</second>
</item>
<item>
<first>43</first>
<second>
<first>1</first>
<second>1</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>2</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>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>2</first>
<second>0</second>
</second>
</item>
<item>
<first>53</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>54</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>62</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="31" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="0" version="0">
<first>9</first>
<second class_id="33" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</first>
<second>1</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>1</first>
<second>3</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>2</first>
<second>2</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="34" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="35" tracking_level="1" version="0" object_id="_166">
<region_name>Row_Col</region_name>
<basic_blocks>
<count>2</count>
<item_version>0</item_version>
<item>16</item>
<item>63</item>
</basic_blocks>
<nodes>
<count>0</count>
<item_version>0</item_version>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>8</region_type>
<interval>1</interval>
<pipe_depth>3</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="36" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="38" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_reg_nodes>
<dp_regname_nodes>
<count>0</count>
<item_version>0</item_version>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="39" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_port_io_nodes>
<port2core class_id="40" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>0</count>
<item_version>0</item_version>
</node2core>
</syndb>
</boost_serialization>
|
-- This file is covered by the Internet Software Consortium (ISC) License
-- Reference: ../License.txt
with Interfaces.C;
with Interfaces.C_Streams;
with Interfaces.C.Strings;
with HelperText;
package Unix is
package HT renames HelperText;
package IC renames Interfaces.C;
package ICS renames Interfaces.C.Strings;
package CSM renames Interfaces.C_Streams;
type process_exit is (still_running, exited_normally, exited_with_error);
type Int32 is private;
subtype pid_t is Int32;
-- check if process identified by pid has exited or keeps going
function process_status (pid : pid_t) return process_exit;
-- Kill everything with the identified process group
procedure kill_process_tree (process_group : pid_t);
-- Allows other packages to call external commands (e.g. Pilot)
-- Returns "True" on success
function external_command (command : String) return Boolean;
-- wrapper for nonblocking spawn
function launch_process (command : String) return pid_t;
-- Returns True if pid is less than zero
function fork_failed (pid : pid_t) return Boolean;
-- Returns True if "variable" is defined in the environment. The
-- value of variable is irrelevant
function env_variable_defined (variable : String) return Boolean;
-- Return value of "variable" defined in environment. If it's not
-- defined than an empty string is returned;
function env_variable_value (variable : String) return String;
-- Execute popen and return stdout+stderr combined
-- Also the result status is returned as an "out" variable
function piped_command
(command : String;
status : out Integer) return HT.Text;
-- Run external command that is expected to have no output to standard
-- out, but catch stdout anyway. Don't return any output, but do return
-- True of the command returns status of zero.
function piped_mute_command
(command : String;
abnormal : out HT.Text) return Boolean;
-- When the cone of silence is deployed, the terminal does not echo
-- and Control-Q/S keystrokes are not captured (and vice-versa)
procedure cone_of_silence (deploy : Boolean);
-- Returns True if a TTY device is detected
function screen_attached return Boolean;
-- Equivalent of libc's realpath() function
-- It resolves symlinks and relative directories to get the true path
function true_path (provided_path : String) return String;
-- Ignore SIGTTOU signal (background process trying to write to terminal)
-- If that happens, synth will suspend and ultimately fail.
procedure ignore_background_tty;
-- Attempts to create a hardlink and returns True on success
function create_hardlink (actual_file : String; destination : String) return Boolean;
-- Attempts to create a symlink and returns True on success
function create_symlink (actual_file : String; destination : String) return Boolean;
private
type uInt8 is mod 2 ** 16;
type Int32 is range -(2 ** 31) .. +(2 ** 31) - 1;
popen_re : constant IC.char_array := IC.To_C ("re");
popen_r : constant IC.char_array := IC.To_C ("r");
function popen (Command, Mode : IC.char_array) return CSM.FILEs;
pragma Import (C, popen);
function pclose (FileStream : CSM.FILEs) return CSM.int;
pragma Import (C, pclose);
function ferror (FileStream : CSM.FILEs) return CSM.int;
pragma Import (C, ferror);
function realpath (pathname, resolved_path : IC.char_array)
return ICS.chars_ptr;
pragma Import (C, realpath, "realpath");
function nohang_waitpid (pid : pid_t) return uInt8;
pragma Import (C, nohang_waitpid, "__nohang_waitpid");
function silent_control return uInt8;
pragma Import (C, silent_control, "__silent_control");
function chatty_control return uInt8;
pragma Import (C, chatty_control, "__chatty_control");
function signal_runaway (pid : pid_t) return IC.int;
pragma Import (C, signal_runaway, "__shut_it_down");
function ignore_tty_write return uInt8;
pragma Import (C, ignore_tty_write, "__ignore_background_tty_writes");
function ignore_tty_read return uInt8;
pragma Import (C, ignore_tty_read, "__ignore_background_tty_reads");
function link (path1, path2 : IC.char_array) return IC.int;
pragma Import (C, link);
function symlink (path1, path2 : IC.char_array) return IC.int;
pragma Import (C, symlink);
-- internal pipe close command
function pipe_close (OpenFile : CSM.FILEs) return Integer;
-- internal pipe read command
function pipe_read (OpenFile : CSM.FILEs) return HT.Text;
-- Internal file error check
function good_stream (OpenFile : CSM.FILEs) return Boolean;
end Unix;
|
-- This spec has been automatically generated from STM32F429x.svd
pragma Restrictions (No_Elaboration_Code);
pragma Ada_2012;
with HAL;
with System;
package STM32_SVD.PWR is
pragma Preelaborate;
---------------
-- Registers --
---------------
-----------------
-- CR_Register --
-----------------
subtype CR_PLS_Field is HAL.UInt3;
subtype CR_VOS_Field is HAL.UInt2;
subtype CR_UDEN_Field is HAL.UInt2;
-- power control register
type CR_Register is record
-- Low-power deep sleep
LPDS : Boolean := False;
-- Power down deepsleep
PDDS : Boolean := False;
-- Clear wakeup flag
CWUF : Boolean := False;
-- Clear standby flag
CSBF : Boolean := False;
-- Power voltage detector enable
PVDE : Boolean := False;
-- PVD level selection
PLS : CR_PLS_Field := 16#0#;
-- Disable backup domain write protection
DBP : Boolean := False;
-- Flash power down in Stop mode
FPDS : Boolean := False;
-- Low-Power Regulator Low Voltage in deepsleep
LPLVDS : Boolean := False;
-- Main regulator low voltage in deepsleep mode
MRLVDS : Boolean := False;
-- unspecified
Reserved_12_12 : HAL.Bit := 16#0#;
-- ADCDC1
ADCDC1 : Boolean := False;
-- Regulator voltage scaling output selection
VOS : CR_VOS_Field := 16#3#;
-- Over-drive enable
ODEN : Boolean := False;
-- Over-drive switching enabled
ODSWEN : Boolean := False;
-- Under-drive enable in stop mode
UDEN : CR_UDEN_Field := 16#0#;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CR_Register use record
LPDS at 0 range 0 .. 0;
PDDS at 0 range 1 .. 1;
CWUF at 0 range 2 .. 2;
CSBF at 0 range 3 .. 3;
PVDE at 0 range 4 .. 4;
PLS at 0 range 5 .. 7;
DBP at 0 range 8 .. 8;
FPDS at 0 range 9 .. 9;
LPLVDS at 0 range 10 .. 10;
MRLVDS at 0 range 11 .. 11;
Reserved_12_12 at 0 range 12 .. 12;
ADCDC1 at 0 range 13 .. 13;
VOS at 0 range 14 .. 15;
ODEN at 0 range 16 .. 16;
ODSWEN at 0 range 17 .. 17;
UDEN at 0 range 18 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
------------------
-- CSR_Register --
------------------
subtype CSR_UDRDY_Field is HAL.UInt2;
-- power control/status register
type CSR_Register is record
-- Read-only. Wakeup flag
WUF : Boolean := False;
-- Read-only. Standby flag
SBF : Boolean := False;
-- Read-only. PVD output
PVDO : Boolean := False;
-- Read-only. Backup regulator ready
BRR : Boolean := False;
-- unspecified
Reserved_4_7 : HAL.UInt4 := 16#0#;
-- Enable WKUP pin
EWUP : Boolean := False;
-- Backup regulator enable
BRE : Boolean := False;
-- unspecified
Reserved_10_13 : HAL.UInt4 := 16#0#;
-- Regulator voltage scaling output selection ready bit
VOSRDY : Boolean := False;
-- unspecified
Reserved_15_15 : HAL.Bit := 16#0#;
-- Read-only. Over-drive mode ready
ODRDY : Boolean := False;
-- Read-only. Over-drive mode switching ready
ODSWRDY : Boolean := False;
-- Under-drive ready flag
UDRDY : CSR_UDRDY_Field := 16#0#;
-- unspecified
Reserved_20_31 : HAL.UInt12 := 16#0#;
end record
with Volatile_Full_Access, Size => 32,
Bit_Order => System.Low_Order_First;
for CSR_Register use record
WUF at 0 range 0 .. 0;
SBF at 0 range 1 .. 1;
PVDO at 0 range 2 .. 2;
BRR at 0 range 3 .. 3;
Reserved_4_7 at 0 range 4 .. 7;
EWUP at 0 range 8 .. 8;
BRE at 0 range 9 .. 9;
Reserved_10_13 at 0 range 10 .. 13;
VOSRDY at 0 range 14 .. 14;
Reserved_15_15 at 0 range 15 .. 15;
ODRDY at 0 range 16 .. 16;
ODSWRDY at 0 range 17 .. 17;
UDRDY at 0 range 18 .. 19;
Reserved_20_31 at 0 range 20 .. 31;
end record;
-----------------
-- Peripherals --
-----------------
-- Power control
type PWR_Peripheral is record
-- power control register
CR : CR_Register;
-- power control/status register
CSR : CSR_Register;
end record
with Volatile;
for PWR_Peripheral use record
CR at 0 range 0 .. 31;
CSR at 4 range 0 .. 31;
end record;
-- Power control
PWR_Periph : aliased PWR_Peripheral
with Import, Address => PWR_Base;
end STM32_SVD.PWR;
|
-- Copyright 2015-2017 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Bar is
procedure Do_Nothing (C : Character) is
begin
null;
end Do_Nothing;
function Get_Str (S1 : String; S2 : String := "") return Object_Type is
begin
return (Ada.Finalization.Controlled with Value => True);
end Get_Str;
end Bar;
|
-- Copyright 2011-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 System;
package Pck is
procedure Do_Nothing (A : System.Address);
function Foos return String;
end Pck;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="17">
<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>sigmoid_top</name>
<module_structure>Pipeline</module_structure>
<ret_bitwidth>8</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/>
<contextNormFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>in.V</originalName>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1936482662</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</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>110</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_2">
<Value>
<Obj>
<type>0</type>
<id>8</id>
<name>in_read</name>
<fileName>Sigmoid.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>3</lineNumber>
<contextFuncName>sigmoid_top</contextFuncName>
<contextNormFuncName>sigmoid_top</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</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>Sigmoid.cpp</first>
<second>sigmoid_top</second>
</first>
<second>3</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>840969272</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</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>1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_3">
<Value>
<Obj>
<type>0</type>
<id>9</id>
<name>icmp_ln1549</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln1549_fu_438_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>121</item>
<item>123</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.94</m_delay>
<m_topoIndex>44</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_4">
<Value>
<Obj>
<type>0</type>
<id>10</id>
<name>icmp_ln938</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>938</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>938</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln938_fu_562_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>124</item>
<item>126</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.94</m_delay>
<m_topoIndex>67</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>p_Result_s</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1227</lineNumber>
<contextFuncName>countLeadingZeros</contextFuncName>
<contextNormFuncName>countLeadingZeros</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first>
<second>countLeadingZeros</second>
</first>
<second>1227</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>p_Result_s_fu_180_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>741684540</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>128</item>
<item>129</item>
<item>131</item>
<item>133</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>2</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>12</id>
<name>p_Result_6</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1228</lineNumber>
<contextFuncName>countLeadingZeros</contextFuncName>
<contextNormFuncName>countLeadingZeros</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first>
<second>countLeadingZeros</second>
</first>
<second>1228</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>p_Result_6_fu_190_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>840969272</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>135</item>
<item>137</item>
<item>138</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>3</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>13</id>
<name>l</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1229</lineNumber>
<contextFuncName>countLeadingZeros</contextFuncName>
<contextNormFuncName>countLeadingZeros</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first>
<second>countLeadingZeros</second>
</first>
<second>1229</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>l</originalName>
<rtlName>l_fu_198_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>741613612</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>140</item>
<item>141</item>
<item>143</item>
</oprand_edges>
<opcode>cttz</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>4</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>14</id>
<name>sub_ln947</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>947</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>947</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln947_fu_206_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>145</item>
<item>146</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.51</m_delay>
<m_topoIndex>5</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>trunc_ln947</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>947</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>947</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln947_fu_212_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1013281633</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</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>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>6</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>16</id>
<name>lsb_index</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>947</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>947</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lsb_index</originalName>
<rtlName>lsb_index_fu_256_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>148</item>
<item>150</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.51</m_delay>
<m_topoIndex>13</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>17</id>
<name>tmp_6</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>949</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>949</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_6_fu_261_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>741875756</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>31</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>
<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="_12">
<Value>
<Obj>
<type>0</type>
<id>18</id>
<name>icmp_ln949</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>949</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>949</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln949_fu_271_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>158</item>
<item>160</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.28</m_delay>
<m_topoIndex>15</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_13">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>trunc_ln950</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>950</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>950</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln950_fu_216_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>741487420</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>161</item>
</oprand_edges>
<opcode>trunc</opcode>
<m_Display>0</m_Display>
<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="_14">
<Value>
<Obj>
<type>0</type>
<id>20</id>
<name>sub_ln950</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>950</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>950</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln950_fu_277_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>163</item>
<item>164</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.01</m_delay>
<m_topoIndex>16</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_15">
<Value>
<Obj>
<type>0</type>
<id>21</id>
<name>zext_ln950</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>950</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>950</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln950_fu_282_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>744846706</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</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>17</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_16">
<Value>
<Obj>
<type>0</type>
<id>22</id>
<name>lshr_ln950</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>950</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>950</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>lshr_ln950_fu_286_p2</rtlName>
<control>auto</control>
<opType>lshr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>75</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>167</item>
<item>168</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>18</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_17">
<Value>
<Obj>
<type>0</type>
<id>23</id>
<name>p_Result_2</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>950</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>950</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>p_Result_2_fu_292_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>169</item>
<item>170</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>19</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_18">
<Value>
<Obj>
<type>0</type>
<id>24</id>
<name>icmp_ln950</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>950</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>950</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln950_fu_297_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>171</item>
<item>172</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.41</m_delay>
<m_topoIndex>20</m_topoIndex>
<m_clusterGroupNumber>1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_19">
<Value>
<Obj>
<type>0</type>
<id>25</id>
<name>tmp_8</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_8_fu_303_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1948265528</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>174</item>
<item>175</item>
<item>176</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>21</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_20">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name>xor_ln952</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>xor_ln952_fu_311_p2</rtlName>
<control>auto</control>
<opType>xor</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>177</item>
<item>178</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>22</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_21">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name>and_ln949</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>949</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>949</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln949_fu_317_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>179</item>
<item>180</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>23</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_22">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name>add_ln952</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln952_fu_220_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>181</item>
<item>183</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.35</m_delay>
<m_topoIndex>8</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_23">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name>shl_ln952</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>shl_ln952_fu_323_p2</rtlName>
<control>auto</control>
<opType>shl</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>75</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>185</item>
<item>186</item>
</oprand_edges>
<opcode>shl</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>24</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_24">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name>and_ln952</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln952_fu_328_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>187</item>
<item>188</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>25</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_25">
<Value>
<Obj>
<type>0</type>
<id>31</id>
<name>p_Result_3</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>p_Result_3_fu_333_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>189</item>
<item>190</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.83</m_delay>
<m_topoIndex>26</m_topoIndex>
<m_clusterGroupNumber>3</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_26">
<Value>
<Obj>
<type>0</type>
<id>32</id>
<name>a</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>a</originalName>
<rtlName>a_fu_339_p2</rtlName>
<control>auto</control>
<opType>or</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>191</item>
<item>192</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>27</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_27">
<Value>
<Obj>
<type>0</type>
<id>33</id>
<name>zext_ln960</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>960</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>960</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln960_fu_367_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>807414835</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>193</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>32</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_28">
<Value>
<Obj>
<type>0</type>
<id>34</id>
<name>icmp_ln961</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>961</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>961</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln961_fu_345_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>194</item>
<item>195</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.28</m_delay>
<m_topoIndex>28</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_29">
<Value>
<Obj>
<type>0</type>
<id>35</id>
<name>add_ln961</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>961</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>961</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln961_fu_351_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>196</item>
<item>198</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.51</m_delay>
<m_topoIndex>29</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_30">
<Value>
<Obj>
<type>0</type>
<id>36</id>
<name>zext_ln961</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>961</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>961</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln961_fu_370_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1650418789</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>199</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>33</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_31">
<Value>
<Obj>
<type>0</type>
<id>37</id>
<name>lshr_ln961</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>961</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>961</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>lshr_ln961_fu_373_p2</rtlName>
<control>auto</control>
<opType>lshr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>75</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>200</item>
<item>201</item>
</oprand_edges>
<opcode>lshr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>34</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_32">
<Value>
<Obj>
<type>0</type>
<id>38</id>
<name>sub_ln962</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>962</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>962</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln962_fu_356_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>203</item>
<item>204</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.51</m_delay>
<m_topoIndex>30</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_33">
<Value>
<Obj>
<type>0</type>
<id>39</id>
<name>zext_ln962</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>962</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>962</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln962_fu_379_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>892543020</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>205</item>
</oprand_edges>
<opcode>zext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>35</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_34">
<Value>
<Obj>
<type>0</type>
<id>40</id>
<name>shl_ln962</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>962</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>962</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>shl_ln962_fu_382_p2</rtlName>
<control>auto</control>
<opType>shl</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>75</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>206</item>
<item>207</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>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_35">
<Value>
<Obj>
<type>0</type>
<id>41</id>
<name>tobool29_i_i679</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>952</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>952</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tobool29_i_i679_fu_361_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>208</item>
<item>209</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.47</m_delay>
<m_topoIndex>31</m_topoIndex>
<m_clusterGroupNumber>2</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_36">
<Value>
<Obj>
<type>0</type>
<id>42</id>
<name>m</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>961</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>961</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName>m_fu_388_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>73</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>210</item>
<item>211</item>
<item>212</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>37</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_37">
<Value>
<Obj>
<type>0</type>
<id>43</id>
<name>zext_ln964</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>964</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>964</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln964_fu_395_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1751344500</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>213</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>38</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_38">
<Value>
<Obj>
<type>0</type>
<id>44</id>
<name>m_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>964</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>964</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName>m_1_fu_398_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>214</item>
<item>215</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.00</m_delay>
<m_topoIndex>39</m_topoIndex>
<m_clusterGroupNumber>4</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_39">
<Value>
<Obj>
<type>0</type>
<id>45</id>
<name>m_5</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>965</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>965</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName>m_5_reg_869</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1852334949</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>63</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>217</item>
<item>218</item>
<item>219</item>
<item>221</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>40</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_40">
<Value>
<Obj>
<type>0</type>
<id>46</id>
<name>zext_ln965</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>965</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>965</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln965_fu_443_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1886352501</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>222</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>45</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_41">
<Value>
<Obj>
<type>0</type>
<id>47</id>
<name>p_Result_4</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>968</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>968</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>p_Result_4_reg_874</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1633836900</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>224</item>
<item>225</item>
<item>226</item>
</oprand_edges>
<opcode>bitselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>41</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_42">
<Value>
<Obj>
<type>0</type>
<id>48</id>
<name>select_ln946</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>946</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>946</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln946_fu_446_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>73</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>227</item>
<item>229</item>
<item>231</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.49</m_delay>
<m_topoIndex>46</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_43">
<Value>
<Obj>
<type>0</type>
<id>49</id>
<name>trunc_ln946</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>946</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>946</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln946_fu_226_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967295</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>232</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>9</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_44">
<Value>
<Obj>
<type>0</type>
<id>50</id>
<name>sub_ln968</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>968</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>968</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sub_ln968_fu_453_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>10</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>234</item>
<item>235</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>47</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_45">
<Value>
<Obj>
<type>0</type>
<id>51</id>
<name>add_ln968</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>968</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>968</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>add_ln968_fu_458_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>tadder</implIndex>
<coreName>TAddSub</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>10</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>236</item>
<item>237</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.98</m_delay>
<m_topoIndex>48</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_46">
<Value>
<Obj>
<type>0</type>
<id>52</id>
<name>tmp</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>974</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>974</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_fu_464_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1310737748</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>12</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>239</item>
<item>241</item>
<item>242</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>49</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_47">
<Value>
<Obj>
<type>0</type>
<id>53</id>
<name>p_Result_7</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>974</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>974</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>__Result__</originalName>
<rtlName>p_Result_7_fu_472_p5</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967295</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>244</item>
<item>245</item>
<item>246</item>
<item>248</item>
<item>249</item>
</oprand_edges>
<opcode>partset</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>50</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_48">
<Value>
<Obj>
<type>0</type>
<id>54</id>
<name>bitcast_ln741</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_common.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>741</lineNumber>
<contextFuncName>rawBitsToDouble</contextFuncName>
<contextNormFuncName>rawBitsToDouble</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_common.h</first>
<second>rawBitsToDouble</second>
</first>
<second>741</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_175_p0</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1701602675</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>250</item>
</oprand_edges>
<opcode>bitcast</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>52</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_49">
<Value>
<Obj>
<type>0</type>
<id>55</id>
<name>trunc_ln3</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln3_fu_422_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1310737748</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>252</item>
<item>253</item>
<item>254</item>
<item>255</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>42</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_50">
<Value>
<Obj>
<type>0</type>
<id>56</id>
<name>icmp_ln1560</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln1560_fu_484_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>256</item>
<item>258</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.07</m_delay>
<m_topoIndex>51</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_51">
<Value>
<Obj>
<type>0</type>
<id>57</id>
<name>icmp_ln1560_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln1560_1_fu_432_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>259</item>
<item>261</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.36</m_delay>
<m_topoIndex>43</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_52">
<Value>
<Obj>
<type>0</type>
<id>58</id>
<name>or_ln1560</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln1560_fu_523_p2</rtlName>
<control>auto</control>
<opType>or</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>262</item>
<item>263</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>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_53">
<Value>
<Obj>
<type>0</type>
<id>59</id>
<name>tmp_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>dcmp_64ns_64ns_1_2_no_dsp_1_U1</rtlName>
<control>auto</control>
<opType>dcmp</opType>
<implIndex>auto</implIndex>
<coreName>DCompare</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>38</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>264</item>
<item>266</item>
</oprand_edges>
<opcode>dcmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.81</m_delay>
<m_topoIndex>53</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_54">
<Value>
<Obj>
<type>0</type>
<id>60</id>
<name>and_ln1560</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln1560_fu_527_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>267</item>
<item>268</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>59</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_55">
<Value>
<Obj>
<type>0</type>
<id>61</id>
<name>xor_ln1560</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>xor_ln1560_fu_533_p2</rtlName>
<control>auto</control>
<opType>xor</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>269</item>
<item>270</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.47</m_delay>
<m_topoIndex>60</m_topoIndex>
<m_clusterGroupNumber>5</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_56">
<Value>
<Obj>
<type>0</type>
<id>62</id>
<name>tmp_10</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_10_fu_230_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1701602675</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>272</item>
<item>273</item>
<item>275</item>
<item>276</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>10</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_57">
<Value>
<Obj>
<type>0</type>
<id>63</id>
<name>icmp_ln1549_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>icmp_ln1549_1_fu_240_p2</rtlName>
<control>auto</control>
<opType>icmp</opType>
<implIndex>auto</implIndex>
<coreName>Cmp</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>9</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>277</item>
<item>279</item>
</oprand_edges>
<opcode>icmp</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.86</m_delay>
<m_topoIndex>11</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_58">
<Value>
<Obj>
<type>0</type>
<id>64</id>
<name>r_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1386</lineNumber>
<contextFuncName>operator&gt;&gt;</contextFuncName>
<contextNormFuncName>operator_rs</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>1386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>r_1_reg_844</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1768316784</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>281</item>
<item>282</item>
<item>283</item>
<item>284</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>12</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_59">
<Value>
<Obj>
<type>0</type>
<id>65</id>
<name>zext_ln1245</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln1245_fu_567_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1600415096</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>285</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>68</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_60">
<Value>
<Obj>
<type>0</type>
<id>66</id>
<name>ret_V</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName>ret_V_fu_570_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>286</item>
<item>288</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.35</m_delay>
<m_topoIndex>69</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_61">
<Value>
<Obj>
<type>0</type>
<id>67</id>
<name>r_4</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1386</lineNumber>
<contextFuncName>operator&gt;&gt;</contextFuncName>
<contextNormFuncName>operator_rs</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>1386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r</originalName>
<rtlName>r_4_fu_576_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1834970975</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>290</item>
<item>291</item>
<item>292</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>70</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_62">
<Value>
<Obj>
<type>0</type>
<id>68</id>
<name>zext_ln1245_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln1245_1_fu_583_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1685024095</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>293</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>71</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_63">
<Value>
<Obj>
<type>0</type>
<id>69</id>
<name>ret_V_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName>ret_V_1_fu_587_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>294</item>
<item>296</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.35</m_delay>
<m_topoIndex>72</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_64">
<Value>
<Obj>
<type>0</type>
<id>70</id>
<name>r_5</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1386</lineNumber>
<contextFuncName>operator&gt;&gt;</contextFuncName>
<contextNormFuncName>operator_rs</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>1386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r</originalName>
<rtlName>r_5_fu_593_p3</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>741749052</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>298</item>
<item>299</item>
<item>301</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>73</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_65">
<Value>
<Obj>
<type>0</type>
<id>71</id>
<name>ret_V_2</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName>ret_V_2_fu_600_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>302</item>
<item>304</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.35</m_delay>
<m_topoIndex>74</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_66">
<Value>
<Obj>
<type>0</type>
<id>72</id>
<name>or_ln938</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>938</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>938</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln938_fu_606_p2</rtlName>
<control>auto</control>
<opType>or</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</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.47</m_delay>
<m_topoIndex>75</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_67">
<Value>
<Obj>
<type>0</type>
<id>73</id>
<name>or_ln1560_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>or_ln1560_1_fu_611_p2</rtlName>
<control>auto</control>
<opType>or</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>307</item>
<item>308</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>76</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_68">
<Value>
<Obj>
<type>0</type>
<id>74</id>
<name>xor_ln938</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>938</lineNumber>
<contextFuncName>to_double</contextFuncName>
<contextNormFuncName>to_double</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>to_double</second>
</first>
<second>938</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>xor_ln938_fu_616_p2</rtlName>
<control>auto</control>
<opType>xor</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>309</item>
<item>310</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>77</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_69">
<Value>
<Obj>
<type>0</type>
<id>75</id>
<name>and_ln1549</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln1549_fu_622_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>311</item>
<item>312</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>78</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_70">
<Value>
<Obj>
<type>0</type>
<id>76</id>
<name>and_ln1549_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>and_ln1549_1_fu_627_p2</rtlName>
<control>auto</control>
<opType>and</opType>
<implIndex>auto</implIndex>
<coreName>LogicGate</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>74</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>313</item>
<item>314</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.47</m_delay>
<m_topoIndex>79</m_topoIndex>
<m_clusterGroupNumber>7</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_71">
<Value>
<Obj>
<type>0</type>
<id>77</id>
<name>tmp_2</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_2_fu_632_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1935762015</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>316</item>
<item>317</item>
<item>319</item>
<item>320</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>80</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_72">
<Value>
<Obj>
<type>0</type>
<id>78</id>
<name>zext_ln1549</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln1549_fu_642_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>544175214</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>321</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>81</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_73">
<Value>
<Obj>
<type>0</type>
<id>79</id>
<name>tmp_3</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_3_fu_646_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>539107901</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>323</item>
<item>324</item>
<item>325</item>
<item>327</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>82</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_74">
<Value>
<Obj>
<type>0</type>
<id>80</id>
<name>tmp_4</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_4_fu_656_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1869635878</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>328</item>
<item>329</item>
<item>330</item>
<item>331</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>83</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_75">
<Value>
<Obj>
<type>0</type>
<id>81</id>
<name>select_ln1560</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1560</lineNumber>
<contextFuncName>operator&gt;=</contextFuncName>
<contextNormFuncName>operator_ge</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=</second>
</first>
<second>1560</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>select_ln1560_fu_666_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>73</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>332</item>
<item>333</item>
<item>334</item>
</oprand_edges>
<opcode>select</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>84</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_76">
<Value>
<Obj>
<type>0</type>
<id>82</id>
<name>x0_V</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x0.V</originalName>
<rtlName>x0_V_fu_674_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>73</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>335</item>
<item>336</item>
<item>337</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.47</m_delay>
<m_topoIndex>85</m_topoIndex>
<m_clusterGroupNumber>6</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_77">
<Value>
<Obj>
<type>0</type>
<id>83</id>
<name>x0_V_2</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1549</lineNumber>
<contextFuncName>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;=&lt;32, 32, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1549</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>x0.V</originalName>
<rtlName>x0_V_2_fu_691_p3</rtlName>
<control>auto</control>
<opType>select</opType>
<implIndex>auto_sel</implIndex>
<coreName>Sel</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>73</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>338</item>
<item>340</item>
<item>341</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.37</m_delay>
<m_topoIndex>88</m_topoIndex>
<m_clusterGroupNumber>8</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_78">
<Value>
<Obj>
<type>0</type>
<id>84</id>
<name>zext_ln1168</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1168</lineNumber>
<contextFuncName>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>r_V_fu_497_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1730555936</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>13</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>54</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>r_V</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName>mul_8ns_6ns_13_1_1_U2</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>auto</implIndex>
<coreName>Multiplier</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>3</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>343</item>
<item>345</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.70</m_delay>
<m_topoIndex>55</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>m_4</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>640</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</first>
<second>get</second>
</first>
<second>640</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>m</originalName>
<rtlName>m_4_fu_723_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>793988168</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>347</item>
<item>348</item>
<item>349</item>
<item>351</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>95</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_81">
<Value>
<Obj>
<type>0</type>
<id>87</id>
<name>n</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>640</lineNumber>
<contextFuncName>get</contextFuncName>
<contextNormFuncName>get</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</first>
<second>get</second>
</first>
<second>640</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>n</originalName>
<rtlName>n_reg_910</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1631286127</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>352</item>
<item>353</item>
<item>354</item>
<item>355</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>56</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_82">
<Value>
<Obj>
<type>0</type>
<id>88</id>
<name>tmp_5</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_5_reg_915</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>539767593</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>357</item>
<item>358</item>
<item>359</item>
<item>360</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>57</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_83">
<Value>
<Obj>
<type>0</type>
<id>89</id>
<name>zext_ln1171_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_ln1168_fu_542_p00</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1952543333</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>361</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>61</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_84">
<Value>
<Obj>
<type>0</type>
<id>90</id>
<name>mul_ln1168</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1168</lineNumber>
<contextFuncName>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 4, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mul_8ns_5ns_10_1_1_U3</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>auto</implIndex>
<coreName>Multiplier</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>3</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>362</item>
<item>364</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.70</m_delay>
<m_topoIndex>62</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_85">
<Value>
<Obj>
<type>0</type>
<id>91</id>
<name>j</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>717</lineNumber>
<contextFuncName>operator=&lt;16, 8, false, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_16_8_false_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator=&lt;16, 8, false, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>717</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>j</originalName>
<rtlName>j_reg_926</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1768712536</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>365</item>
<item>366</item>
<item>367</item>
<item>368</item>
</oprand_edges>
<opcode>partselect</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>63</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_86">
<Value>
<Obj>
<type>0</type>
<id>92</id>
<name>zext_ln573</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>573</lineNumber>
<contextFuncName>operator unsigned long long</contextFuncName>
<contextNormFuncName>operator_unsigned_long_long</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first>
<second>operator unsigned long long</second>
</first>
<second>573</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln573_fu_558_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1629910131</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>369</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>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_87">
<Value>
<Obj>
<type>0</type>
<id>93</id>
<name>sext_ln1246</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1246</lineNumber>
<contextFuncName>operator-&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_sub_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator-&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln1246_fu_682_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1702129263</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>370</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>86</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_88">
<Value>
<Obj>
<type>0</type>
<id>94</id>
<name>ret_V_3</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1246</lineNumber>
<contextFuncName>operator-&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_sub_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator-&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName>ret_V_3_fu_685_p2</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>372</item>
<item>373</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.35</m_delay>
<m_topoIndex>87</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_89">
<Value>
<Obj>
<type>0</type>
<id>95</id>
<name>ROM_EXP_V_addr</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1169</lineNumber>
<contextFuncName>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_39_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1169</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1936683105</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>374</item>
<item>376</item>
<item>377</item>
</oprand_edges>
<opcode>getelementptr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>65</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_90">
<Value>
<Obj>
<type>0</type>
<id>96</id>
<name>r_V_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1169</lineNumber>
<contextFuncName>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_39_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1169</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName/>
<control>auto</control>
<opType>rom</opType>
<implIndex>auto</implIndex>
<coreName>ROM</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>95</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>378</item>
</oprand_edges>
<opcode>load</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.14</m_delay>
<m_topoIndex>66</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_91">
<Value>
<Obj>
<type>0</type>
<id>97</id>
<name>zext_ln1168_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1168</lineNumber>
<contextFuncName>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_39_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>r_V_2_fu_703_p10</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1663056756</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>379</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>89</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_92">
<Value>
<Obj>
<type>0</type>
<id>98</id>
<name>sext_ln1171</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_39_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1650422894</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>380</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>90</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_93">
<Value>
<Obj>
<type>0</type>
<id>99</id>
<name>r_V_2</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_39_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName>mul_9s_7ns_16_1_1_U4</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>auto</implIndex>
<coreName>Multiplier</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>3</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>381</item>
<item>382</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.57</m_delay>
<m_topoIndex>91</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_94">
<Value>
<Obj>
<type>0</type>
<id>100</id>
<name>sext_ln1168</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1168</lineNumber>
<contextFuncName>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_39_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;39, 33, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln1168_fu_732_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1634887024</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>47</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>383</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>96</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_95">
<Value>
<Obj>
<type>0</type>
<id>101</id>
<name>zext_ln1386</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1386</lineNumber>
<contextFuncName>operator&gt;&gt;</contextFuncName>
<contextNormFuncName>operator_rs</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>1386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln1386_fu_735_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>842087284</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>47</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>384</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>97</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_96">
<Value>
<Obj>
<type>0</type>
<id>102</id>
<name>r</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1386</lineNumber>
<contextFuncName>operator&gt;&gt;</contextFuncName>
<contextNormFuncName>operator_rs</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&gt;&gt;</second>
</first>
<second>1386</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r</originalName>
<rtlName>r_fu_739_p2</rtlName>
<control>auto</control>
<opType>ashr</opType>
<implIndex>auto_pipe</implIndex>
<coreName>Shifter</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>75</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>47</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>385</item>
<item>386</item>
</oprand_edges>
<opcode>ashr</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>98</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_97">
<Value>
<Obj>
<type>0</type>
<id>103</id>
<name>exp_negx_V</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>717</lineNumber>
<contextFuncName>operator=&lt;47, 35, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_47_35_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator=&lt;47, 35, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>717</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>exp_negx.V</originalName>
<rtlName>exp_negx_V_fu_745_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1701080941</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>388</item>
<item>389</item>
<item>391</item>
<item>393</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>99</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_98">
<Value>
<Obj>
<type>0</type>
<id>104</id>
<name>zext_ln1171</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>zext_ln1171_fu_709_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1747871091</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>394</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>92</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_99">
<Value>
<Obj>
<type>0</type>
<id>105</id>
<name>trunc_ln1352</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1352</lineNumber>
<contextFuncName>operator&lt;&lt;</contextFuncName>
<contextNormFuncName>operator_ls</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator&lt;&lt;</second>
</first>
<second>1352</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>trunc_ln1352_fu_713_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1885415456</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>6</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>395</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>93</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_100">
<Value>
<Obj>
<type>0</type>
<id>106</id>
<name>r_V_4</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1171</lineNumber>
<contextFuncName>operator*&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_mul_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator*&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1171</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>r.V</originalName>
<rtlName>mul_8ns_8ns_16_1_1_U5</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>auto</implIndex>
<coreName>Multiplier</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>3</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>16</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>396</item>
<item>397</item>
</oprand_edges>
<opcode>mul</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.70</m_delay>
<m_topoIndex>94</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_101">
<Value>
<Obj>
<type>0</type>
<id>107</id>
<name>sext_ln1245</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>sext_ln1245_fu_755_p1</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>825046065</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>398</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>100</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_102">
<Value>
<Obj>
<type>0</type>
<id>108</id>
<name>ret_V_4</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1245</lineNumber>
<contextFuncName>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_add_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator+&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1245</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName>ret_V_4_fu_759_p2</rtlName>
<control>auto</control>
<opType>add</opType>
<implIndex>fabric</implIndex>
<coreName>Adder</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>399</item>
<item>400</item>
</oprand_edges>
<opcode>add</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>2.21</m_delay>
<m_topoIndex>101</m_topoIndex>
<m_clusterGroupNumber>9</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_103">
<Value>
<Obj>
<type>0</type>
<id>109</id>
<name>zext_ln1246</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1246</lineNumber>
<contextFuncName>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_sub_55_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>grp_fu_796_p10</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>574451311</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>401</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>102</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_104">
<Value>
<Obj>
<type>0</type>
<id>110</id>
<name>sext_ln1246_1</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1246</lineNumber>
<contextFuncName>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_sub_55_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1702063201</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>402</item>
</oprand_edges>
<opcode>sext</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>103</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_105">
<Value>
<Obj>
<type>0</type>
<id>111</id>
<name>mul_ln1246</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1246</lineNumber>
<contextFuncName>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_sub_55_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>mac_mulsub_9s_16ns_19ns_19_4_1_U6</rtlName>
<control>auto</control>
<opType>mul</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>119</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>403</item>
<item>404</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.02</m_delay>
<m_topoIndex>104</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_106">
<Value>
<Obj>
<type>0</type>
<id>112</id>
<name>lhs_V</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>737</lineNumber>
<contextFuncName>operator=&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator=&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>737</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>lhs.V</originalName>
<rtlName>grp_fu_796_p2</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>644182892</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>406</item>
<item>407</item>
<item>409</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>105</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_107">
<Value>
<Obj>
<type>0</type>
<id>113</id>
<name>ret_V_5</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>1246</lineNumber>
<contextFuncName>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_sub_55_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator-&lt;55, 37, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>1246</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>ret.V</originalName>
<rtlName>mac_mulsub_9s_16ns_19ns_19_4_1_U6</rtlName>
<control>auto</control>
<opType>sub</opType>
<implIndex>dsp</implIndex>
<coreName>DSP48</coreName>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>119</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>19</bitwidth>
</Value>
<oprand_edges>
<count>2</count>
<item_version>0</item_version>
<item>410</item>
<item>411</item>
</oprand_edges>
<opcode>sub</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>1.49</m_delay>
<m_topoIndex>106</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_108">
<Value>
<Obj>
<type>0</type>
<id>114</id>
<name>tmp_7</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>740</lineNumber>
<contextFuncName>operator=&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator=&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>740</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>tmp_7_fu_779_p4</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1852399472</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>7</bitwidth>
</Value>
<oprand_edges>
<count>4</count>
<item_version>0</item_version>
<item>413</item>
<item>414</item>
<item>416</item>
<item>418</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>107</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_109">
<Value>
<Obj>
<type>0</type>
<id>115</id>
<name>and_ln</name>
<fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>740</lineNumber>
<contextFuncName>operator=&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</contextFuncName>
<contextNormFuncName>operator_assign_8_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first>
<second>operator=&lt;8, 2, true, AP_TRN, AP_WRAP, 0&gt;</second>
</first>
<second>740</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>ap_return</rtlName>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1853187616</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<oprand_edges>
<count>3</count>
<item_version>0</item_version>
<item>420</item>
<item>421</item>
<item>422</item>
</oprand_edges>
<opcode>bitconcatenate</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0.00</m_delay>
<m_topoIndex>108</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_110">
<Value>
<Obj>
<type>0</type>
<id>116</id>
<name>_ln37</name>
<fileName>Sigmoid.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>37</lineNumber>
<contextFuncName>sigmoid_top</contextFuncName>
<contextNormFuncName>sigmoid_top</contextNormFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>Sigmoid.cpp</first>
<second>sigmoid_top</second>
</first>
<second>37</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>540766317</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>423</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>109</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
<item class_id_reference="9" object_id="_111">
<Value>
<Obj>
<type>0</type>
<id>461</id>
<name>ROM_EXP_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>ROM_EXP_V_U</rtlName>
<control>auto</control>
<opType>rom_1p</opType>
<implIndex>auto</implIndex>
<coreName>ROM</coreName>
<isStorage>1</isStorage>
<storageDepth>16</storageDepth>
<coreId>95</coreId>
<rtlModuleName>sigmoid_top_ROM_EXP_V</rtlModuleName>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>GlobalMem</opcode>
<m_Display>0</m_Display>
<m_isOnCriticalPath>0</m_isOnCriticalPath>
<m_isLCDNode>0</m_isLCDNode>
<m_isStartOfPath>0</m_isStartOfPath>
<m_delay>0</m_delay>
<m_topoIndex>-1</m_topoIndex>
<m_clusterGroupNumber>-1</m_clusterGroupNumber>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>45</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_112">
<Value>
<Obj>
<type>2</type>
<id>122</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>79</content>
</item>
<item class_id_reference="16" object_id="_113">
<Value>
<Obj>
<type>2</type>
<id>125</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967289</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_114">
<Value>
<Obj>
<type>2</type>
<id>130</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>7</content>
</item>
<item class_id_reference="16" object_id="_115">
<Value>
<Obj>
<type>2</type>
<id>132</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1953394531</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_116">
<Value>
<Obj>
<type>2</type>
<id>136</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1953394531</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>24</bitwidth>
</Value>
<const_type>0</const_type>
<content>16777215</content>
</item>
<item class_id_reference="16" object_id="_117">
<Value>
<Obj>
<type>2</type>
<id>142</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967294</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_118">
<Value>
<Obj>
<type>2</type>
<id>144</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967295</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>8</content>
</item>
<item class_id_reference="16" object_id="_119">
<Value>
<Obj>
<type>2</type>
<id>149</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4294967243</content>
</item>
<item class_id_reference="16" object_id="_120">
<Value>
<Obj>
<type>2</type>
<id>154</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_121">
<Value>
<Obj>
<type>2</type>
<id>156</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967289</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>31</content>
</item>
<item class_id_reference="16" object_id="_122">
<Value>
<Obj>
<type>2</type>
<id>159</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>31</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_123">
<Value>
<Obj>
<type>2</type>
<id>162</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>14</content>
</item>
<item class_id_reference="16" object_id="_124">
<Value>
<Obj>
<type>2</type>
<id>166</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967289</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>255</content>
</item>
<item class_id_reference="16" object_id="_125">
<Value>
<Obj>
<type>2</type>
<id>182</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>203</content>
</item>
<item class_id_reference="16" object_id="_126">
<Value>
<Obj>
<type>2</type>
<id>184</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967294</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_127">
<Value>
<Obj>
<type>2</type>
<id>197</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967294</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4294967242</content>
</item>
<item class_id_reference="16" object_id="_128">
<Value>
<Obj>
<type>2</type>
<id>202</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>54</content>
</item>
<item class_id_reference="16" object_id="_129">
<Value>
<Obj>
<type>2</type>
<id>220</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967294</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>63</content>
</item>
<item class_id_reference="16" object_id="_130">
<Value>
<Obj>
<type>2</type>
<id>228</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4294967292</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1023</content>
</item>
<item class_id_reference="16" object_id="_131">
<Value>
<Obj>
<type>2</type>
<id>230</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>4228300630</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>1022</content>
</item>
<item class_id_reference="16" object_id="_132">
<Value>
<Obj>
<type>2</type>
<id>233</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1989</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_133">
<Value>
<Obj>
<type>2</type>
<id>240</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>2485</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_134">
<Value>
<Obj>
<type>2</type>
<id>247</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>871</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>52</content>
</item>
<item class_id_reference="16" object_id="_135">
<Value>
<Obj>
<type>2</type>
<id>257</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1617</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>11</bitwidth>
</Value>
<const_type>0</const_type>
<content>2047</content>
</item>
<item class_id_reference="16" object_id="_136">
<Value>
<Obj>
<type>2</type>
<id>260</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>625</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>52</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_137">
<Value>
<Obj>
<type>2</type>
<id>265</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>988</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>1</const_type>
<content>2.375</content>
</item>
<item class_id_reference="16" object_id="_138">
<Value>
<Obj>
<type>2</type>
<id>274</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1118</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>4</content>
</item>
<item class_id_reference="16" object_id="_139">
<Value>
<Obj>
<type>2</type>
<id>278</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1232</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>4</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_140">
<Value>
<Obj>
<type>2</type>
<id>287</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1369</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>216</content>
</item>
<item class_id_reference="16" object_id="_141">
<Value>
<Obj>
<type>2</type>
<id>295</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>2113</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>160</content>
</item>
<item class_id_reference="16" object_id="_142">
<Value>
<Obj>
<type>2</type>
<id>300</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1493</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>2</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_143">
<Value>
<Obj>
<type>2</type>
<id>303</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1741</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>128</content>
</item>
<item class_id_reference="16" object_id="_144">
<Value>
<Obj>
<type>2</type>
<id>318</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1865</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>2</content>
</item>
<item class_id_reference="16" object_id="_145">
<Value>
<Obj>
<type>2</type>
<id>326</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>2237</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>9</content>
</item>
<item class_id_reference="16" object_id="_146">
<Value>
<Obj>
<type>2</type>
<id>339</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>2361</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_147">
<Value>
<Obj>
<type>2</type>
<id>344</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>673197110</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>23</content>
</item>
<item class_id_reference="16" object_id="_148">
<Value>
<Obj>
<type>2</type>
<id>350</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>673197109</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_149">
<Value>
<Obj>
<type>2</type>
<id>363</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>640688172</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>10</bitwidth>
</Value>
<const_type>0</const_type>
<content>11</content>
</item>
<item class_id_reference="16" object_id="_150">
<Value>
<Obj>
<type>2</type>
<id>371</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1126703163</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>9</bitwidth>
</Value>
<const_type>0</const_type>
<content>64</content>
</item>
<item class_id_reference="16" object_id="_151">
<Value>
<Obj>
<type>2</type>
<id>375</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1834971487</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_152">
<Value>
<Obj>
<type>2</type>
<id>390</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>539107901</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>6</content>
</item>
<item class_id_reference="16" object_id="_153">
<Value>
<Obj>
<type>2</type>
<id>392</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>858350948</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>13</content>
</item>
<item class_id_reference="16" object_id="_154">
<Value>
<Obj>
<type>2</type>
<id>408</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1834970975</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>13</bitwidth>
</Value>
<const_type>0</const_type>
<content>0</content>
</item>
<item class_id_reference="16" object_id="_155">
<Value>
<Obj>
<type>2</type>
<id>415</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>644182137</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>12</content>
</item>
<item class_id_reference="16" object_id="_156">
<Value>
<Obj>
<type>2</type>
<id>417</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>1869903201</coreId>
<rtlModuleName/>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<const_type>0</const_type>
<content>18</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="_157">
<Obj>
<type>3</type>
<id>117</id>
<name>sigmoid_top</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<contextNormFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<control/>
<opType/>
<implIndex/>
<coreName/>
<isStorage>0</isStorage>
<storageDepth>0</storageDepth>
<coreId>841962316</coreId>
<rtlModuleName/>
</Obj>
<node_objs>
<count>109</count>
<item_version>0</item_version>
<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>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>212</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_158">
<id>120</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>8</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_159">
<id>121</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_160">
<id>123</id>
<edge_type>1</edge_type>
<source_obj>122</source_obj>
<sink_obj>9</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_161">
<id>124</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_162">
<id>126</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>10</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_163">
<id>129</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_164">
<id>131</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_165">
<id>133</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>11</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_166">
<id>137</id>
<edge_type>1</edge_type>
<source_obj>136</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_167">
<id>138</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>12</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_168">
<id>141</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="_169">
<id>143</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>13</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_170">
<id>145</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>14</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_171">
<id>146</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="_172">
<id>147</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>15</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_173">
<id>148</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_174">
<id>150</id>
<edge_type>1</edge_type>
<source_obj>149</source_obj>
<sink_obj>16</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_175">
<id>153</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="_176">
<id>155</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_177">
<id>157</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>17</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_178">
<id>158</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="_179">
<id>160</id>
<edge_type>1</edge_type>
<source_obj>159</source_obj>
<sink_obj>18</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_180">
<id>161</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>19</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_181">
<id>163</id>
<edge_type>1</edge_type>
<source_obj>162</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_182">
<id>164</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>20</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_183">
<id>165</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="_184">
<id>167</id>
<edge_type>1</edge_type>
<source_obj>166</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_185">
<id>168</id>
<edge_type>1</edge_type>
<source_obj>21</source_obj>
<sink_obj>22</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_186">
<id>169</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>23</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_187">
<id>170</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="_188">
<id>171</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="_189">
<id>172</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>24</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_190">
<id>175</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_191">
<id>176</id>
<edge_type>1</edge_type>
<source_obj>156</source_obj>
<sink_obj>25</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_192">
<id>177</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>178</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>26</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_194">
<id>179</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="_195">
<id>180</id>
<edge_type>1</edge_type>
<source_obj>24</source_obj>
<sink_obj>27</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_196">
<id>181</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_197">
<id>183</id>
<edge_type>1</edge_type>
<source_obj>182</source_obj>
<sink_obj>28</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_198">
<id>185</id>
<edge_type>1</edge_type>
<source_obj>184</source_obj>
<sink_obj>29</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_199">
<id>186</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="_200">
<id>187</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="_201">
<id>188</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>30</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_202">
<id>189</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="_203">
<id>190</id>
<edge_type>1</edge_type>
<source_obj>125</source_obj>
<sink_obj>31</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_204">
<id>191</id>
<edge_type>1</edge_type>
<source_obj>31</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_205">
<id>192</id>
<edge_type>1</edge_type>
<source_obj>27</source_obj>
<sink_obj>32</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_206">
<id>193</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>33</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_207">
<id>194</id>
<edge_type>1</edge_type>
<source_obj>16</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_208">
<id>195</id>
<edge_type>1</edge_type>
<source_obj>132</source_obj>
<sink_obj>34</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_209">
<id>196</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_210">
<id>198</id>
<edge_type>1</edge_type>
<source_obj>197</source_obj>
<sink_obj>35</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_211">
<id>199</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="_212">
<id>200</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_213">
<id>201</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>37</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_214">
<id>203</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_215">
<id>204</id>
<edge_type>1</edge_type>
<source_obj>14</source_obj>
<sink_obj>38</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_216">
<id>205</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="_217">
<id>206</id>
<edge_type>1</edge_type>
<source_obj>33</source_obj>
<sink_obj>40</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_218">
<id>207</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="_219">
<id>208</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_220">
<id>209</id>
<edge_type>1</edge_type>
<source_obj>26</source_obj>
<sink_obj>41</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_221">
<id>210</id>
<edge_type>1</edge_type>
<source_obj>34</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_222">
<id>211</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="_223">
<id>212</id>
<edge_type>1</edge_type>
<source_obj>40</source_obj>
<sink_obj>42</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_224">
<id>213</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>43</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_225">
<id>214</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="_226">
<id>215</id>
<edge_type>1</edge_type>
<source_obj>43</source_obj>
<sink_obj>44</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_227">
<id>218</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_228">
<id>219</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_229">
<id>221</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>45</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_230">
<id>222</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>46</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_231">
<id>225</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_232">
<id>226</id>
<edge_type>1</edge_type>
<source_obj>202</source_obj>
<sink_obj>47</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_233">
<id>227</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="_234">
<id>229</id>
<edge_type>1</edge_type>
<source_obj>228</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_235">
<id>231</id>
<edge_type>1</edge_type>
<source_obj>230</source_obj>
<sink_obj>48</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_236">
<id>232</id>
<edge_type>1</edge_type>
<source_obj>13</source_obj>
<sink_obj>49</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_237">
<id>234</id>
<edge_type>1</edge_type>
<source_obj>233</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_238">
<id>235</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>50</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_239">
<id>236</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="_240">
<id>237</id>
<edge_type>1</edge_type>
<source_obj>48</source_obj>
<sink_obj>51</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_241">
<id>241</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>52</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_242">
<id>242</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="_243">
<id>245</id>
<edge_type>1</edge_type>
<source_obj>46</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_244">
<id>246</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="_245">
<id>248</id>
<edge_type>1</edge_type>
<source_obj>247</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_246">
<id>249</id>
<edge_type>1</edge_type>
<source_obj>220</source_obj>
<sink_obj>53</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_247">
<id>250</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="_248">
<id>253</id>
<edge_type>1</edge_type>
<source_obj>44</source_obj>
<sink_obj>55</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>154</source_obj>
<sink_obj>55</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>247</source_obj>
<sink_obj>55</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>51</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_252">
<id>258</id>
<edge_type>1</edge_type>
<source_obj>257</source_obj>
<sink_obj>56</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_253">
<id>259</id>
<edge_type>1</edge_type>
<source_obj>55</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_254">
<id>261</id>
<edge_type>1</edge_type>
<source_obj>260</source_obj>
<sink_obj>57</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_255">
<id>262</id>
<edge_type>1</edge_type>
<source_obj>57</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_256">
<id>263</id>
<edge_type>1</edge_type>
<source_obj>56</source_obj>
<sink_obj>58</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_257">
<id>264</id>
<edge_type>1</edge_type>
<source_obj>54</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_258">
<id>266</id>
<edge_type>1</edge_type>
<source_obj>265</source_obj>
<sink_obj>59</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_259">
<id>267</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="_260">
<id>268</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="_261">
<id>269</id>
<edge_type>1</edge_type>
<source_obj>60</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_262">
<id>270</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>61</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_263">
<id>273</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="_264">
<id>275</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_265">
<id>276</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>62</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_266">
<id>277</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="_267">
<id>279</id>
<edge_type>1</edge_type>
<source_obj>278</source_obj>
<sink_obj>63</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_268">
<id>282</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_269">
<id>283</id>
<edge_type>1</edge_type>
<source_obj>154</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_270">
<id>284</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>64</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_271">
<id>285</id>
<edge_type>1</edge_type>
<source_obj>64</source_obj>
<sink_obj>65</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_272">
<id>286</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="_273">
<id>288</id>
<edge_type>1</edge_type>
<source_obj>287</source_obj>
<sink_obj>66</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_274">
<id>291</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_275">
<id>292</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>67</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_276">
<id>293</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="_277">
<id>294</id>
<edge_type>1</edge_type>
<source_obj>68</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_278">
<id>296</id>
<edge_type>1</edge_type>
<source_obj>295</source_obj>
<sink_obj>69</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_279">
<id>299</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_280">
<id>301</id>
<edge_type>1</edge_type>
<source_obj>300</source_obj>
<sink_obj>70</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_281">
<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="_282">
<id>304</id>
<edge_type>1</edge_type>
<source_obj>303</source_obj>
<sink_obj>71</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_283">
<id>305</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_284">
<id>306</id>
<edge_type>1</edge_type>
<source_obj>10</source_obj>
<sink_obj>72</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_285">
<id>307</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_286">
<id>308</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>73</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_287">
<id>309</id>
<edge_type>1</edge_type>
<source_obj>72</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_288">
<id>310</id>
<edge_type>1</edge_type>
<source_obj>142</source_obj>
<sink_obj>74</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_289">
<id>311</id>
<edge_type>1</edge_type>
<source_obj>63</source_obj>
<sink_obj>75</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_290">
<id>312</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="_291">
<id>313</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="_292">
<id>314</id>
<edge_type>1</edge_type>
<source_obj>61</source_obj>
<sink_obj>76</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_293">
<id>317</id>
<edge_type>1</edge_type>
<source_obj>66</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_294">
<id>319</id>
<edge_type>1</edge_type>
<source_obj>318</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_295">
<id>320</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>77</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_296">
<id>321</id>
<edge_type>1</edge_type>
<source_obj>77</source_obj>
<sink_obj>78</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_297">
<id>324</id>
<edge_type>1</edge_type>
<source_obj>69</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_298">
<id>325</id>
<edge_type>1</edge_type>
<source_obj>318</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_299">
<id>327</id>
<edge_type>1</edge_type>
<source_obj>326</source_obj>
<sink_obj>79</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_300">
<id>329</id>
<edge_type>1</edge_type>
<source_obj>71</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_301">
<id>330</id>
<edge_type>1</edge_type>
<source_obj>318</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_302">
<id>331</id>
<edge_type>1</edge_type>
<source_obj>326</source_obj>
<sink_obj>80</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_303">
<id>332</id>
<edge_type>1</edge_type>
<source_obj>73</source_obj>
<sink_obj>81</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_304">
<id>333</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="_305">
<id>334</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="_306">
<id>335</id>
<edge_type>1</edge_type>
<source_obj>76</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_307">
<id>336</id>
<edge_type>1</edge_type>
<source_obj>79</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_308">
<id>337</id>
<edge_type>1</edge_type>
<source_obj>81</source_obj>
<sink_obj>82</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_309">
<id>338</id>
<edge_type>1</edge_type>
<source_obj>9</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_310">
<id>340</id>
<edge_type>1</edge_type>
<source_obj>339</source_obj>
<sink_obj>83</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_311">
<id>341</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="_312">
<id>342</id>
<edge_type>1</edge_type>
<source_obj>8</source_obj>
<sink_obj>84</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_313">
<id>343</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="_314">
<id>345</id>
<edge_type>1</edge_type>
<source_obj>344</source_obj>
<sink_obj>85</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_315">
<id>348</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="_316">
<id>349</id>
<edge_type>1</edge_type>
<source_obj>144</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_317">
<id>351</id>
<edge_type>1</edge_type>
<source_obj>350</source_obj>
<sink_obj>86</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_318">
<id>353</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_319">
<id>354</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_320">
<id>355</id>
<edge_type>1</edge_type>
<source_obj>130</source_obj>
<sink_obj>87</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_321">
<id>358</id>
<edge_type>1</edge_type>
<source_obj>85</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_322">
<id>359</id>
<edge_type>1</edge_type>
<source_obj>274</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_323">
<id>360</id>
<edge_type>1</edge_type>
<source_obj>350</source_obj>
<sink_obj>88</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_324">
<id>361</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="_325">
<id>362</id>
<edge_type>1</edge_type>
<source_obj>89</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_326">
<id>364</id>
<edge_type>1</edge_type>
<source_obj>363</source_obj>
<sink_obj>90</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_327">
<id>366</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="_328">
<id>367</id>
<edge_type>1</edge_type>
<source_obj>318</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_329">
<id>368</id>
<edge_type>1</edge_type>
<source_obj>326</source_obj>
<sink_obj>91</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_330">
<id>369</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="_331">
<id>370</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="_332">
<id>372</id>
<edge_type>1</edge_type>
<source_obj>371</source_obj>
<sink_obj>94</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_333">
<id>373</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="_334">
<id>374</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_335">
<id>376</id>
<edge_type>1</edge_type>
<source_obj>375</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_336">
<id>377</id>
<edge_type>1</edge_type>
<source_obj>92</source_obj>
<sink_obj>95</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_337">
<id>378</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="_338">
<id>379</id>
<edge_type>1</edge_type>
<source_obj>96</source_obj>
<sink_obj>97</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_339">
<id>380</id>
<edge_type>1</edge_type>
<source_obj>94</source_obj>
<sink_obj>98</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_340">
<id>381</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="_341">
<id>382</id>
<edge_type>1</edge_type>
<source_obj>97</source_obj>
<sink_obj>99</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_342">
<id>383</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="_343">
<id>384</id>
<edge_type>1</edge_type>
<source_obj>86</source_obj>
<sink_obj>101</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_344">
<id>385</id>
<edge_type>1</edge_type>
<source_obj>100</source_obj>
<sink_obj>102</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_345">
<id>386</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="_346">
<id>389</id>
<edge_type>1</edge_type>
<source_obj>102</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_347">
<id>391</id>
<edge_type>1</edge_type>
<source_obj>390</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_348">
<id>393</id>
<edge_type>1</edge_type>
<source_obj>392</source_obj>
<sink_obj>103</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_349">
<id>394</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>104</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_350">
<id>395</id>
<edge_type>1</edge_type>
<source_obj>83</source_obj>
<sink_obj>105</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_351">
<id>396</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_352">
<id>397</id>
<edge_type>1</edge_type>
<source_obj>104</source_obj>
<sink_obj>106</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_353">
<id>398</id>
<edge_type>1</edge_type>
<source_obj>103</source_obj>
<sink_obj>107</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_354">
<id>399</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="_355">
<id>400</id>
<edge_type>1</edge_type>
<source_obj>371</source_obj>
<sink_obj>108</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_356">
<id>401</id>
<edge_type>1</edge_type>
<source_obj>106</source_obj>
<sink_obj>109</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_357">
<id>402</id>
<edge_type>1</edge_type>
<source_obj>108</source_obj>
<sink_obj>110</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_358">
<id>403</id>
<edge_type>1</edge_type>
<source_obj>110</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_359">
<id>404</id>
<edge_type>1</edge_type>
<source_obj>109</source_obj>
<sink_obj>111</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_360">
<id>407</id>
<edge_type>1</edge_type>
<source_obj>105</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_361">
<id>409</id>
<edge_type>1</edge_type>
<source_obj>408</source_obj>
<sink_obj>112</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_362">
<id>410</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="_363">
<id>411</id>
<edge_type>1</edge_type>
<source_obj>111</source_obj>
<sink_obj>113</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_364">
<id>414</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="_365">
<id>416</id>
<edge_type>1</edge_type>
<source_obj>415</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_366">
<id>418</id>
<edge_type>1</edge_type>
<source_obj>417</source_obj>
<sink_obj>114</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_367">
<id>421</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="_368">
<id>422</id>
<edge_type>1</edge_type>
<source_obj>240</source_obj>
<sink_obj>115</sink_obj>
<is_back_edge>0</is_back_edge>
</item>
<item class_id_reference="20" object_id="_369">
<id>423</id>
<edge_type>1</edge_type>
<source_obj>115</source_obj>
<sink_obj>116</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="_370">
<mId>1</mId>
<mTag>sigmoid_top</mTag>
<mNormTag>sigmoid_top</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>117</item>
</basic_blocks>
<mII>1</mII>
<mDepth>12</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>11</mMinLatency>
<mMaxLatency>11</mMaxLatency>
<mIsDfPipe>0</mIsDfPipe>
<mDfPipe class_id="-1"/>
</item>
</cdfg_regions>
<fsm class_id="24" tracking_level="1" version="0" object_id="_371">
<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="_372">
<id>1</id>
<operations class_id="27" tracking_level="0" version="0">
<count>12</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_373">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_374">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_375">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_376">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_377">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_378">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_379">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_380">
<id>28</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_381">
<id>49</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_382">
<id>62</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_383">
<id>63</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_384">
<id>64</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_385">
<id>2</id>
<operations>
<count>19</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_386">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_387">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_388">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_389">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_390">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_391">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_392">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_393">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_394">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_395">
<id>26</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_396">
<id>27</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_397">
<id>29</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_398">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_399">
<id>31</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_400">
<id>32</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_401">
<id>34</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_402">
<id>35</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_403">
<id>38</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_404">
<id>41</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_405">
<id>3</id>
<operations>
<count>12</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_406">
<id>33</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_407">
<id>36</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_408">
<id>37</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_409">
<id>39</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_410">
<id>40</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_411">
<id>42</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_412">
<id>43</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_413">
<id>44</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_414">
<id>45</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_415">
<id>47</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_416">
<id>55</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_417">
<id>57</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_418">
<id>4</id>
<operations>
<count>8</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_419">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_420">
<id>46</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_421">
<id>48</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_422">
<id>50</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_423">
<id>51</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_424">
<id>52</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_425">
<id>53</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_426">
<id>56</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_427">
<id>5</id>
<operations>
<count>6</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_428">
<id>54</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_429">
<id>59</id>
<stage>2</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_430">
<id>84</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_431">
<id>85</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_432">
<id>87</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_433">
<id>88</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_434">
<id>6</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_435">
<id>58</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_436">
<id>59</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_437">
<id>60</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_438">
<id>61</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_439">
<id>89</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_440">
<id>90</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_441">
<id>91</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_442">
<id>92</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_443">
<id>95</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_444">
<id>96</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_445">
<id>7</id>
<operations>
<count>22</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_446">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_447">
<id>65</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_448">
<id>66</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_449">
<id>67</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_450">
<id>68</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_451">
<id>69</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_452">
<id>70</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_453">
<id>71</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_454">
<id>72</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_455">
<id>73</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_456">
<id>74</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_457">
<id>75</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_458">
<id>76</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_459">
<id>77</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_460">
<id>78</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_461">
<id>79</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_462">
<id>80</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_463">
<id>81</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_464">
<id>82</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_465">
<id>93</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_466">
<id>94</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_467">
<id>96</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_468">
<id>8</id>
<operations>
<count>7</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_469">
<id>83</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_470">
<id>97</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_471">
<id>98</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_472">
<id>99</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_473">
<id>104</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_474">
<id>105</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_475">
<id>106</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_476">
<id>9</id>
<operations>
<count>10</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_477">
<id>86</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_478">
<id>100</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_479">
<id>101</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_480">
<id>102</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_481">
<id>103</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_482">
<id>107</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_483">
<id>108</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_484">
<id>109</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_485">
<id>110</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_486">
<id>111</id>
<stage>3</stage>
<latency>3</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_487">
<id>10</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_488">
<id>111</id>
<stage>2</stage>
<latency>3</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_489">
<id>11</id>
<operations>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_490">
<id>111</id>
<stage>1</stage>
<latency>3</latency>
</item>
<item class_id_reference="28" object_id="_491">
<id>112</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_492">
<id>113</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="26" object_id="_493">
<id>12</id>
<operations>
<count>9</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_494">
<id>3</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_495">
<id>4</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_496">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_497">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_498">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_499">
<id>113</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="28" object_id="_500">
<id>114</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_501">
<id>115</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="28" object_id="_502">
<id>116</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="_503">
<inState>1</inState>
<outState>2</outState>
<condition class_id="31" tracking_level="0" version="0">
<id>-1</id>
<sop class_id="32" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_504">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_505">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_506">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_507">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_508">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_509">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_510">
<inState>8</inState>
<outState>9</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_511">
<inState>9</inState>
<outState>10</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_512">
<inState>10</inState>
<outState>11</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="30" object_id="_513">
<inState>11</inState>
<outState>12</outState>
<condition>
<id>-1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="34" tracking_level="1" version="0" object_id="_514">
<dp_component_resource class_id="35" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="0" version="0">
<first>dcmp_64ns_64ns_1_2_no_dsp_1_U1 (dcmp_64ns_64ns_1_2_no_dsp_1)</first>
<second class_id="37" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8ns_5ns_10_1_1_U3 (mul_8ns_5ns_10_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="0" version="0">
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>41</second>
</item>
</second>
</item>
<item>
<first>mul_8ns_6ns_13_1_1_U2 (mul_8ns_6ns_13_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>41</second>
</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U5 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>41</second>
</item>
</second>
</item>
<item>
<first>mul_9s_7ns_16_1_1_U4 (mul_9s_7ns_16_1_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>49</second>
</item>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>48</count>
<item_version>0</item_version>
<item>
<first>a_fu_339_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>add_ln952_fu_220_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>15</second>
</item>
</second>
</item>
<item>
<first>add_ln961_fu_351_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>add_ln968_fu_458_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>11</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>and_ln1549_1_fu_627_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>and_ln1549_fu_622_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>and_ln1560_fu_527_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>and_ln949_fu_317_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>and_ln952_fu_328_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>ap_enable_pp0 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1549_1_fu_240_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>4</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1549_fu_438_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1560_1_fu_432_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>52</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>24</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1560_fu_484_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>11</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln938_fu_562_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln949_fu_271_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>31</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>icmp_ln950_fu_297_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>icmp_ln961_fu_345_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>18</second>
</item>
</second>
</item>
<item>
<first>lsb_index_fu_256_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>32</second>
</item>
<item>
<first>(1P1)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>lshr_ln950_fu_286_p2 ( lshr ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>lshr_ln961_fu_373_p2 ( lshr ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>64</second>
</item>
<item>
<first>(1P1)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>182</second>
</item>
</second>
</item>
<item>
<first>m_1_fu_398_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>64</second>
</item>
<item>
<first>(1P1)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>71</second>
</item>
</second>
</item>
<item>
<first>m_fu_388_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>64</second>
</item>
<item>
<first>(2P2)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>or_ln1560_1_fu_611_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>or_ln1560_fu_523_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>or_ln938_fu_606_p2 ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>p_Result_2_fu_292_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>p_Result_3_fu_333_p2 ( icmp ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>8</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>r_fu_739_p2 ( ashr ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>47</second>
</item>
<item>
<first>(1P1)</first>
<second>47</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>147</second>
</item>
</second>
</item>
<item>
<first>ret_V_1_fu_587_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>ret_V_2_fu_600_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>10</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>ret_V_3_fu_685_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>7</second>
</item>
<item>
<first>(1P1)</first>
<second>9</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>ret_V_4_fu_759_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>7</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>ret_V_fu_570_p2 ( + ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>9</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>select_ln1560_fu_666_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>(2P2)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>select_ln946_fu_446_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>10</second>
</item>
<item>
<first>(2P2)</first>
<second>10</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>10</second>
</item>
</second>
</item>
<item>
<first>shl_ln952_fu_323_p2 ( shl ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>17</second>
</item>
</second>
</item>
<item>
<first>shl_ln962_fu_382_p2 ( shl ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>64</second>
</item>
<item>
<first>(1P1)</first>
<second>64</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>182</second>
</item>
</second>
</item>
<item>
<first>sub_ln947_fu_206_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>4</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>sub_ln950_fu_277_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>3</second>
</item>
<item>
<first>(1P1)</first>
<second>4</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>sub_ln962_fu_356_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>6</second>
</item>
<item>
<first>(1P1)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>39</second>
</item>
</second>
</item>
<item>
<first>sub_ln968_fu_453_p2 ( - ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>3</second>
</item>
<item>
<first>(1P1)</first>
<second>11</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>tobool29_i_i679_fu_361_p2 ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>x0_V_2_fu_691_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>7</second>
</item>
<item>
<first>(2P2)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>x0_V_fu_674_p3 ( select ) </first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>8</second>
</item>
<item>
<first>(2P2)</first>
<second>8</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>xor_ln1560_fu_533_p2 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>2</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>xor_ln938_fu_616_p2 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>xor_ln952_fu_311_p2 ( xor ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>2</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
</dp_expression_resource>
<dp_fifo_resource>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_resource>
<dp_memory_resource>
<count>1</count>
<item_version>0</item_version>
<item>
<first>ROM_EXP_V_U</first>
<second>
<count>7</count>
<item_version>0</item_version>
<item>
<first>(0Words)</first>
<second>16</second>
</item>
<item>
<first>(1Bits)</first>
<second>7</second>
</item>
<item>
<first>(2Banks)</first>
<second>1</second>
</item>
<item>
<first>(3W*Bits*Banks)</first>
<second>112</second>
</item>
<item>
<first>BRAM</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>7</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>0</count>
<item_version>0</item_version>
</dp_multiplexer_resource>
<dp_register_resource>
<count>41</count>
<item_version>0</item_version>
<item>
<first>add_ln952_reg_829</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>add_ln961_reg_854</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_CS_fsm</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter1</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter10</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter11</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter2</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter3</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter4</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter5</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter6</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter7</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter8</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>ap_enable_reg_pp0_iter9</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1549_1_reg_839</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1549_reg_884</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1560_1_reg_879</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1560_reg_895</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln1560_reg_895_pp0_iter4_reg</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>icmp_ln961_reg_849</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>in_read_reg_805</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>j_reg_926</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>m_5_reg_869</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>63</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>63</second>
</item>
</second>
</item>
<item>
<first>n_reg_910</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>p_Result_4_reg_874</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>p_Result_7_reg_890</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>64</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>64</second>
</item>
</second>
</item>
<item>
<first>r_1_reg_844</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>7</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>r_V_1_reg_946</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>7</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>7</second>
</item>
</second>
</item>
<item>
<first>r_V_2_reg_951</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>r_V_4_reg_961</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>16</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>16</second>
</item>
</second>
</item>
<item>
<first>r_V_reg_905</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>13</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>13</second>
</item>
</second>
</item>
<item>
<first>ret_V_3_reg_941</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>9</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>9</second>
</item>
</second>
</item>
<item>
<first>sub_ln947_reg_817</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>sub_ln962_reg_859</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>32</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>32</second>
</item>
</second>
</item>
<item>
<first>tmp_5_reg_915</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>tobool29_i_i679_reg_864</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>trunc_ln1352_reg_956</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>6</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>6</second>
</item>
</second>
</item>
<item>
<first>trunc_ln946_reg_834</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>11</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>11</second>
</item>
</second>
</item>
<item>
<first>trunc_ln950_reg_824</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>4</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>4</second>
</item>
</second>
</item>
<item>
<first>x0_V_reg_936</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>8</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>8</second>
</item>
</second>
</item>
<item>
<first>xor_ln1560_reg_920</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>(Bits)</first>
<second>1</second>
</item>
<item>
<first>(Consts)</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>1</second>
</item>
</second>
</item>
</dp_register_resource>
<dp_dsp_resource>
<count>6</count>
<item_version>0</item_version>
<item>
<first>dcmp_64ns_64ns_1_2_no_dsp_1_U1</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mac_mulsub_9s_16ns_19ns_19_4_1_U6</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>DSP</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>mul_8ns_5ns_10_1_1_U3</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8ns_6ns_13_1_1_U2</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U5</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>mul_9s_7ns_16_1_1_U4</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_dsp_resource>
<dp_component_map class_id="39" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="0" version="0">
<first>dcmp_64ns_64ns_1_2_no_dsp_1_U1 (dcmp_64ns_64ns_1_2_no_dsp_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>59</item>
</second>
</item>
<item>
<first>mul_8ns_5ns_10_1_1_U3 (mul_8ns_5ns_10_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>mul_8ns_6ns_13_1_1_U2 (mul_8ns_6ns_13_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>mul_8ns_8ns_16_1_1_U5 (mul_8ns_8ns_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>mul_9s_7ns_16_1_1_U4 (mul_9s_7ns_16_1_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>47</count>
<item_version>0</item_version>
<item>
<first>a_fu_339_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>add_ln952_fu_220_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>add_ln961_fu_351_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>add_ln968_fu_458_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>and_ln1549_1_fu_627_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>and_ln1549_fu_622_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>and_ln1560_fu_527_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>and_ln949_fu_317_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>and_ln952_fu_328_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>icmp_ln1549_1_fu_240_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>icmp_ln1549_fu_438_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>icmp_ln1560_1_fu_432_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>icmp_ln1560_fu_484_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>icmp_ln938_fu_562_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>icmp_ln949_fu_271_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>icmp_ln950_fu_297_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>icmp_ln961_fu_345_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>lsb_index_fu_256_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>lshr_ln950_fu_286_p2 ( lshr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>lshr_ln961_fu_373_p2 ( lshr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>m_1_fu_398_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>m_fu_388_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>or_ln1560_1_fu_611_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>or_ln1560_fu_523_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>or_ln938_fu_606_p2 ( or ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>p_Result_2_fu_292_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>p_Result_3_fu_333_p2 ( icmp ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>r_fu_739_p2 ( ashr ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>ret_V_1_fu_587_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>ret_V_2_fu_600_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>ret_V_3_fu_685_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>ret_V_4_fu_759_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>ret_V_fu_570_p2 ( + ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>select_ln1560_fu_666_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>select_ln946_fu_446_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>shl_ln952_fu_323_p2 ( shl ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>shl_ln962_fu_382_p2 ( shl ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>sub_ln947_fu_206_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>sub_ln950_fu_277_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>sub_ln962_fu_356_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>sub_ln968_fu_453_p2 ( - ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>tobool29_i_i679_fu_361_p2 ( and ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>x0_V_2_fu_691_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>x0_V_fu_674_p3 ( select ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>xor_ln1560_fu_533_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>xor_ln938_fu_616_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>xor_ln952_fu_311_p2 ( xor ) </first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
</dp_expression_map>
<dp_fifo_map>
<count>0</count>
<item_version>0</item_version>
</dp_fifo_map>
<dp_memory_map>
<count>1</count>
<item_version>0</item_version>
<item>
<first>ROM_EXP_V_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
</dp_memory_map>
</res>
<node_label_latency class_id="41" tracking_level="0" version="0">
<count>110</count>
<item_version>0</item_version>
<item class_id="42" tracking_level="0" version="0">
<first>8</first>
<second class_id="43" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>9</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>11</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>12</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>13</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>1</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>21</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>25</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>33</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>1</first>
<second>0</second>
</second>
</item>
<item>
<first>36</first>
<second>
<first>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>1</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>1</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>3</first>
<second>0</second>
</second>
</item>
<item>
<first>47</first>
<second>
<first>2</first>
<second>0</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>3</first>
<second>0</second>
</second>
</item>
<item>
<first>49</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>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>4</first>
<second>0</second>
</second>
</item>
<item>
<first>55</first>
<second>
<first>2</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>2</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>4</first>
<second>1</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>0</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>64</first>
<second>
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>65</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>67</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>68</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>70</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>77</first>
<second>
<first>6</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>6</first>
<second>0</second>
</second>
</item>
<item>
<first>80</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>7</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>8</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>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>6</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>6</first>
<second>0</second>
</second>
</item>
<item>
<first>95</first>
<second>
<first>5</first>
<second>0</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>5</first>
<second>1</second>
</second>
</item>
<item>
<first>97</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>98</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>100</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>101</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>103</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>104</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>105</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
<item>
<first>107</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>109</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>110</first>
<second>
<first>8</first>
<second>0</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>8</first>
<second>2</second>
</second>
</item>
<item>
<first>112</first>
<second>
<first>10</first>
<second>0</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>10</first>
<second>1</second>
</second>
</item>
<item>
<first>114</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>115</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>116</first>
<second>
<first>11</first>
<second>0</second>
</second>
</item>
<item>
<first>461</first>
<second>
<first>0</first>
<second>2</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="44" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="45" tracking_level="0" version="0">
<first>117</first>
<second class_id="46" tracking_level="0" version="0">
<first>0</first>
<second>11</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="47" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="1" version="0" object_id="_515">
<region_name>sigmoid_top</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>117</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>
<mDBIIViolationVec class_id="49" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</mDBIIViolationVec>
</item>
</regions>
<dp_fu_nodes class_id="50" tracking_level="0" version="0">
<count>107</count>
<item_version>0</item_version>
<item class_id="51" tracking_level="0" version="0">
<first>156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>169</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>96</item>
<item>96</item>
</second>
</item>
<item>
<first>175</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>59</item>
<item>59</item>
</second>
</item>
<item>
<first>180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>212</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>216</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>246</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>256</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>277</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>297</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>303</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>317</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>323</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>333</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>345</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>351</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>373</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>379</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>382</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>388</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>395</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>422</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>443</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
<item>
<first>446</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>464</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>484</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>490</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>494</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>503</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>523</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>527</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>542</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>548</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>558</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>570</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>583</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>587</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>593</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>606</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>622</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>627</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>632</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>642</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>656</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>666</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>682</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>685</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>691</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>697</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>700</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>717</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>732</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>735</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>739</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>745</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>755</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>759</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>765</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>768</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>772</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>779</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>788</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>796</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>111</item>
<item>111</item>
<item>111</item>
<item>113</item>
<item>113</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="53" tracking_level="0" version="0">
<count>103</count>
<item_version>0</item_version>
<item class_id="54" tracking_level="0" version="0">
<first>ROM_EXP_V_addr_gep_fu_162</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>a_fu_339</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>32</item>
</second>
</item>
<item>
<first>add_ln952_fu_220</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>add_ln961_fu_351</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>add_ln968_fu_458</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>51</item>
</second>
</item>
<item>
<first>and_ln1549_1_fu_627</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>76</item>
</second>
</item>
<item>
<first>and_ln1549_fu_622</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>75</item>
</second>
</item>
<item>
<first>and_ln1560_fu_527</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>60</item>
</second>
</item>
<item>
<first>and_ln949_fu_317</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>and_ln952_fu_328</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>30</item>
</second>
</item>
<item>
<first>and_ln_fu_788</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>115</item>
</second>
</item>
<item>
<first>bitcast_ln741_fu_490</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>exp_negx_V_fu_745</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>103</item>
</second>
</item>
<item>
<first>icmp_ln1549_1_fu_240</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>icmp_ln1549_fu_438</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>icmp_ln1560_1_fu_432</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>icmp_ln1560_fu_484</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>icmp_ln938_fu_562</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>10</item>
</second>
</item>
<item>
<first>icmp_ln949_fu_271</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>18</item>
</second>
</item>
<item>
<first>icmp_ln950_fu_297</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>24</item>
</second>
</item>
<item>
<first>icmp_ln961_fu_345</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>j_fu_548</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>l_fu_198</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>13</item>
</second>
</item>
<item>
<first>lhs_V_fu_772</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>lsb_index_fu_256</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>16</item>
</second>
</item>
<item>
<first>lshr_ln950_fu_286</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>22</item>
</second>
</item>
<item>
<first>lshr_ln961_fu_373</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>37</item>
</second>
</item>
<item>
<first>m_1_fu_398</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>44</item>
</second>
</item>
<item>
<first>m_4_fu_723</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>86</item>
</second>
</item>
<item>
<first>m_5_fu_404</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>m_fu_388</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>42</item>
</second>
</item>
<item>
<first>mul_ln1168_fu_542</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>90</item>
</second>
</item>
<item>
<first>n_fu_503</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>or_ln1560_1_fu_611</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>73</item>
</second>
</item>
<item>
<first>or_ln1560_fu_523</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>58</item>
</second>
</item>
<item>
<first>or_ln938_fu_606</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>72</item>
</second>
</item>
<item>
<first>p_Result_2_fu_292</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>23</item>
</second>
</item>
<item>
<first>p_Result_3_fu_333</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</second>
</item>
<item>
<first>p_Result_4_fu_414</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>p_Result_6_fu_190</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>12</item>
</second>
</item>
<item>
<first>p_Result_7_fu_472</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>p_Result_s_fu_180</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>r_1_fu_246</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>r_4_fu_576</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>67</item>
</second>
</item>
<item>
<first>r_5_fu_593</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>70</item>
</second>
</item>
<item>
<first>r_V_2_fu_703</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>r_V_4_fu_717</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>r_V_fu_497</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>r_fu_739</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>102</item>
</second>
</item>
<item>
<first>ret_V_1_fu_587</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>69</item>
</second>
</item>
<item>
<first>ret_V_2_fu_600</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>71</item>
</second>
</item>
<item>
<first>ret_V_3_fu_685</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>ret_V_4_fu_759</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>108</item>
</second>
</item>
<item>
<first>ret_V_fu_570</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>66</item>
</second>
</item>
<item>
<first>select_ln1560_fu_666</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>81</item>
</second>
</item>
<item>
<first>select_ln946_fu_446</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>48</item>
</second>
</item>
<item>
<first>sext_ln1168_fu_732</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>100</item>
</second>
</item>
<item>
<first>sext_ln1171_fu_700</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
<item>
<first>sext_ln1245_fu_755</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>107</item>
</second>
</item>
<item>
<first>sext_ln1246_1_fu_768</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>sext_ln1246_fu_682</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>93</item>
</second>
</item>
<item>
<first>shl_ln952_fu_323</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>shl_ln962_fu_382</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>40</item>
</second>
</item>
<item>
<first>sub_ln947_fu_206</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>sub_ln950_fu_277</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>20</item>
</second>
</item>
<item>
<first>sub_ln962_fu_356</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>sub_ln968_fu_453</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>50</item>
</second>
</item>
<item>
<first>tmp_10_fu_230</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>62</item>
</second>
</item>
<item>
<first>tmp_2_fu_632</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>77</item>
</second>
</item>
<item>
<first>tmp_3_fu_646</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>79</item>
</second>
</item>
<item>
<first>tmp_4_fu_656</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>80</item>
</second>
</item>
<item>
<first>tmp_5_fu_513</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>tmp_6_fu_261</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>17</item>
</second>
</item>
<item>
<first>tmp_7_fu_779</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>114</item>
</second>
</item>
<item>
<first>tmp_8_fu_303</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>25</item>
</second>
</item>
<item>
<first>tmp_fu_464</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>52</item>
</second>
</item>
<item>
<first>tobool29_i_i679_fu_361</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>trunc_ln1352_fu_713</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>trunc_ln3_fu_422</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>55</item>
</second>
</item>
<item>
<first>trunc_ln946_fu_226</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>trunc_ln947_fu_212</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>trunc_ln950_fu_216</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>x0_V_2_fu_691</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>83</item>
</second>
</item>
<item>
<first>x0_V_fu_674</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>xor_ln1560_fu_533</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>xor_ln938_fu_616</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>74</item>
</second>
</item>
<item>
<first>xor_ln952_fu_311</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>zext_ln1168_1_fu_697</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>97</item>
</second>
</item>
<item>
<first>zext_ln1168_fu_494</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>84</item>
</second>
</item>
<item>
<first>zext_ln1171_1_fu_539</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>89</item>
</second>
</item>
<item>
<first>zext_ln1171_fu_709</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>104</item>
</second>
</item>
<item>
<first>zext_ln1245_1_fu_583</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>68</item>
</second>
</item>
<item>
<first>zext_ln1245_fu_567</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>65</item>
</second>
</item>
<item>
<first>zext_ln1246_fu_765</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>zext_ln1386_fu_735</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>101</item>
</second>
</item>
<item>
<first>zext_ln1549_fu_642</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>78</item>
</second>
</item>
<item>
<first>zext_ln573_fu_558</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>92</item>
</second>
</item>
<item>
<first>zext_ln950_fu_282</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>21</item>
</second>
</item>
<item>
<first>zext_ln960_fu_367</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</second>
</item>
<item>
<first>zext_ln961_fu_370</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>36</item>
</second>
</item>
<item>
<first>zext_ln962_fu_379</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>39</item>
</second>
</item>
<item>
<first>zext_ln964_fu_395</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>43</item>
</second>
</item>
<item>
<first>zext_ln965_fu_443</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>46</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>2</count>
<item_version>0</item_version>
<item>
<first>grp_fu_175</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>59</item>
<item>59</item>
</second>
</item>
<item>
<first>grp_fu_796</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>111</item>
<item>111</item>
<item>111</item>
<item>113</item>
<item>113</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>1</count>
<item_version>0</item_version>
<item>
<first>in_read_read_fu_156</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</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>116</item>
</second>
</item>
</return_ports>
<dp_mem_port_nodes class_id="55" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="56" tracking_level="0" version="0">
<first class_id="57" tracking_level="0" version="0">
<first>ROM_EXP_V</first>
<second>0</second>
</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>96</item>
<item>96</item>
</second>
</item>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>33</count>
<item_version>0</item_version>
<item>
<first>805</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>817</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>824</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>829</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>834</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>839</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>844</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>849</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>854</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>859</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>869</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>874</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>879</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>884</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>890</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>895</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>905</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>910</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>915</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>920</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>926</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>931</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>936</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>941</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>946</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>951</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>956</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>961</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>971</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>976</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>33</count>
<item_version>0</item_version>
<item>
<first>ROM_EXP_V_addr_reg_931</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>95</item>
</second>
</item>
<item>
<first>add_ln952_reg_829</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
<item>
<first>add_ln961_reg_854</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</second>
</item>
<item>
<first>bitcast_ln741_reg_900</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>54</item>
</second>
</item>
<item>
<first>icmp_ln1549_1_reg_839</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>63</item>
</second>
</item>
<item>
<first>icmp_ln1549_reg_884</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>9</item>
</second>
</item>
<item>
<first>icmp_ln1560_1_reg_879</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>57</item>
</second>
</item>
<item>
<first>icmp_ln1560_reg_895</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>56</item>
</second>
</item>
<item>
<first>icmp_ln961_reg_849</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</second>
</item>
<item>
<first>in_read_reg_805</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>8</item>
</second>
</item>
<item>
<first>j_reg_926</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>91</item>
</second>
</item>
<item>
<first>lhs_V_reg_976</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>112</item>
</second>
</item>
<item>
<first>m_5_reg_869</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>45</item>
</second>
</item>
<item>
<first>n_reg_910</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>p_Result_4_reg_874</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>47</item>
</second>
</item>
<item>
<first>p_Result_7_reg_890</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>53</item>
</second>
</item>
<item>
<first>r_1_reg_844</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>64</item>
</second>
</item>
<item>
<first>r_V_1_reg_946</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>96</item>
</second>
</item>
<item>
<first>r_V_2_reg_951</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>99</item>
</second>
</item>
<item>
<first>r_V_4_reg_961</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>106</item>
</second>
</item>
<item>
<first>r_V_reg_905</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>85</item>
</second>
</item>
<item>
<first>ret_V_3_reg_941</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>94</item>
</second>
</item>
<item>
<first>sext_ln1246_1_reg_971</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>110</item>
</second>
</item>
<item>
<first>sub_ln947_reg_817</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>14</item>
</second>
</item>
<item>
<first>sub_ln962_reg_859</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>38</item>
</second>
</item>
<item>
<first>tmp_5_reg_915</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>88</item>
</second>
</item>
<item>
<first>tobool29_i_i679_reg_864</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>41</item>
</second>
</item>
<item>
<first>trunc_ln1352_reg_956</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>105</item>
</second>
</item>
<item>
<first>trunc_ln946_reg_834</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>49</item>
</second>
</item>
<item>
<first>trunc_ln950_reg_824</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>x0_V_reg_936</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>82</item>
</second>
</item>
<item>
<first>xor_ln1560_reg_920</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>61</item>
</second>
</item>
<item>
<first>zext_ln1246_reg_966</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</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="58" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="59" 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>8</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core>
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>55</count>
<item_version>0</item_version>
<item>
<first>9</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>10</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>14</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>16</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>18</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>20</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>22</first>
<second>
<first>21</first>
<second>2</second>
</second>
</item>
<item>
<first>23</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>24</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>26</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>20</first>
<second>2</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>31</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>32</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>34</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>35</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>37</first>
<second>
<first>21</first>
<second>2</second>
</second>
</item>
<item>
<first>38</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>40</first>
<second>
<first>20</first>
<second>2</second>
</second>
</item>
<item>
<first>41</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>42</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>44</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>48</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>50</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>51</first>
<second>
<first>8</first>
<second>156</second>
</second>
</item>
<item>
<first>56</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>57</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>58</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>59</first>
<second>
<first>513</first>
<second>0</second>
</second>
</item>
<item>
<first>60</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>61</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>63</first>
<second>
<first>45</first>
<second>0</second>
</second>
</item>
<item>
<first>66</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>69</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>71</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>72</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>73</first>
<second>
<first>24</first>
<second>0</second>
</second>
</item>
<item>
<first>74</first>
<second>
<first>25</first>
<second>0</second>
</second>
</item>
<item>
<first>75</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>76</first>
<second>
<first>23</first>
<second>0</second>
</second>
</item>
<item>
<first>81</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>82</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>83</first>
<second>
<first>49</first>
<second>107</second>
</second>
</item>
<item>
<first>85</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>90</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>94</first>
<second>
<first>10</first>
<second>4</second>
</second>
</item>
<item>
<first>96</first>
<second>
<first>27</first>
<second>147</second>
</second>
</item>
<item>
<first>99</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>102</first>
<second>
<first>22</first>
<second>2</second>
</second>
</item>
<item>
<first>106</first>
<second>
<first>12</first>
<second>0</second>
</second>
</item>
<item>
<first>108</first>
<second>
<first>8</first>
<second>4</second>
</second>
</item>
<item>
<first>111</first>
<second>
<first>10</first>
<second>3</second>
</second>
</item>
<item>
<first>113</first>
<second>
<first>10</first>
<second>3</second>
</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
------------------------------------------------------------------------------
-- --
-- GNAT RUN-TIME COMPONENTS --
-- --
-- S Y S T E M . I M G _ 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 package contains the routines for supporting the Image attribute for
-- unsigned (modular) integer types larger than Size Unsigned'Size, and also
-- for conversion operations required in Text_IO.Modular_IO for such types.
with System.Unsigned_Types;
package System.Img_LLU is
pragma Pure;
procedure Image_Long_Long_Unsigned
(V : System.Unsigned_Types.Long_Long_Unsigned;
S : in out String;
P : out Natural);
pragma Inline (Image_Long_Long_Unsigned);
-- Computes Long_Long_Unsigned'Image (V) and stores the result in
-- S (1 .. P) setting the resulting value of P. The caller guarantees
-- that S is long enough to hold the result, and that S'First is 1.
procedure Set_Image_Long_Long_Unsigned
(V : System.Unsigned_Types.Long_Long_Unsigned;
S : in out String;
P : in out Natural);
-- Stores the image of V in S starting at S (P + 1), P is updated to point
-- to the last character stored. The value stored is identical to the value
-- of Long_Long_Unsigned'Image (V) except that no leading space is stored.
-- The caller guarantees that S is long enough to hold the result. S need
-- not have a lower bound of 1.
end System.Img_LLU;
|
with Ada.Text_IO;
with PrimeInstances;
with Ada.Containers.Vectors;
package body Problem_47 is
package IO renames Ada.Text_IO;
package Positive_Primes renames PrimeInstances.Positive_Primes;
package Positive_Vectors is new Ada.Containers.Vectors(Index_Type => Positive,
Element_Type => Positive);
procedure Solve is
gen : Positive_Primes.Prime_Generator := Positive_Primes.Make_Generator;
searching : constant := 4;
next_prime : Positive;
primes : Positive_Vectors.Vector := Positive_Vectors.Empty_Vector;
function Num_Factors(num : Positive) return Natural is
factor_count : Natural := 0;
function "=" (left,right : Positive_Vectors.Cursor) return Boolean renames Positive_Vectors."=";
prime_cursor : Positive_Vectors.Cursor := primes.First;
begin
while prime_cursor /= Positive_Vectors.No_Element loop
declare
prime : constant Positive := Positive_Vectors.Element(prime_cursor);
begin
Positive_Vectors.Next(prime_cursor);
exit when prime > num;
if num mod prime = 0 then
factor_count := Natural'Succ(factor_count);
end if;
end;
end loop;
return factor_count;
end;
begin
loop
Positive_Primes.Next_Prime(gen, next_prime);
primes.Append(next_prime);
exit when next_prime > 644;
end loop;
composite_search:
for composite_base in 161 .. 1_000_000 loop
declare
composite : constant Positive := composite_base * searching;
begin
while composite > next_prime loop
Positive_Primes.Next_Prime(gen, next_prime);
primes.Append(next_prime);
end loop;
if Num_Factors(composite) = searching then
declare
prime_count : Positive := 1;
smallest : Positive := composite;
begin
for comp in reverse composite - (searching - 1) .. composite - 1 loop
if Num_Factors(comp) = searching then
prime_count := prime_count + 1;
smallest := comp;
else
exit;
end if;
end loop;
for comp in composite + 1 .. composite + (searching - 1) loop
if Num_Factors(comp) = searching then
prime_count := prime_count + 1;
if prime_count = searching then
IO.Put_Line(Positive'Image(smallest));
exit composite_search;
end if;
else
exit;
end if;
end loop;
end;
end if;
end;
end loop composite_search;
end Solve;
end Problem_47;
|
--PRÁCTICA 3: CÉSAR BORAO MORATINOS (Chat_Messages.ads)
with Lower_Layer_UDP;
with Ada.Strings.Unbounded;
package Chat_Messages is
package LLU renames Lower_Layer_UDP;
package ASU renames Ada.Strings.Unbounded;
type Message_Type is (Init, Welcome, Writer, Server, Logout);
procedure Init_Message (Server_EP: LLU.End_Point_Type;
Client_EP_Receive: LLU.End_Point_Type;
Client_EP_Handler: LLU.End_Point_Type;
Nick: ASU.Unbounded_String;
O_Buffer: Access LLU.Buffer_Type);
procedure Welcome_Message (Client_EP_Handler: LLU.End_Point_Type;
Accepted: Boolean;
O_Buffer: Access LLU.Buffer_Type);
procedure Server_Message (Client_EP_Handler: LLU.End_Point_Type;
Nick: ASU.Unbounded_String;
Comment: ASU.Unbounded_String;
O_Buffer: Access LLU.Buffer_Type);
procedure Writer_Message (Server_EP: LLU.End_Point_Type;
Client_EP_Handler: LLU.End_Point_Type;
Nick: ASU.Unbounded_String;
Comment: ASU.Unbounded_String;
O_Buffer: Access LLU.Buffer_Type);
procedure Logout_Message (Server_EP: LLU.End_Point_Type;
Client_EP_Handler: LLU.End_Point_Type;
Nick: ASU.Unbounded_String;
O_Buffer: Access LLU.Buffer_Type);
end Chat_Messages;
|
--------------------------------------------
-- --
-- PACKAGE GAME - PARTIE ADA --
-- --
-- GAME.ADS --
-- --
-- Gestion des outils de base --
-- --
-- Créateur : CAPELLE Mikaël --
-- Adresse : capelle.mikael@gmail.com --
-- --
-- Dernière modification : 14 / 06 / 2011 --
-- --
--------------------------------------------
with Interfaces.C; use Interfaces.C;
with Ada.Finalization;
package Game is
-- Les différentes erreurs pouvant être levé par la librairie
-- Elles sont en générales accompagnés d'une instruction détaillé (pour plus d'info, voir
-- le package Ada.Exceptions)
-- La fonction error est (en général) appelé directement lorsque ces exceptions sont levées,
-- mais vous pouvez l'utilisez vous même si vous en avez besoin
Init_Error : exception;
Video_Error : exception;
Surface_Error : exception;
Audio_Error : exception;
Font_Error : exception;
Draw_Error : exception;
-- Type servant à stocker des surfaces graphique
-- ne peut être utilisé directement, vous devez passer par les fonctions
type Surface is private;
Null_Surface : constant Surface;
-- Initialise la librairie
-- Sans argument la fonction initialise tout
-- Lève l'exception Init_Error si une erreur survient
procedure Init(Timer : in Boolean := True;
Video : in Boolean := True;
Audio : in Boolean := True;
Font : in Boolean := True;
Frequency : in Positive := 44100);
-- Ferme la librairie (à utiliser à la fin du programme)
procedure Quit;
-- Change le titre ou l'icone de la fenêtre
procedure Change_Title (Name : in String);
procedure Change_Icon (Name : in String);
procedure Change_Icon (Surf : in Surface);
-- Retourne une indication sur la dernière erreur survenue
function Error return String;
private
package AF renames Ada.Finalization;
type SDL_Surface is access all Int;
Null_SDL_Surface : constant SDL_Surface := null;
C_Screen : SDL_Surface := Null_SDL_Surface; -- Ecran principale (pour faciliter Get_Screen)
-- Libère la mémoire alloué par une surface
procedure Free_Surface (S : in out Surface);
type Surface is new AF.Controlled with
record
Surf : SDL_Surface;
end record;
procedure Initialize (S : in out Surface);
procedure Adjust (S : in out Surface);
procedure Finalize (S : in out Surface);
Null_Surface : constant Surface := (AF.Controlled with Null_SDL_Surface);
end Game;
|
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!DOCTYPE boost_serialization>
<boost_serialization signature="serialization::archive" version="14">
<syndb class_id="0" tracking_level="0" version="0">
<userIPLatency>-1</userIPLatency>
<userIPName/>
<cdfg class_id="1" tracking_level="1" version="0" object_id="_0">
<name>hls_target</name>
<ret_bitwidth>0</ret_bitwidth>
<ports class_id="2" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="3" tracking_level="1" version="0" object_id="_1">
<Value class_id="4" tracking_level="0" version="0">
<Obj class_id="5" tracking_level="0" version="0">
<type>1</type>
<id>1</id>
<name>hw_input_V_value_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo class_id="6" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>hw_input.V.value.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>8</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>hw_input_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>hw_input.V.last.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>0</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_3">
<Value>
<Obj>
<type>1</type>
<id>3</id>
<name>hw_output_V_value_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>hw_output.V.value.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>8</bitwidth>
</Value>
<direction>1</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
<item class_id_reference="3" object_id="_4">
<Value>
<Obj>
<type>1</type>
<id>4</id>
<name>hw_output_V_last_V</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName>hw_output.V.last.V</originalName>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>1</bitwidth>
</Value>
<direction>1</direction>
<if_type>0</if_type>
<array_size>0</array_size>
<bit_vecs>
<count>0</count>
<item_version>0</item_version>
</bit_vecs>
</item>
</ports>
<nodes class_id="8" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="9" tracking_level="1" version="0" object_id="_5">
<Value>
<Obj>
<type>0</type>
<id>11</id>
<name>p_hw_input_stencil_st</name>
<fileName>hls_target.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>50</lineNumber>
<contextFuncName>hls_target</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item class_id="10" tracking_level="0" version="0">
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first>
<second class_id="11" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="12" tracking_level="0" version="0">
<first class_id="13" tracking_level="0" version="0">
<first>hls_target.cpp</first>
<second>hls_target</second>
</first>
<second>50</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>_hw_input_stencil_stream.V.value.V</originalName>
<rtlName>p_hw_input_stencil_st_U</rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>72</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>33</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_6">
<Value>
<Obj>
<type>0</type>
<id>15</id>
<name>p_mul_stencil_update_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>p_mul_stencil_update_1_U</rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>32</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>34</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_7">
<Value>
<Obj>
<type>0</type>
<id>19</id>
<name>p_mul_stencil_stream_s</name>
<fileName>hls_target.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>164</lineNumber>
<contextFuncName>hls_target</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_target.cpp</first>
<second>hls_target</second>
</first>
<second>164</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName>_mul_stencil_stream.V.value.V</originalName>
<rtlName>p_mul_stencil_stream_s_U</rtlName>
<coreName>FIFO_SRL</coreName>
</Obj>
<bitwidth>128</bitwidth>
</Value>
<oprand_edges>
<count>1</count>
<item_version>0</item_version>
<item>35</item>
</oprand_edges>
<opcode>alloca</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_8">
<Value>
<Obj>
<type>0</type>
<id>26</id>
<name/>
<fileName>hls_target.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>54</lineNumber>
<contextFuncName>hls_target</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_target.cpp</first>
<second>hls_target</second>
</first>
<second>54</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>linebuffer_1_U0</rtlName>
<coreName/>
</Obj>
<bitwidth>0</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>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_9">
<Value>
<Obj>
<type>0</type>
<id>27</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>Loop_1_proc_U0</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>42</item>
<item>43</item>
<item>44</item>
<item>247</item>
<item>248</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_10">
<Value>
<Obj>
<type>0</type>
<id>28</id>
<name/>
<fileName>hls_target.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>168</lineNumber>
<contextFuncName>hls_target</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_target.cpp</first>
<second>hls_target</second>
</first>
<second>168</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName>linebuffer_2_U0</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>5</count>
<item_version>0</item_version>
<item>46</item>
<item>47</item>
<item>48</item>
<item>246</item>
<item>249</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_11">
<Value>
<Obj>
<type>0</type>
<id>29</id>
<name/>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName>Block_preheader39_p_U0</rtlName>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>6</count>
<item_version>0</item_version>
<item>50</item>
<item>51</item>
<item>52</item>
<item>53</item>
<item>245</item>
<item>250</item>
</oprand_edges>
<opcode>call</opcode>
<m_Display>0</m_Display>
</item>
<item class_id_reference="9" object_id="_12">
<Value>
<Obj>
<type>0</type>
<id>30</id>
<name/>
<fileName>hls_target.cpp</fileName>
<fileDirectory>..</fileDirectory>
<lineNumber>264</lineNumber>
<contextFuncName>hls_target</contextFuncName>
<inlineStackInfo>
<count>1</count>
<item_version>0</item_version>
<item>
<first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/paper_apps_8_shifts/conv2d_b2b</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>
<first>hls_target.cpp</first>
<second>hls_target</second>
</first>
<second>264</second>
</item>
</second>
</item>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<oprand_edges>
<count>0</count>
<item_version>0</item_version>
</oprand_edges>
<opcode>ret</opcode>
<m_Display>0</m_Display>
</item>
</nodes>
<consts class_id="15" tracking_level="0" version="0">
<count>5</count>
<item_version>0</item_version>
<item class_id="16" tracking_level="1" version="0" object_id="_13">
<Value>
<Obj>
<type>2</type>
<id>32</id>
<name>empty</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>64</bitwidth>
</Value>
<const_type>0</const_type>
<content>1</content>
</item>
<item class_id_reference="16" object_id="_14">
<Value>
<Obj>
<type>2</type>
<id>36</id>
<name>linebuffer_1</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:linebuffer.1></content>
</item>
<item class_id_reference="16" object_id="_15">
<Value>
<Obj>
<type>2</type>
<id>41</id>
<name>Loop_1_proc</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:Loop_1_proc></content>
</item>
<item class_id_reference="16" object_id="_16">
<Value>
<Obj>
<type>2</type>
<id>45</id>
<name>linebuffer_2</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:linebuffer.2></content>
</item>
<item class_id_reference="16" object_id="_17">
<Value>
<Obj>
<type>2</type>
<id>49</id>
<name>Block_preheader39_p</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<bitwidth>0</bitwidth>
</Value>
<const_type>6</const_type>
<content><constant:Block_.preheader39.p></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="_18">
<Obj>
<type>3</type>
<id>31</id>
<name>hls_target</name>
<fileName/>
<fileDirectory/>
<lineNumber>0</lineNumber>
<contextFuncName/>
<inlineStackInfo>
<count>0</count>
<item_version>0</item_version>
</inlineStackInfo>
<originalName/>
<rtlName/>
<coreName/>
</Obj>
<node_objs>
<count>8</count>
<item_version>0</item_version>
<item>11</item>
<item>15</item>
<item>19</item>
<item>26</item>
<item>27</item>
<item>28</item>
<item>29</item>
<item>30</item>
</node_objs>
</item>
</blocks>
<edges class_id="19" tracking_level="0" version="0">
<count>23</count>
<item_version>0</item_version>
<item class_id="20" tracking_level="1" version="0" object_id="_19">
<id>33</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>11</sink_obj>
</item>
<item class_id_reference="20" object_id="_20">
<id>34</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>15</sink_obj>
</item>
<item class_id_reference="20" object_id="_21">
<id>35</id>
<edge_type>1</edge_type>
<source_obj>32</source_obj>
<sink_obj>19</sink_obj>
</item>
<item class_id_reference="20" object_id="_22">
<id>37</id>
<edge_type>1</edge_type>
<source_obj>36</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_23">
<id>38</id>
<edge_type>1</edge_type>
<source_obj>1</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_24">
<id>39</id>
<edge_type>1</edge_type>
<source_obj>2</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_25">
<id>40</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>26</sink_obj>
</item>
<item class_id_reference="20" object_id="_26">
<id>42</id>
<edge_type>1</edge_type>
<source_obj>41</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_27">
<id>43</id>
<edge_type>1</edge_type>
<source_obj>11</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_28">
<id>44</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_29">
<id>46</id>
<edge_type>1</edge_type>
<source_obj>45</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_30">
<id>47</id>
<edge_type>1</edge_type>
<source_obj>15</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_31">
<id>48</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_32">
<id>50</id>
<edge_type>1</edge_type>
<source_obj>49</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_33">
<id>51</id>
<edge_type>1</edge_type>
<source_obj>19</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_34">
<id>52</id>
<edge_type>1</edge_type>
<source_obj>3</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_35">
<id>53</id>
<edge_type>1</edge_type>
<source_obj>4</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_36">
<id>245</id>
<edge_type>4</edge_type>
<source_obj>28</source_obj>
<sink_obj>29</sink_obj>
</item>
<item class_id_reference="20" object_id="_37">
<id>246</id>
<edge_type>4</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_38">
<id>247</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_39">
<id>248</id>
<edge_type>4</edge_type>
<source_obj>26</source_obj>
<sink_obj>27</sink_obj>
</item>
<item class_id_reference="20" object_id="_40">
<id>249</id>
<edge_type>4</edge_type>
<source_obj>27</source_obj>
<sink_obj>28</sink_obj>
</item>
<item class_id_reference="20" object_id="_41">
<id>250</id>
<edge_type>4</edge_type>
<source_obj>28</source_obj>
<sink_obj>29</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="_42">
<mId>1</mId>
<mTag>hls_target</mTag>
<mType>0</mType>
<sub_regions>
<count>0</count>
<item_version>0</item_version>
</sub_regions>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</basic_blocks>
<mII>-1</mII>
<mDepth>-1</mDepth>
<mMinTripCount>-1</mMinTripCount>
<mMaxTripCount>-1</mMaxTripCount>
<mMinLatency>33</mMinLatency>
<mMaxLatency>-1</mMaxLatency>
<mIsDfPipe>1</mIsDfPipe>
<mDfPipe class_id="23" tracking_level="1" version="0" object_id="_43">
<port_list class_id="24" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port_list>
<process_list class_id="25" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="26" tracking_level="1" version="0" object_id="_44">
<type>0</type>
<name>linebuffer_1_U0</name>
<ssdmobj_id>26</ssdmobj_id>
<pins class_id="27" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="28" tracking_level="1" version="0" object_id="_45">
<port class_id="29" tracking_level="1" version="0" object_id="_46">
<name>in_axi_stream_V_value_V</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id="30" tracking_level="1" version="0" object_id="_47">
<type>0</type>
<name>linebuffer_1_U0</name>
<ssdmobj_id>26</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_48">
<port class_id_reference="29" object_id="_49">
<name>in_axi_stream_V_last_V</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id_reference="_47"/>
</item>
<item class_id_reference="28" object_id="_50">
<port class_id_reference="29" object_id="_51">
<name>out_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_47"/>
</item>
</pins>
</item>
<item class_id_reference="26" object_id="_52">
<type>0</type>
<name>Loop_1_proc_U0</name>
<ssdmobj_id>27</ssdmobj_id>
<pins>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_53">
<port class_id_reference="29" object_id="_54">
<name>p_hw_input_stencil_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id="_55">
<type>0</type>
<name>Loop_1_proc_U0</name>
<ssdmobj_id>27</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_56">
<port class_id_reference="29" object_id="_57">
<name>p_mul_stencil_update_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_55"/>
</item>
</pins>
</item>
<item class_id_reference="26" object_id="_58">
<type>0</type>
<name>linebuffer_2_U0</name>
<ssdmobj_id>28</ssdmobj_id>
<pins>
<count>2</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_59">
<port class_id_reference="29" object_id="_60">
<name>in_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id="_61">
<type>0</type>
<name>linebuffer_2_U0</name>
<ssdmobj_id>28</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_62">
<port class_id_reference="29" object_id="_63">
<name>out_stream_V_value_V</name>
<dir>0</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_61"/>
</item>
</pins>
</item>
<item class_id_reference="26" object_id="_64">
<type>0</type>
<name>Block_preheader39_p_U0</name>
<ssdmobj_id>29</ssdmobj_id>
<pins>
<count>3</count>
<item_version>0</item_version>
<item class_id_reference="28" object_id="_65">
<port class_id_reference="29" object_id="_66">
<name>p_mul_stencil_stream_V_value_V</name>
<dir>0</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id="_67">
<type>0</type>
<name>Block_preheader39_p_U0</name>
<ssdmobj_id>29</ssdmobj_id>
</inst>
</item>
<item class_id_reference="28" object_id="_68">
<port class_id_reference="29" object_id="_69">
<name>hw_output_V_value_V</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_67"/>
</item>
<item class_id_reference="28" object_id="_70">
<port class_id_reference="29" object_id="_71">
<name>hw_output_V_last_V</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_67"/>
</item>
</pins>
</item>
</process_list>
<channel_list class_id="31" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="32" tracking_level="1" version="0" object_id="_72">
<type>1</type>
<name>p_hw_input_stencil_st</name>
<ssdmobj_id>11</ssdmobj_id>
<ctype>0</ctype>
<depth>1</depth>
<bitwidth>72</bitwidth>
<source class_id_reference="28" object_id="_73">
<port class_id_reference="29" object_id="_74">
<name>in</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id_reference="_47"/>
</source>
<sink class_id_reference="28" object_id="_75">
<port class_id_reference="29" object_id="_76">
<name>out</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_55"/>
</sink>
</item>
<item class_id_reference="32" object_id="_77">
<type>1</type>
<name>p_mul_stencil_update_1</name>
<ssdmobj_id>15</ssdmobj_id>
<ctype>0</ctype>
<depth>1</depth>
<bitwidth>32</bitwidth>
<source class_id_reference="28" object_id="_78">
<port class_id_reference="29" object_id="_79">
<name>in</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id_reference="_55"/>
</source>
<sink class_id_reference="28" object_id="_80">
<port class_id_reference="29" object_id="_81">
<name>out</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_61"/>
</sink>
</item>
<item class_id_reference="32" object_id="_82">
<type>1</type>
<name>p_mul_stencil_stream_s</name>
<ssdmobj_id>19</ssdmobj_id>
<ctype>0</ctype>
<depth>1</depth>
<bitwidth>128</bitwidth>
<source class_id_reference="28" object_id="_83">
<port class_id_reference="29" object_id="_84">
<name>in</name>
<dir>3</dir>
<type>0</type>
</port>
<inst class_id_reference="30" object_id_reference="_61"/>
</source>
<sink class_id_reference="28" object_id="_85">
<port class_id_reference="29" object_id="_86">
<name>out</name>
<dir>3</dir>
<type>1</type>
</port>
<inst class_id_reference="30" object_id_reference="_67"/>
</sink>
</item>
</channel_list>
<net_list class_id="33" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</net_list>
</mDfPipe>
</item>
</cdfg_regions>
<fsm class_id="34" tracking_level="1" version="0" object_id="_87">
<states class_id="35" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="36" tracking_level="1" version="0" object_id="_88">
<id>1</id>
<operations class_id="37" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="38" tracking_level="1" version="0" object_id="_89">
<id>11</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_90">
<id>15</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_91">
<id>19</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_92">
<id>26</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_93">
<id>2</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_94">
<id>26</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_95">
<id>3</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_96">
<id>27</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_97">
<id>4</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_98">
<id>27</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_99">
<id>5</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_100">
<id>28</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_101">
<id>6</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_102">
<id>28</id>
<stage>1</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_103">
<id>7</id>
<operations>
<count>1</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_104">
<id>29</id>
<stage>2</stage>
<latency>2</latency>
</item>
</operations>
</item>
<item class_id_reference="36" object_id="_105">
<id>8</id>
<operations>
<count>20</count>
<item_version>0</item_version>
<item class_id_reference="38" object_id="_106">
<id>5</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_107">
<id>6</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_108">
<id>7</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_109">
<id>8</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_110">
<id>9</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_111">
<id>10</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_112">
<id>12</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_113">
<id>13</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_114">
<id>14</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_115">
<id>16</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_116">
<id>17</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_117">
<id>18</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_118">
<id>20</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_119">
<id>21</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_120">
<id>22</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_121">
<id>23</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_122">
<id>24</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_123">
<id>25</id>
<stage>1</stage>
<latency>1</latency>
</item>
<item class_id_reference="38" object_id="_124">
<id>29</id>
<stage>1</stage>
<latency>2</latency>
</item>
<item class_id_reference="38" object_id="_125">
<id>30</id>
<stage>1</stage>
<latency>1</latency>
</item>
</operations>
</item>
</states>
<transitions class_id="39" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="40" tracking_level="1" version="0" object_id="_126">
<inState>1</inState>
<outState>2</outState>
<condition class_id="41" tracking_level="0" version="0">
<id>0</id>
<sop class_id="42" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="43" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_127">
<inState>2</inState>
<outState>3</outState>
<condition>
<id>1</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_128">
<inState>3</inState>
<outState>4</outState>
<condition>
<id>2</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_129">
<inState>4</inState>
<outState>5</outState>
<condition>
<id>3</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_130">
<inState>5</inState>
<outState>6</outState>
<condition>
<id>4</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_131">
<inState>6</inState>
<outState>7</outState>
<condition>
<id>5</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
<item class_id_reference="40" object_id="_132">
<inState>7</inState>
<outState>8</outState>
<condition>
<id>6</id>
<sop>
<count>1</count>
<item_version>0</item_version>
<item>
<count>0</count>
<item_version>0</item_version>
</item>
</sop>
</condition>
</item>
</transitions>
</fsm>
<res class_id="44" tracking_level="1" version="0" object_id="_133">
<dp_component_resource class_id="45" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="46" tracking_level="0" version="0">
<first>Block_preheader39_p_U0 (Block_preheader39_p)</first>
<second class_id="47" tracking_level="0" version="0">
<count>2</count>
<item_version>0</item_version>
<item class_id="48" tracking_level="0" version="0">
<first>FF</first>
<second>123</second>
</item>
<item>
<first>LUT</first>
<second>112</second>
</item>
</second>
</item>
<item>
<first>Loop_1_proc_U0 (Loop_1_proc)</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>FF</first>
<second>450</second>
</item>
<item>
<first>LUT</first>
<second>284</second>
</item>
</second>
</item>
<item>
<first>linebuffer_1_U0 (linebuffer_1)</first>
<second>
<count>3</count>
<item_version>0</item_version>
<item>
<first>BRAM</first>
<second>0</second>
</item>
<item>
<first>FF</first>
<second>766</second>
</item>
<item>
<first>LUT</first>
<second>677</second>
</item>
</second>
</item>
<item>
<first>linebuffer_2_U0 (linebuffer_2)</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>
<first>FF</first>
<second>224</second>
</item>
<item>
<first>LUT</first>
<second>420</second>
</item>
</second>
</item>
<item>
<first>start_for_Block_phbi_U (start_for_Block_phbi)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>start_for_Loop_1_fYi_U (start_for_Loop_1_fYi)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
<item>
<first>start_for_linebufg8j_U (start_for_linebufg8j)</first>
<second>
<count>0</count>
<item_version>0</item_version>
</second>
</item>
</dp_component_resource>
<dp_expression_resource>
<count>4</count>
<item_version>0</item_version>
<item>
<first>Loop_1_proc_U0_start_full_n ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>ap_idle ( and ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>linebuffer_1_U0_start_full_n ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
<item>
<first>linebuffer_2_U0_start_full_n ( or ) </first>
<second>
<count>4</count>
<item_version>0</item_version>
<item>
<first>(0P0)</first>
<second>1</second>
</item>
<item>
<first>(1P1)</first>
<second>1</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>2</second>
</item>
</second>
</item>
</dp_expression_resource>
<dp_fifo_resource>
<count>3</count>
<item_version>0</item_version>
<item>
<first>p_hw_input_stencil_st_U</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0Depth)</first>
<second>1</second>
</item>
<item>
<first>(1Bits)</first>
<second>72</second>
</item>
<item>
<first>(2Size:D*B)</first>
<second>72</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>p_mul_stencil_stream_s_U</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0Depth)</first>
<second>1</second>
</item>
<item>
<first>(1Bits)</first>
<second>128</second>
</item>
<item>
<first>(2Size:D*B)</first>
<second>128</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
<item>
<first>p_mul_stencil_update_1_U</first>
<second>
<count>5</count>
<item_version>0</item_version>
<item>
<first>(0Depth)</first>
<second>1</second>
</item>
<item>
<first>(1Bits)</first>
<second>32</second>
</item>
<item>
<first>(2Size:D*B)</first>
<second>32</second>
</item>
<item>
<first>FF</first>
<second>0</second>
</item>
<item>
<first>LUT</first>
<second>1</second>
</item>
</second>
</item>
</dp_fifo_resource>
<dp_memory_resource>
<count>0</count>
<item_version>0</item_version>
</dp_memory_resource>
<dp_multiplexer_resource>
<count>0</count>
<item_version>0</item_version>
</dp_multiplexer_resource>
<dp_register_resource>
<count>0</count>
<item_version>0</item_version>
</dp_register_resource>
<dp_component_map class_id="49" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="50" tracking_level="0" version="0">
<first>Block_preheader39_p_U0 (Block_preheader39_p)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
<item>
<first>Loop_1_proc_U0 (Loop_1_proc)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>27</item>
</second>
</item>
<item>
<first>linebuffer_1_U0 (linebuffer_1)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
<item>
<first>linebuffer_2_U0 (linebuffer_2)</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>28</item>
</second>
</item>
</dp_component_map>
<dp_expression_map>
<count>0</count>
<item_version>0</item_version>
</dp_expression_map>
<dp_fifo_map>
<count>3</count>
<item_version>0</item_version>
<item>
<first>p_hw_input_stencil_st_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>87</item>
</second>
</item>
<item>
<first>p_mul_stencil_stream_s_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>109</item>
</second>
</item>
<item>
<first>p_mul_stencil_update_1_U</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>98</item>
</second>
</item>
</dp_fifo_map>
<dp_memory_map>
<count>0</count>
<item_version>0</item_version>
</dp_memory_map>
</res>
<node_label_latency class_id="51" tracking_level="0" version="0">
<count>8</count>
<item_version>0</item_version>
<item class_id="52" tracking_level="0" version="0">
<first>11</first>
<second class_id="53" tracking_level="0" version="0">
<first>0</first>
<second>0</second>
</second>
</item>
<item>
<first>15</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>26</first>
<second>
<first>0</first>
<second>1</second>
</second>
</item>
<item>
<first>27</first>
<second>
<first>2</first>
<second>1</second>
</second>
</item>
<item>
<first>28</first>
<second>
<first>4</first>
<second>1</second>
</second>
</item>
<item>
<first>29</first>
<second>
<first>6</first>
<second>1</second>
</second>
</item>
<item>
<first>30</first>
<second>
<first>7</first>
<second>0</second>
</second>
</item>
</node_label_latency>
<bblk_ent_exit class_id="54" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="55" tracking_level="0" version="0">
<first>31</first>
<second class_id="56" tracking_level="0" version="0">
<first>0</first>
<second>7</second>
</second>
</item>
</bblk_ent_exit>
<regions class_id="57" tracking_level="0" version="0">
<count>1</count>
<item_version>0</item_version>
<item class_id="58" tracking_level="1" version="0" object_id="_134">
<region_name>hls_target</region_name>
<basic_blocks>
<count>1</count>
<item_version>0</item_version>
<item>31</item>
</basic_blocks>
<nodes>
<count>26</count>
<item_version>0</item_version>
<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>
</nodes>
<anchor_node>-1</anchor_node>
<region_type>16</region_type>
<interval>0</interval>
<pipe_depth>0</pipe_depth>
</item>
</regions>
<dp_fu_nodes class_id="59" tracking_level="0" version="0">
<count>7</count>
<item_version>0</item_version>
<item class_id="60" tracking_level="0" version="0">
<first>58</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>70</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>26</item>
<item>26</item>
</second>
</item>
<item>
<first>79</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>28</item>
<item>28</item>
</second>
</item>
<item>
<first>85</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>27</item>
<item>27</item>
</second>
</item>
<item>
<first>91</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>29</item>
</second>
</item>
</dp_fu_nodes>
<dp_fu_nodes_expression class_id="62" tracking_level="0" version="0">
<count>3</count>
<item_version>0</item_version>
<item class_id="63" tracking_level="0" version="0">
<first>p_hw_input_stencil_st_fu_58</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>p_mul_stencil_stream_s_fu_66</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>p_mul_stencil_update_1_fu_62</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</dp_fu_nodes_expression>
<dp_fu_nodes_module>
<count>4</count>
<item_version>0</item_version>
<item>
<first>grp_Block_preheader39_p_fu_91</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>29</item>
<item>29</item>
</second>
</item>
<item>
<first>grp_Loop_1_proc_fu_85</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>27</item>
<item>27</item>
</second>
</item>
<item>
<first>grp_linebuffer_1_fu_70</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>26</item>
<item>26</item>
</second>
</item>
<item>
<first>grp_linebuffer_2_fu_79</first>
<second>
<count>2</count>
<item_version>0</item_version>
<item>28</item>
<item>28</item>
</second>
</item>
</dp_fu_nodes_module>
<dp_fu_nodes_io>
<count>0</count>
<item_version>0</item_version>
</dp_fu_nodes_io>
<return_ports>
<count>0</count>
<item_version>0</item_version>
</return_ports>
<dp_mem_port_nodes class_id="64" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</dp_mem_port_nodes>
<dp_reg_nodes>
<count>3</count>
<item_version>0</item_version>
<item>
<first>100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
<item>
<first>112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
</dp_reg_nodes>
<dp_regname_nodes>
<count>3</count>
<item_version>0</item_version>
<item>
<first>p_hw_input_stencil_st_reg_100</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>11</item>
</second>
</item>
<item>
<first>p_mul_stencil_stream_s_reg_112</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>19</item>
</second>
</item>
<item>
<first>p_mul_stencil_update_1_reg_106</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>15</item>
</second>
</item>
</dp_regname_nodes>
<dp_reg_phi>
<count>0</count>
<item_version>0</item_version>
</dp_reg_phi>
<dp_regname_phi>
<count>0</count>
<item_version>0</item_version>
</dp_regname_phi>
<dp_port_io_nodes class_id="65" tracking_level="0" version="0">
<count>4</count>
<item_version>0</item_version>
<item class_id="66" tracking_level="0" version="0">
<first>hw_input_V_last_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
</second>
</item>
<item>
<first>hw_input_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>26</item>
</second>
</item>
</second>
</item>
<item>
<first>hw_output_V_last_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</second>
</item>
<item>
<first>hw_output_V_value_V</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>
<first>call</first>
<second>
<count>1</count>
<item_version>0</item_version>
<item>29</item>
</second>
</item>
</second>
</item>
</dp_port_io_nodes>
<port2core class_id="67" tracking_level="0" version="0">
<count>0</count>
<item_version>0</item_version>
</port2core>
<node2core>
<count>3</count>
<item_version>0</item_version>
<item class_id="68" tracking_level="0" version="0">
<first>11</first>
<second>FIFO_SRL</second>
</item>
<item>
<first>15</first>
<second>FIFO_SRL</second>
</item>
<item>
<first>19</first>
<second>FIFO_SRL</second>
</item>
</node2core>
</syndb>
</boost_serialization>
|
-- $Header: /cf/ua/arcadia/alex-ayacc/ayacc/src/RCS/file_names.a,v 1.2 88/11/28 13:38:59 arcadia Exp $
-- Copyright (c) 1990 Regents of the University of California.
-- All rights reserved.
--
-- The primary authors of ayacc were David Taback and Deepak Tolani.
-- Enhancements were made by Ronald J. Schmalz.
--
-- Send requests for ayacc information to ayacc-info@ics.uci.edu
-- Send bug reports for ayacc to ayacc-bugs@ics.uci.edu
--
-- Redistribution and use in source and binary forms are permitted
-- provided that the above copyright notice and this paragraph are
-- duplicated in all such forms and that any documentation,
-- advertising materials, and other materials related to such
-- distribution and use acknowledge that the software was developed
-- by the University of California, Irvine. The name of the
-- University may not be used to endorse or promote products derived
-- from this software without specific prior written permission.
-- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
-- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
-- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
-- Module : file_names.ada
-- Component of : ayacc
-- Version : 1.2
-- Date : 11/21/86 12:29:16
-- SCCS File : disk21~/rschm/hasee/sccs/ayacc/sccs/sxfile_names.ada
-- $Header: /cf/ua/arcadia/alex-ayacc/ayacc/src/RCS/file_names.a,v 1.2 88/11/28 13:38:59 arcadia Exp $
-- $Log: file_names.a,v $
--Revision 1.2 88/11/28 13:38:59 arcadia
--Modified Get_Unit_Name function to accept legal Ada identifiers.
--
--Revision 1.1 88/08/08 12:11:56 arcadia
--Initial revision
--
-- Revision 0,2 88/03/16
-- Set file names modified to include a file extension parameter.
-- Revision 0.1 86/04/01 15:04:19 ada
-- This version fixes some minor bugs with empty grammars
-- and $$ expansion. It also uses vads5.1b enhancements
-- such as pragma inline.
--
--
-- Revision 0.0 86/02/19 18:36:22 ada
--
-- These files comprise the initial version of Ayacc
-- designed and implemented by David Taback and Deepak Tolani.
-- Ayacc has been compiled and tested under the Verdix Ada compiler
-- version 4.06 on a vax 11/750 running Unix 4.2BSD.
--
-- The collection of all file names used by Ayacc --
with Ada.Characters.Handling; use Ada.Characters.Handling;
package Ayacc_File_Names is
procedure Set_File_Names(Input_File, Extension: in String);
-- Sets the initial value of the file names
-- according to the INPUT_FILE.
function Get_Source_File_Name return String;
function Get_Out_File_Name return String;
function Get_Verbose_File_Name return String;
function Get_Template_File_Name return String;
function Get_Actions_File_Name return String;
function Get_Shift_Reduce_File_Name return String;
function Get_Goto_File_Name return String;
function Get_Tokens_File_Name return String;
-- UMASS CODES :
function Get_Error_Report_File_Name return String;
function Get_Listing_File_Name return String;
-- END OF UMASS CODES.
function Get_C_Lex_File_Name return String;
function Get_Include_File_Name return String;
--RJS ==========================================
function C_Lex_Unit_Name return String;
function Goto_Tables_Unit_Name return String;
function Shift_Reduce_Tables_Unit_Name return String;
function Tokens_Unit_Name return String;
function Main_Unit_Name return String;
-- UMASS CODES :
function Error_Report_Unit_Name return String;
-- END OF UMASS CODES.
--RJS ==========================================
Illegal_File_Name: exception;
-- Raised if the file name does not end with ".y"
end Ayacc_File_Names;
|
-- OpenAPI Petstore
-- This is a sample server Petstore server. For this sample, you can use the api key `special_key` to test the authorization filters.
--
-- The version of the OpenAPI document: 1.0.0
--
--
-- NOTE: This package is auto generated by OpenAPI-Generator 6.0.0-SNAPSHOT.
-- https://openapi-generator.tech
-- Do not edit the class manually.
pragma Warnings (Off, "*is not referenced");
with Swagger.Streams;
package body Samples.Petstore.Clients is
pragma Style_Checks ("-mr");
-- Add a new pet to the store
procedure Add_Pet
(Client : in out Client_Type;
P_Body : in Samples.Petstore.Models.Pet_Type) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (Swagger.Clients.APPLICATION_JSON,
Swagger.Clients.APPLICATION_XML));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/pet");
Client.Call (Swagger.Clients.POST, URI, Req);
end Add_Pet;
-- Deletes a pet
procedure Delete_Pet
(Client : in out Client_Type;
Pet_Id : in Swagger.Long;
Api_Key : in Swagger.Nullable_UString) is
URI : Swagger.Clients.URI_Type;
begin
URI.Set_Path ("/pet/{petId}");
URI.Set_Path_Param ("petId", Swagger.To_String (Pet_Id));
Client.Call (Swagger.Clients.DELETE, URI);
end Delete_Pet;
-- Finds Pets by status
-- Multiple status values can be provided with comma separated strings
procedure Find_Pets_By_Status
(Client : in out Client_Type;
Status : in Swagger.UString_Vectors.Vector;
Result : out Samples.Petstore.Models.Pet_Type_Vectors.Vector) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
URI.Add_Param ("status", Status);
URI.Set_Path ("/pet/findByStatus");
Client.Call (Swagger.Clients.GET, URI, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Find_Pets_By_Status;
-- Finds Pets by tags
-- Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
procedure Find_Pets_By_Tags
(Client : in out Client_Type;
Tags : in Swagger.UString_Vectors.Vector;
Result : out Samples.Petstore.Models.Pet_Type_Vectors.Vector) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
URI.Add_Param ("tags", Tags);
URI.Set_Path ("/pet/findByTags");
Client.Call (Swagger.Clients.GET, URI, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Find_Pets_By_Tags;
-- Find pet by ID
-- Returns a single pet
procedure Get_Pet_By_Id
(Client : in out Client_Type;
Pet_Id : in Swagger.Long;
Result : out Samples.Petstore.Models.Pet_Type) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
URI.Set_Path ("/pet/{petId}");
URI.Set_Path_Param ("petId", Swagger.To_String (Pet_Id));
Client.Call (Swagger.Clients.GET, URI, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Get_Pet_By_Id;
-- Update an existing pet
procedure Update_Pet
(Client : in out Client_Type;
P_Body : in Samples.Petstore.Models.Pet_Type) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (Swagger.Clients.APPLICATION_JSON,
Swagger.Clients.APPLICATION_XML));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/pet");
Client.Call (Swagger.Clients.PUT, URI, Req);
end Update_Pet;
-- Updates a pet in the store with form data
procedure Update_Pet_With_Form
(Client : in out Client_Type;
Pet_Id : in Swagger.Long;
Name : in Swagger.Nullable_UString;
Status : in Swagger.Nullable_UString) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_FORM));
Req.Stream.Write_Entity ("name", Name);
Req.Stream.Write_Entity ("status", Status);
URI.Set_Path ("/pet/{petId}");
URI.Set_Path_Param ("petId", Swagger.To_String (Pet_Id));
Client.Call (Swagger.Clients.POST, URI, Req);
end Update_Pet_With_Form;
-- uploads an image
procedure Upload_File
(Client : in out Client_Type;
Pet_Id : in Swagger.Long;
Additional_Metadata : in Swagger.Nullable_UString;
File : in Swagger.File_Part_Type;
Result : out Samples.Petstore.Models.ApiResponse_Type) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((1 => Swagger.Clients.APPLICATION_JSON));
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_FORM));
Req.Stream.Write_Entity ("additionalMetadata", Additional_Metadata);
Req.Stream.Write_Entity ("file", File);
URI.Set_Path ("/pet/{petId}/uploadImage");
URI.Set_Path_Param ("petId", Swagger.To_String (Pet_Id));
Client.Call (Swagger.Clients.POST, URI, Req, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Upload_File;
-- Delete purchase order by ID
-- For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
procedure Delete_Order
(Client : in out Client_Type;
Order_Id : in Swagger.UString) is
URI : Swagger.Clients.URI_Type;
begin
URI.Set_Path ("/store/order/{orderId}");
URI.Set_Path_Param ("orderId", Order_Id);
Client.Call (Swagger.Clients.DELETE, URI);
end Delete_Order;
-- Returns pet inventories by status
-- Returns a map of status codes to quantities
procedure Get_Inventory
(Client : in out Client_Type;
Result : out Swagger.Integer_Map) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((1 => Swagger.Clients.APPLICATION_JSON));
URI.Set_Path ("/store/inventory");
Client.Call (Swagger.Clients.GET, URI, Reply);
Swagger.Streams.Deserialize (Reply, "", Result);
end Get_Inventory;
-- Find purchase order by ID
-- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
procedure Get_Order_By_Id
(Client : in out Client_Type;
Order_Id : in Swagger.Long;
Result : out Samples.Petstore.Models.Order_Type) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
URI.Set_Path ("/store/order/{orderId}");
URI.Set_Path_Param ("orderId", Swagger.To_String (Order_Id));
Client.Call (Swagger.Clients.GET, URI, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Get_Order_By_Id;
-- Place an order for a pet
procedure Place_Order
(Client : in out Client_Type;
P_Body : in Samples.Petstore.Models.Order_Type;
Result : out Samples.Petstore.Models.Order_Type) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_JSON));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/store/order");
Client.Call (Swagger.Clients.POST, URI, Req, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Place_Order;
-- Create user
-- This can only be done by the logged in user.
procedure Create_User
(Client : in out Client_Type;
P_Body : in Samples.Petstore.Models.User_Type) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_JSON));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/user");
Client.Call (Swagger.Clients.POST, URI, Req);
end Create_User;
-- Creates list of users with given input array
procedure Create_Users_With_Array_Input
(Client : in out Client_Type;
P_Body : in Samples.Petstore.Models.User_Type_Vectors.Vector) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_JSON));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/user/createWithArray");
Client.Call (Swagger.Clients.POST, URI, Req);
end Create_Users_With_Array_Input;
-- Creates list of users with given input array
procedure Create_Users_With_List_Input
(Client : in out Client_Type;
P_Body : in Samples.Petstore.Models.User_Type_Vectors.Vector) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_JSON));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/user/createWithList");
Client.Call (Swagger.Clients.POST, URI, Req);
end Create_Users_With_List_Input;
-- Delete user
-- This can only be done by the logged in user.
procedure Delete_User
(Client : in out Client_Type;
Username : in Swagger.UString) is
URI : Swagger.Clients.URI_Type;
begin
URI.Set_Path ("/user/{username}");
URI.Set_Path_Param ("username", Username);
Client.Call (Swagger.Clients.DELETE, URI);
end Delete_User;
-- Get user by user name
procedure Get_User_By_Name
(Client : in out Client_Type;
Username : in Swagger.UString;
Result : out Samples.Petstore.Models.User_Type) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
URI.Set_Path ("/user/{username}");
URI.Set_Path_Param ("username", Username);
Client.Call (Swagger.Clients.GET, URI, Reply);
Samples.Petstore.Models.Deserialize (Reply, "", Result);
end Get_User_By_Name;
-- Logs user into the system
procedure Login_User
(Client : in out Client_Type;
Username : in Swagger.UString;
Password : in Swagger.UString;
Result : out Swagger.UString) is
URI : Swagger.Clients.URI_Type;
Reply : Swagger.Value_Type;
begin
Client.Set_Accept ((Swagger.Clients.APPLICATION_XML,
Swagger.Clients.APPLICATION_JSON));
URI.Add_Param ("username", Username);
URI.Add_Param ("password", Password);
URI.Set_Path ("/user/login");
Client.Call (Swagger.Clients.GET, URI, Reply);
Swagger.Streams.Deserialize (Reply, "", Result);
end Login_User;
-- Logs out current logged in user session
procedure Logout_User
(Client : in out Client_Type) is
URI : Swagger.Clients.URI_Type;
begin
URI.Set_Path ("/user/logout");
Client.Call (Swagger.Clients.GET, URI);
end Logout_User;
-- Updated user
-- This can only be done by the logged in user.
procedure Update_User
(Client : in out Client_Type;
Username : in Swagger.UString;
P_Body : in Samples.Petstore.Models.User_Type) is
URI : Swagger.Clients.URI_Type;
Req : Swagger.Clients.Request_Type;
begin
Client.Initialize (Req, (1 => Swagger.Clients.APPLICATION_JSON));
Samples.Petstore.Models.Serialize (Req.Stream, "", P_Body);
URI.Set_Path ("/user/{username}");
URI.Set_Path_Param ("username", Username);
Client.Call (Swagger.Clients.PUT, URI, Req);
end Update_User;
end Samples.Petstore.Clients;
|
-- Copyright 2019-2020 Free Software Foundation, Inc.
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
package body Some_Package is
procedure Do_Something (I : in out Integer) is
begin
I := I + 1;
end Do_Something;
end Some_Package;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.