CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ C H 2 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-1998, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Types; use Types; package Sem_Ch2 is procedure Analyze_Character_Literal (N : Node_Id); procedure Analyze_Identifier (N : Node_Id); procedure Analyze_Integer_Literal (N : Node_Id); procedure Analyze_Real_Literal (N : Node_Id); procedure Analyze_String_Literal (N : Node_Id); private pragma Inline (Analyze_Character_Literal); pragma Inline (Analyze_Identifier); pragma Inline (Analyze_Integer_Literal); pragma Inline (Analyze_Real_Literal); pragma Inline (Analyze_String_Literal); end Sem_Ch2;
with System; with Ada.Real_Time; use Ada.Real_Time; with Time_Triggered_Scheduling; -- use Time_Triggered_Scheduling; -- The following packages are for tracing and timing support with Ada.Exceptions; use Ada.Exceptions; with Logging_Support; use Logging_Support; with Use_CPU; use Use_CPU; with Ada.Text_IO; use Ada.Text_IO; with Epoch_Support; use Epoch_Support; with STM32.Board; use STM32.Board; -- with Stats; package body TTS_Example1 is -- package MyStats is new Stats (5); -- Instantiation of generic TT scheduler No_Of_TT_Works : constant := 3; package TT_Scheduler is new Time_Triggered_Scheduling (No_Of_TT_Works); use TT_Scheduler; function New_Slot (ms : Natural; WId : Any_Work_Id; Slot_Separation : Natural := 0) return Time_Slot; function New_Slot (ms : Natural; WId : Any_Work_Id; Slot_Separation : Natural := 0) return Time_Slot is Slot : Time_Slot; begin Slot.Slot_Duration := Milliseconds (ms); Slot.Work_Id := WId; Slot.Next_Slot_Separation := Milliseconds (Slot_Separation); return Slot; end New_Slot; ---------------------------- -- Time-triggered plans -- ---------------------------- TTP1 : aliased Time_Triggered_Plan := ( New_Slot (1000, 1), New_Slot (1000, 2), New_Slot (1000, 3), New_Slot (200, Mode_Change_Slot) ); TTP2 : aliased Time_Triggered_Plan := ( New_Slot (1000, 3), New_Slot (1000, 2), New_Slot (1000, 1), New_Slot (200, Mode_Change_Slot) ); Null_Plan : aliased Time_Triggered_Plan := ( 0 => New_Slot (100, Empty_Slot), 1 => New_Slot (100, Mode_Change_Slot) ); ------------------- -- Task Patterns -- ------------------- -- A basic TT task task type Basic_TT_Task (Work_Id : Regular_Work_Id; Execution_Time_MS : Natural) with Priority => System.Priority'Last is end Basic_TT_Task; task body Basic_TT_Task is Work_To_Be_Done : constant Natural := Execution_Time_MS; LED_To_Turn : User_LED; When_Was_Released : Time; Jitter : Time_Span; begin case Work_Id is when 1 => LED_To_Turn := Red_LED; when 2 => LED_To_Turn := Blue_LED; when 3 => LED_To_Turn := Green_LED; when others => LED_To_Turn := Orange_LED; end case; loop Wait_For_Activation (Work_Id, When_Was_Released); Jitter := Clock - When_Was_Released; -- Jitter := Clock - Get_Last_Release (Work_Id); Log (No_Event, "|---> Jitter of Worker" & Integer'Image (Integer (Work_Id)) & " = " & Duration'Image (1000.0 * To_Duration (Jitter)) & " ms."); -- MyStats.Register_Time(Integer(Work_Id)*2-1, Jitter); -- Log (Start_Task, "W" & Character'Val (Character'Pos ('0') + Integer (Work_Id))); Turn_On (LED_To_Turn); Work (Work_To_Be_Done); Turn_Off (LED_To_Turn); -- Log (Stop_Task, "W" & Character'Val (Character'Pos ('0') + Integer (Work_Id))); end loop; exception when E : others => Put_Line ("Periodic worker W" & Character'Val (Character'Pos ('0') + Integer (Work_Id)) & ": " & Exception_Message (E)); end Basic_TT_Task; ------------------------------- -- Priority scheduled tasks -- ------------------------------- task type DM_Task (Id : Natural; Period : Integer; Prio : System.Priority) with Priority => Prio; task body DM_Task is Next : Time := Epoch; Per : constant Time_Span := Milliseconds (Period); Jitter : Time_Span; begin loop delay until Next; Jitter := Clock - Next; Log (No_Event, "|---------> Jitter of DM Task" & Integer'Image (Id) & " = " & Duration'Image (1000.0 * To_Duration (Jitter)) & " ms."); -- MyStats.Register_Time(Integer(Id)*2-1, Jitter); -- Log (Start_Task, "T" & Character'Val (Character'Pos ('0') + Integer (Id))); Turn_On (Orange_LED); Work (50); Turn_Off (Orange_LED); Next := Next + Per; -- Log (Stop_Task, "T" & Character'Val (Character'Pos ('0') + Integer (Id))); end loop; exception when E : others => Put_Line (Exception_Message (E)); end DM_Task; -- Event-triggered tasks T4 : DM_Task (Id => 4, Period => 600, Prio => System.Priority'First + 1); T5 : DM_Task (Id => 5, Period => 800, Prio => System.Priority'First); -- Time-triggered tasks -- Work_ID, Execution (ms) Wk1 : Basic_TT_Task (1, 500); Wk2 : Basic_TT_Task (2, 500); Wk3 : Basic_TT_Task (3, 500); procedure Main is K : Integer := 0; -- Number of iterations in main loop begin -- Generate trace header -- Log (No_Event, "1 M1"); -- Nr of modes Log (No_Event, "5"); -- Nr of works + Nr of tasks Log (No_Event, "W1 9.200 9.200 0.0 10"); -- Task_name Period Deadline Phasing Priority Log (No_Event, "W2 9.200 9.200 0.0 9"); Log (No_Event, "W3 9.200 9.200 0.0 8"); Log (No_Event, "T4 0.600 0.600 0.0 5"); Log (No_Event, "T5 0.800 0.800 0.0 4"); Log (No_Event, ":BODY"); delay until Epoch; loop Log (Mode_Change, "M1"); Set_Plan (TTP1'Access); -- , Clock); delay until Epoch + Seconds (K * 30 + 10); Log (Mode_Change, "Null Plan"); Set_Plan (Null_Plan'Access); -- , Clock); delay until Epoch + Seconds (K * 30 + 15); Log (Mode_Change, "M2"); Set_Plan (TTP2'Access); -- , Clock); delay until Epoch + Seconds (K * 30 + 25); Log (Mode_Change, "Null Plan"); Set_Plan (Null_Plan'Access); -- , Clock); delay until Epoch + Seconds (K * 30 + 30); K := K + 1; end loop; -- MyStats.Print_Stats; -- delay until Time_Last; end Main; begin Initialize_LEDs; All_LEDs_Off; end TTS_Example1;
------------------------------------------------------------------------------ -- -- -- 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 -- -- -- -- S p e c -- -- -- -- 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 contains functions for runtime comparisons on arrays whose -- elements are 32-bit discrete type values to be treated as signed. package System.Compare_Array_Signed_32 is -- Note: although the functions in this package are in a sense Pure, the -- package cannot be declared as Pure, since the arguments are addresses, -- not the data, and the result is not pure wrt the address values. function Compare_Array_S32 (Left : System.Address; Right : System.Address; Left_Len : Natural; Right_Len : Natural) return Integer; -- Compare the array starting at address Left of length Left_Len -- with the array starting at address Right of length Right_Len. -- The comparison is in the normal Ada semantic sense of array -- comparison. The result is -1,0,+1 for Left<Right, Left=Right, -- Left>Right respectively. end System.Compare_Array_Signed_32;
--***************************************************************************** --* --* PROJECT: BINGADA --* --* FILE: q_sound.adb --* --* AUTHOR: Manuel <mgrojo at github> --* --***************************************************************************** -- External sound library -- with Canberra; with Ada.Directories; with Ada.Strings.Fixed; with Gtkada.Intl; package body Q_Sound is V_Context : Canberra.Context := Canberra.Create (Name => "BingAda", Id => "bingada.lovelace", Icon => "applications-games"); --================================================================== procedure P_Play_Number (V_Number : Positive) is C_Number_Image : constant String := Ada.Strings.Fixed.Trim (V_Number'Image, Ada.Strings.Left); C_Path : constant String := "media/"; C_Extension : constant String := ".ogg"; C_Lang_Code_Last : constant := 2; C_Locale : constant String := Gtkada.Intl.Getlocale; C_Default_Lang : constant String := "en"; V_Lang : String (1 .. C_Lang_Code_Last) := C_Default_Lang; V_Sound : Canberra.Sound; begin if C_Locale'Length >= C_Lang_Code_Last then V_Lang := C_Locale (C_Locale'First .. C_Locale'First + C_Lang_Code_Last - 1); end if; if not Ada.Directories.Exists (C_Path & V_Lang & '/' & C_Number_Image & C_Extension) then V_Lang := C_Default_Lang; end if; V_Context.Play_File (File_Name => C_Path & V_Lang & '/' & C_Number_Image & C_Extension, File_Sound => V_Sound, Kind => Canberra.Music, Name => "Number"); end P_Play_Number; --================================================================== -- Nothing to do in the canberra version -- procedure P_Clean_Up is null; end Q_Sound;
-- Copyright 2007-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Pck is procedure Same (C : Character) is begin Procedure_Result := C; end Same; procedure Next (C : in out Character) is begin if C = Character'Last then C := Character'First; else C := Character'Succ (C); end if; Procedure_Result := C; end Next; end Pck;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Localization, Internationalization, Globalization for Ada -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012-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$ ------------------------------------------------------------------------------ pragma Restrictions (No_Elaboration_Code); -- GNAT: enforce generation of preinitialized data section instead of -- generation of elaboration code. package Matreshka.Internals.Unicode.Ucd.Core_0016 is pragma Preelaborate; Group_0016 : aliased constant Core_Second_Stage := (16#6D# => -- 166D (Other_Punctuation, Neutral, Other, Other, Other, Alphabetic, (Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#6E# => -- 166E (Other_Punctuation, Neutral, Other, Other, S_Term, Alphabetic, (STerm | Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#80# => -- 1680 (Space_Separator, Neutral, Other, Other, Sp, Break_After, (White_Space | Grapheme_Base => True, others => False)), 16#9B# => -- 169B (Open_Punctuation, Neutral, Other, Other, Close, Open_Punctuation, (Grapheme_Base => True, others => False)), 16#9C# => -- 169C (Close_Punctuation, Neutral, Other, Other, Close, Close_Punctuation, (Grapheme_Base => True, others => False)), 16#9D# .. 16#9F# => -- 169D .. 169F (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), 16#EB# .. 16#ED# => -- 16EB .. 16ED (Other_Punctuation, Neutral, Other, Other, Other, Break_After, (Terminal_Punctuation | Grapheme_Base => True, others => False)), 16#EE# .. 16#F0# => -- 16EE .. 16F0 (Letter_Number, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False)), 16#F9# .. 16#FF# => -- 16F9 .. 16FF (Unassigned, Neutral, Other, Other, Other, Unknown, (others => False)), others => (Other_Letter, Neutral, Other, A_Letter, O_Letter, Alphabetic, (Alphabetic | Grapheme_Base | ID_Continue | ID_Start | XID_Continue | XID_Start => True, others => False))); end Matreshka.Internals.Unicode.Ucd.Core_0016;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- package body Program.Nodes.Parenthesized_Expressions is function Create (Left_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Expression : not null Program.Elements.Expressions .Expression_Access; Right_Bracket_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return Parenthesized_Expression is begin return Result : Parenthesized_Expression := (Left_Bracket_Token => Left_Bracket_Token, Expression => Expression, Right_Bracket_Token => Right_Bracket_Token, Enclosing_Element => null) do Initialize (Result); end return; end Create; function Create (Expression : not null Program.Elements.Expressions .Expression_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_Parenthesized_Expression is begin return Result : Implicit_Parenthesized_Expression := (Expression => Expression, Is_Part_Of_Implicit => Is_Part_Of_Implicit, Is_Part_Of_Inherited => Is_Part_Of_Inherited, Is_Part_Of_Instance => Is_Part_Of_Instance, Enclosing_Element => null) do Initialize (Result); end return; end Create; overriding function Expression (Self : Base_Parenthesized_Expression) return not null Program.Elements.Expressions.Expression_Access is begin return Self.Expression; end Expression; overriding function Left_Bracket_Token (Self : Parenthesized_Expression) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Left_Bracket_Token; end Left_Bracket_Token; overriding function Right_Bracket_Token (Self : Parenthesized_Expression) return not null Program.Lexical_Elements.Lexical_Element_Access is begin return Self.Right_Bracket_Token; end Right_Bracket_Token; overriding function Is_Part_Of_Implicit (Self : Implicit_Parenthesized_Expression) return Boolean is begin return Self.Is_Part_Of_Implicit; end Is_Part_Of_Implicit; overriding function Is_Part_Of_Inherited (Self : Implicit_Parenthesized_Expression) return Boolean is begin return Self.Is_Part_Of_Inherited; end Is_Part_Of_Inherited; overriding function Is_Part_Of_Instance (Self : Implicit_Parenthesized_Expression) return Boolean is begin return Self.Is_Part_Of_Instance; end Is_Part_Of_Instance; procedure Initialize (Self : aliased in out Base_Parenthesized_Expression'Class) is begin Set_Enclosing_Element (Self.Expression, Self'Unchecked_Access); null; end Initialize; overriding function Is_Parenthesized_Expression_Element (Self : Base_Parenthesized_Expression) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Parenthesized_Expression_Element; overriding function Is_Expression_Element (Self : Base_Parenthesized_Expression) return Boolean is pragma Unreferenced (Self); begin return True; end Is_Expression_Element; overriding procedure Visit (Self : not null access Base_Parenthesized_Expression; Visitor : in out Program.Element_Visitors.Element_Visitor'Class) is begin Visitor.Parenthesized_Expression (Self); end Visit; overriding function To_Parenthesized_Expression_Text (Self : aliased in out Parenthesized_Expression) return Program.Elements.Parenthesized_Expressions .Parenthesized_Expression_Text_Access is begin return Self'Unchecked_Access; end To_Parenthesized_Expression_Text; overriding function To_Parenthesized_Expression_Text (Self : aliased in out Implicit_Parenthesized_Expression) return Program.Elements.Parenthesized_Expressions .Parenthesized_Expression_Text_Access is pragma Unreferenced (Self); begin return null; end To_Parenthesized_Expression_Text; end Program.Nodes.Parenthesized_Expressions;
with gel.Camera.forge, gel.Events, lace.Event.utility; package body gel.Applet.gui_and_sim_world is procedure define (Self : access Item; Name : in String; use_Window : in gel.Window.view) is use lace.Event.utility; begin declare the_world_Info : constant world_Info_view := new world_Info; the_Camera : constant gel.Camera.view := gel.Camera.forge.new_Camera; begin the_world_Info.World := gel.World.forge.new_World (Name, gui_world_Id, space_Kind => physics.Bullet, Renderer => Self.Renderer); the_world_Info.World.register (Self.all'unchecked_Access, to_Kind (gel.events.new_sprite_added_to_world_Event'Tag)); the_Camera.set_viewport_Size (Self.Window.Width, Self.Window.Height); the_Camera.Renderer_is (Self.Renderer); the_Camera.Site_is ((0.0, 5.0, 5.0)); the_world_Info.Cameras.append (the_Camera); Self.Worlds .append (the_world_Info); Self.local_Subject_and_Observer.add (the_add_new_sprite_Response'Access, to_Kind (gel.events.new_sprite_added_to_world_Event'Tag), the_world_Info.World.Name); the_world_Info.World.start; end; declare the_world_Info : constant world_Info_view := new world_Info; the_Camera : constant gel.Camera.View := gel.Camera.forge.new_Camera; begin the_world_Info.World := gel.World.forge.new_World (Name => Name, Id => sim_world_Id, space_Kind => physics.Bullet, Renderer => Self.Renderer); the_world_Info.World.register (the_Observer => Self.all'unchecked_Access, of_Kind => to_Kind (gel.events.new_sprite_added_to_world_Event'Tag)); the_Camera.set_viewport_Size (Self.Window.Width, Self.Window.Height); the_Camera.Renderer_is (Self.Renderer); the_Camera.Site_is ((0.0, 5.0, 5.0)); the_world_Info.Cameras.append (the_Camera); Self.Worlds .append (the_world_Info); Self.local_Subject_and_Observer.add (the_add_new_sprite_Response'Access, to_Kind (gel.events.new_sprite_added_to_world_Event'Tag), the_world_Info.World.Name); the_world_Info.World.start; end; end define; package body Forge is function to_Applet (Name : in String; use_Window : in gel.Window.view) return Item is begin return Self : Item := (gel.Applet.Forge.to_Applet (Name, use_Window) with null record) do define (Self'unchecked_Access, Name, use_Window); end return; end to_Applet; function new_Applet (Name : in String; use_Window : in gel.Window.view) return View is Self : constant View := new Item' (to_Applet (Name, use_Window)); begin return Self; end new_Applet; end Forge; function sim_World (Self : in Item) return gel.World.view is begin return Self.World (sim_world_Id); end sim_World; function sim_Camera (Self : in Item) return gel.Camera.view is begin return Self.Camera (sim_world_Id, sim_camera_Id); end sim_Camera; function gui_World (Self : in Item) return gel.World.view is begin return Self.World (gui_world_Id); end gui_World; function gui_Camera (Self : in Item) return gel.Camera.view is begin return Self.Camera (gui_world_Id, gui_camera_Id); end gui_Camera; end gel.Applet.gui_and_sim_world;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- B I N D O . G R A P H S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2019-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- For full architecture, see unit Bindo. -- The following unit defines the various graphs used in determining the -- elaboration order of units. with Types; use Types; with Bindo.Units; use Bindo.Units; with GNAT; use GNAT; with GNAT.Dynamic_HTables; use GNAT.Dynamic_HTables; with GNAT.Graphs; use GNAT.Graphs; with GNAT.Lists; use GNAT.Lists; with GNAT.Sets; use GNAT.Sets; package Bindo.Graphs is --------------------------- -- Invocation graph edge -- --------------------------- -- The following type denotes an invocation graph edge handle type Invocation_Graph_Edge_Id is new Natural; No_Invocation_Graph_Edge : constant Invocation_Graph_Edge_Id := Invocation_Graph_Edge_Id'First; First_Invocation_Graph_Edge : constant Invocation_Graph_Edge_Id := No_Invocation_Graph_Edge + 1; procedure Destroy_Invocation_Graph_Edge (Edge : in out Invocation_Graph_Edge_Id); pragma Inline (Destroy_Invocation_Graph_Edge); -- Destroy invocation graph edge Edge function Hash_Invocation_Graph_Edge (Edge : Invocation_Graph_Edge_Id) return Bucket_Range_Type; pragma Inline (Hash_Invocation_Graph_Edge); -- Obtain the hash value of key Edge function Present (Edge : Invocation_Graph_Edge_Id) return Boolean; pragma Inline (Present); -- Determine whether invocation graph edge Edge exists package IGE_Lists is new Doubly_Linked_Lists (Element_Type => Invocation_Graph_Edge_Id, "=" => "=", Destroy_Element => Destroy_Invocation_Graph_Edge); ------------------------------ -- Invocation graph vertex -- ------------------------------ -- The following type denotes an invocation graph vertex handle type Invocation_Graph_Vertex_Id is new Natural; No_Invocation_Graph_Vertex : constant Invocation_Graph_Vertex_Id := Invocation_Graph_Vertex_Id'First; First_Invocation_Graph_Vertex : constant Invocation_Graph_Vertex_Id := No_Invocation_Graph_Vertex + 1; function Hash_Invocation_Graph_Vertex (Vertex : Invocation_Graph_Vertex_Id) return Bucket_Range_Type; pragma Inline (Hash_Invocation_Graph_Vertex); -- Obtain the hash value of key Vertex function Present (Vertex : Invocation_Graph_Vertex_Id) return Boolean; pragma Inline (Present); -- Determine whether invocation graph vertex Vertex exists package IGV_Sets is new Membership_Sets (Element_Type => Invocation_Graph_Vertex_Id, "=" => "=", Hash => Hash_Invocation_Graph_Vertex); ------------------------- -- Library graph cycle -- ------------------------- type Library_Graph_Cycle_Id is new Natural; No_Library_Graph_Cycle : constant Library_Graph_Cycle_Id := Library_Graph_Cycle_Id'First; First_Library_Graph_Cycle : constant Library_Graph_Cycle_Id := No_Library_Graph_Cycle + 1; procedure Destroy_Library_Graph_Cycle (Cycle : in out Library_Graph_Cycle_Id); pragma Inline (Destroy_Library_Graph_Cycle); -- Destroy library graph cycle Cycle function Hash_Library_Graph_Cycle (Cycle : Library_Graph_Cycle_Id) return Bucket_Range_Type; pragma Inline (Hash_Library_Graph_Cycle); -- Obtain the hash value of key Cycle function Present (Cycle : Library_Graph_Cycle_Id) return Boolean; pragma Inline (Present); -- Determine whether library graph cycle Cycle exists package LGC_Lists is new Doubly_Linked_Lists (Element_Type => Library_Graph_Cycle_Id, "=" => "=", Destroy_Element => Destroy_Library_Graph_Cycle); ------------------------ -- Library graph edge -- ------------------------ -- The following type denotes a library graph edge handle type Library_Graph_Edge_Id is new Natural; No_Library_Graph_Edge : constant Library_Graph_Edge_Id := Library_Graph_Edge_Id'First; First_Library_Graph_Edge : constant Library_Graph_Edge_Id := No_Library_Graph_Edge + 1; procedure Destroy_Library_Graph_Edge (Edge : in out Library_Graph_Edge_Id); pragma Inline (Destroy_Library_Graph_Edge); -- Destroy library graph edge Edge function Hash_Library_Graph_Edge (Edge : Library_Graph_Edge_Id) return Bucket_Range_Type; pragma Inline (Hash_Library_Graph_Edge); -- Obtain the hash value of key Edge function Present (Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Present); -- Determine whether library graph edge Edge exists package LGE_Lists is new Doubly_Linked_Lists (Element_Type => Library_Graph_Edge_Id, "=" => "=", Destroy_Element => Destroy_Library_Graph_Edge); package LGE_Sets is new Membership_Sets (Element_Type => Library_Graph_Edge_Id, "=" => "=", Hash => Hash_Library_Graph_Edge); -------------------------- -- Library graph vertex -- -------------------------- -- The following type denotes a library graph vertex handle type Library_Graph_Vertex_Id is new Natural; No_Library_Graph_Vertex : constant Library_Graph_Vertex_Id := Library_Graph_Vertex_Id'First; First_Library_Graph_Vertex : constant Library_Graph_Vertex_Id := No_Library_Graph_Vertex + 1; procedure Destroy_Library_Graph_Vertex (Vertex : in out Library_Graph_Vertex_Id); pragma Inline (Destroy_Library_Graph_Vertex); -- Destroy library graph vertex Vertex function Hash_Library_Graph_Vertex (Vertex : Library_Graph_Vertex_Id) return Bucket_Range_Type; pragma Inline (Hash_Library_Graph_Vertex); -- Obtain the hash value of key Vertex function Present (Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Present); -- Determine whether library graph vertex Vertex exists package LGV_Lists is new Doubly_Linked_Lists (Element_Type => Library_Graph_Vertex_Id, "=" => "=", Destroy_Element => Destroy_Library_Graph_Vertex); package LGV_Sets is new Membership_Sets (Element_Type => Library_Graph_Vertex_Id, "=" => "=", Hash => Hash_Library_Graph_Vertex); -------------------- -- Library_Graphs -- -------------------- package Library_Graphs is -- The following type represents the various kinds of library graph -- cycles. The ordering of kinds is significant, where a literal with -- lower ordinal has a higher precedence than one with higher ordinal. type Library_Graph_Cycle_Kind is (Elaborate_Body_Cycle, -- A cycle that involves at least one spec-body pair, where the -- spec is subject to pragma Elaborate_Body. This is the highest -- precedence cycle. Elaborate_Cycle, -- A cycle that involves at least one Elaborate edge Elaborate_All_Cycle, -- A cycle that involves at least one Elaborate_All edge Forced_Cycle, -- A cycle that involves at least one edge which is a byproduct of -- the forced-elaboration-order file. Invocation_Cycle, -- A cycle that involves at least one invocation edge. This is the -- lowest precedence cycle. No_Cycle_Kind); -- The following type represents the various kinds of library edges. The -- order is important here, and corresponds to the order in which edges -- are added to the graph. See Add_Edge_Kind_Check for details. If -- changes are made such that new edge kinds are added or similar, we -- need to make sure this type matches the code in Add_Edge_Kind_Check, -- and Add_Edge_Kind_Check matches the order of edge adding. Likewise, -- if the edge-adding order changes, we need consistency between this -- enumeration type, the edge-adding order, and Add_Edge_Kind_Check. type Library_Graph_Edge_Kind is (Spec_Before_Body_Edge, -- Successor denotes a body, Predecessor denotes a spec Elaborate_Edge, -- Successor withs Predecessor, and has pragma Elaborate for it Elaborate_All_Edge, -- Successor withs Predecessor, and has pragma Elaborate_All for it With_Edge, -- Successor withs Predecessor Forced_Edge, -- Successor is forced to with Predecessor by virtue of an existing -- elaboration order provided in a file. Invocation_Edge, -- An invocation construct in unit Successor invokes a target in unit -- Predecessor. Body_Before_Spec_Edge, -- Successor denotes spec, Predecessor denotes a body. This is a -- special edge kind used only during the discovery of components. -- Note that a body can never be elaborated before its spec. No_Edge); ----------- -- Graph -- ----------- -- The following type denotes a library graph handle. Each instance must -- be created using routine Create. type Library_Graph is private; Nil : constant Library_Graph; type LGE_Predicate_Ptr is access function (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; type LGV_Comparator_Ptr is access function (G : Library_Graph; Vertex : Library_Graph_Vertex_Id; Compared_To : Library_Graph_Vertex_Id) return Precedence_Kind; type LGV_Predicate_Ptr is access function (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; ---------------------- -- Graph operations -- ---------------------- procedure Add_Edge (G : Library_Graph; Pred : Library_Graph_Vertex_Id; Succ : Library_Graph_Vertex_Id; Kind : Library_Graph_Edge_Kind; Activates_Task : Boolean); pragma Inline (Add_Edge); -- Create a new edge in library graph G with source vertex Pred and -- destination vertex Succ. Kind denotes the nature of the edge. Flag -- Activates_Task should be set when the edge involves task activation. procedure Add_Vertex (G : Library_Graph; U_Id : Unit_Id); pragma Inline (Add_Vertex); -- Create a new vertex in library graph G. U_Id is the unit the vertex -- describes. function Create (Initial_Vertices : Positive; Initial_Edges : Positive) return Library_Graph; pragma Inline (Create); -- Create a new empty graph with vertex capacity Initial_Vertices and -- edge capacity Initial_Edges. procedure Destroy (G : in out Library_Graph); pragma Inline (Destroy); -- Destroy the contents of library graph G, rendering it unusable procedure Find_Components (G : Library_Graph); pragma Inline (Find_Components); -- Find all components in library graph G procedure Find_Cycles (G : Library_Graph); pragma Inline (Find_Cycles); -- Find all cycles in library graph G function Highest_Precedence_Cycle (G : Library_Graph) return Library_Graph_Cycle_Id; pragma Inline (Highest_Precedence_Cycle); -- Obtain the cycle with highest precedence among all other cycles of -- library graph G. function Present (G : Library_Graph) return Boolean; pragma Inline (Present); -- Determine whether library graph G exists ----------------------- -- Vertex attributes -- ----------------------- function Component (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Component_Id; pragma Inline (Component); -- Obtain the component where vertex Vertex of library graph G resides function Corresponding_Item (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Library_Graph_Vertex_Id; pragma Inline (Corresponding_Item); -- Obtain the complementary vertex which represents the corresponding -- spec or body of vertex Vertex of library graph G. function Corresponding_Vertex (G : Library_Graph; U_Id : Unit_Id) return Library_Graph_Vertex_Id; pragma Inline (Corresponding_Vertex); -- Obtain the corresponding vertex of library graph G which represents -- unit U_Id. procedure Decrement_Pending_Predecessors (G : Library_Graph; Vertex : Library_Graph_Vertex_Id; Edge : Library_Graph_Edge_Id); pragma Inline (Decrement_Pending_Predecessors); -- Decrease the number of pending predecessors vertex Vertex which was -- reached via edge Edge of library graph G must wait until it can be -- elaborated. function File_Name (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return File_Name_Type; pragma Inline (File_Name); -- Obtain the name of the file where vertex Vertex of library graph G -- resides. function In_Elaboration_Order (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (In_Elaboration_Order); -- Determine whether vertex Vertex of library graph G is already in some -- elaboration order. function Invocation_Graph_Encoding (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Invocation_Graph_Encoding_Kind; pragma Inline (Invocation_Graph_Encoding); -- Obtain the encoding format used to capture information related to -- invocation vertices and edges that reside within vertex Vertex of -- library graph G. function Name (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Unit_Name_Type; pragma Inline (Name); -- Obtain the name of the unit which vertex Vertex of library graph G -- represents. procedure Pending_Predecessors_For_Elaboration (G : Library_Graph; Vertex : Library_Graph_Vertex_Id; Strong_Preds : out Natural; Weak_Preds : out Natural); pragma Inline (Pending_Predecessors_For_Elaboration); -- Obtain the number of pending strong and weak predecessors of vertex -- Vertex of library graph G, taking into account Elaborate_Body pairs. -- Strong predecessors are returned in Strong_Preds. Weak predecessors -- are returned in Weak_Preds. function Pending_Strong_Predecessors (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Natural; pragma Inline (Pending_Strong_Predecessors); -- Obtain the number of pending strong predecessors vertex Vertex of -- library graph G must wait on until it can be elaborated. function Pending_Weak_Predecessors (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Natural; pragma Inline (Pending_Weak_Predecessors); -- Obtain the number of pending weak predecessors vertex Vertex of -- library graph G must wait on until it can be elaborated. procedure Set_Corresponding_Item (G : Library_Graph; Vertex : Library_Graph_Vertex_Id; Val : Library_Graph_Vertex_Id); pragma Inline (Set_Corresponding_Item); -- Set the complementary vertex which represents the corresponding -- spec or body of vertex Vertex of library graph G to value Val. procedure Set_In_Elaboration_Order (G : Library_Graph; Vertex : Library_Graph_Vertex_Id; Val : Boolean := True); pragma Inline (Set_In_Elaboration_Order); -- Mark vertex Vertex of library graph G as included in some elaboration -- order depending on value Val. function Unit (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Unit_Id; pragma Inline (Unit); -- Obtain the unit vertex Vertex of library graph G represents --------------------- -- Edge attributes -- --------------------- function Activates_Task (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Activates_Task); -- Determine whether edge Edge of library graph G activates a task function Kind (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Library_Graph_Edge_Kind; pragma Inline (Kind); -- Obtain the nature of edge Edge of library graph G function Predecessor (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Library_Graph_Vertex_Id; pragma Inline (Predecessor); -- Obtain the predecessor vertex of edge Edge of library graph G function Successor (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Library_Graph_Vertex_Id; pragma Inline (Successor); -- Obtain the successor vertex of edge Edge of library graph G -------------------------- -- Component attributes -- -------------------------- procedure Decrement_Pending_Predecessors (G : Library_Graph; Comp : Component_Id; Edge : Library_Graph_Edge_Id); pragma Inline (Decrement_Pending_Predecessors); -- Decrease the number of pending predecessors component Comp which was -- reached via edge Edge of library graph G must wait on until it can be -- elaborated. function Pending_Strong_Predecessors (G : Library_Graph; Comp : Component_Id) return Natural; pragma Inline (Pending_Strong_Predecessors); -- Obtain the number of pending strong predecessors component Comp of -- library graph G must wait on until it can be elaborated. function Pending_Weak_Predecessors (G : Library_Graph; Comp : Component_Id) return Natural; pragma Inline (Pending_Weak_Predecessors); -- Obtain the number of pending weak predecessors component Comp of -- library graph G must wait on until it can be elaborated. ---------------------- -- Cycle attributes -- ---------------------- function Invocation_Edge_Count (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Natural; pragma Inline (Invocation_Edge_Count); -- Obtain the number of invocation edges in cycle Cycle of library -- graph G. function Kind (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Library_Graph_Cycle_Kind; pragma Inline (Kind); -- Obtain the nature of cycle Cycle of library graph G function Length (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Natural; pragma Inline (Length); -- Obtain the length of cycle Cycle of library graph G --------------- -- Semantics -- --------------- function Complementary_Vertex (G : Library_Graph; Vertex : Library_Graph_Vertex_Id; Force_Complement : Boolean) return Library_Graph_Vertex_Id; pragma Inline (Complementary_Vertex); -- Obtain the complementary vertex of vertex Vertex of library graph G -- as follows: -- -- * If Vertex is the spec of an Elaborate_Body pair, return the body -- * If Vertex is the body of an Elaborate_Body pair, return the spec -- -- This behavior can be forced by setting flag Force_Complement to True. function Contains_Elaborate_All_Edge (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Boolean; pragma Inline (Contains_Elaborate_All_Edge); -- Determine whether cycle Cycle of library graph G contains an -- Elaborate_All edge. function Contains_Static_Successor_Edge (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Boolean; pragma Inline (Contains_Static_Successor_Edge); -- Determine whether cycle Cycle of library graph G contains an edge -- where the successor was compiled using the static model. function Contains_Task_Activation (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Boolean; pragma Inline (Contains_Task_Activation); -- Determine whether cycle Cycle of library graph G contains an -- invocation edge where the path it represents involves a task -- activation. function Has_Elaborate_All_Cycle (G : Library_Graph) return Boolean; pragma Inline (Has_Elaborate_All_Cycle); -- Determine whether library graph G contains a cycle involving pragma -- Elaborate_All. function Has_No_Elaboration_Code (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Has_No_Elaboration_Code); -- Determine whether vertex Vertex of library graph G represents a unit -- that lacks elaboration code. function In_Same_Component (G : Library_Graph; Left : Library_Graph_Vertex_Id; Right : Library_Graph_Vertex_Id) return Boolean; pragma Inline (In_Same_Component); -- Determine whether vertices Left and Right of library graph G reside -- in the same component. function Is_Body (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Body); -- Determine whether vertex Vertex of library graph G denotes a body function Is_Body_Of_Spec_With_Elaborate_Body (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Body_Of_Spec_With_Elaborate_Body); -- Determine whether vertex Vertex of library graph G denotes a body -- with a corresponding spec, and the spec has pragma Elaborate_Body. function Is_Body_With_Spec (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Body_With_Spec); -- Determine whether vertex Vertex of library graph G denotes a body -- with a corresponding spec. function Is_Dynamically_Elaborated (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Dynamically_Elaborated); -- Determine whether vertex Vertex of library graph G was compiled -- using the dynamic model. function Is_Elaborable_Component (G : Library_Graph; Comp : Component_Id) return Boolean; pragma Inline (Is_Elaborable_Component); -- Determine whether component Comp of library graph G is not waiting on -- any predecessors, and can thus be elaborated. function Is_Elaborable_Vertex (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Elaborable_Vertex); -- Determine whether vertex Vertex of library graph G is not waiting on -- any predecessors, and can thus be elaborated. function Is_Elaborate_All_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_Elaborate_All_Edge); -- Determine whether edge Edge of library graph G is an edge whose -- predecessor is subject to pragma Elaborate_All. function Is_Elaborate_Body_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_Elaborate_Body_Edge); -- Determine whether edge Edge of library graph G has a successor -- that is either a spec subject to pragma Elaborate_Body, or a body -- that completes such a spec. function Is_Elaborate_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_Elaborate_Edge); -- Determine whether edge Edge of library graph G is an edge whose -- predecessor is subject to pragma Elaborate. function Is_Elaborate_Body_Pair (G : Library_Graph; Spec_Vertex : Library_Graph_Vertex_Id; Body_Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Elaborate_Body_Pair); -- Determine whether vertices Spec_Vertex and Body_Vertex of library -- graph G denote a spec subject to Elaborate_Body and its completing -- body. function Is_Forced_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_Forced_Edge); -- Determine whether edge Edge of library graph G is a byproduct of the -- forced-elaboration-order file. function Is_Internal_Unit (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Internal_Unit); -- Determine whether vertex Vertex of library graph G denotes an -- internal unit. function Is_Invocation_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_Invocation_Edge); -- Determine whether edge Edge of library graph G came from the -- traversal of the invocation graph. function Is_Predefined_Unit (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Predefined_Unit); -- Determine whether vertex Vertex of library graph G denotes a -- predefined unit. function Is_Preelaborated_Unit (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Preelaborated_Unit); -- Determine whether vertex Vertex of library graph G denotes a unit -- subject to pragma Pure or Preelaborable. function Is_Spec (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Spec); -- Determine whether vertex Vertex of library graph G denotes a spec function Is_Spec_Before_Body_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_Spec_Before_Body_Edge); -- Determine whether edge Edge of library graph G links a predecessor -- spec and a successor body belonging to the same unit. function Is_Spec_With_Body (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Spec_With_Body); -- Determine whether vertex Vertex of library graph G denotes a spec -- with a corresponding body. function Is_Spec_With_Elaborate_Body (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Spec_With_Elaborate_Body); -- Determine whether vertex Vertex of library graph G denotes a spec -- with a corresponding body, and is subject to pragma Elaborate_Body. function Is_Weakly_Elaborable_Vertex (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Is_Weakly_Elaborable_Vertex); -- Determine whether vertex Vertex of library graph G is waiting on -- weak predecessors only, in which case it can be elaborated assuming -- that the weak edges will not be exercised at elaboration time. function Is_With_Edge (G : Library_Graph; Edge : Library_Graph_Edge_Id) return Boolean; pragma Inline (Is_With_Edge); -- Determine whether edge Edge of library graph G is the result of a -- with dependency between its successor and predecessor. function Needs_Elaboration (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Boolean; pragma Inline (Needs_Elaboration); -- Determine whether vertex Vertex of library graph G represents a unit -- that needs to be elaborated. function Proper_Body (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Library_Graph_Vertex_Id; pragma Inline (Proper_Body); -- Obtain the body of vertex Vertex of library graph G function Proper_Spec (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Library_Graph_Vertex_Id; pragma Inline (Proper_Spec); -- Obtain the spec of vertex Vertex of library graph G ---------------- -- Statistics -- ---------------- function Library_Graph_Edge_Count (G : Library_Graph; Kind : Library_Graph_Edge_Kind) return Natural; pragma Inline (Library_Graph_Edge_Count); -- Obtain the total number of edges of kind Kind in library graph G function Number_Of_Component_Vertices (G : Library_Graph; Comp : Component_Id) return Natural; pragma Inline (Number_Of_Component_Vertices); -- Obtain the total number of vertices component Comp of library graph -- contains. function Number_Of_Components (G : Library_Graph) return Natural; pragma Inline (Number_Of_Components); -- Obtain the total number of components in library graph G function Number_Of_Cycles (G : Library_Graph) return Natural; pragma Inline (Number_Of_Cycles); -- Obtain the total number of cycles in library graph G function Number_Of_Edges (G : Library_Graph) return Natural; pragma Inline (Number_Of_Edges); -- Obtain the total number of edges in library graph G function Number_Of_Edges_To_Successors (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Natural; pragma Inline (Number_Of_Edges_To_Successors); -- Obtain the total number of edges to successors vertex Vertex of -- library graph G has. function Number_Of_Vertices (G : Library_Graph) return Natural; pragma Inline (Number_Of_Vertices); -- Obtain the total number of vertices in library graph G --------------- -- Iterators -- --------------- -- The following type represents an iterator over all cycles of a -- library graph. type All_Cycle_Iterator is private; function Has_Next (Iter : All_Cycle_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more cycles to examine function Iterate_All_Cycles (G : Library_Graph) return All_Cycle_Iterator; pragma Inline (Iterate_All_Cycles); -- Obtain an iterator over all cycles of library graph G procedure Next (Iter : in out All_Cycle_Iterator; Cycle : out Library_Graph_Cycle_Id); pragma Inline (Next); -- Return the current cycle referenced by iterator Iter and advance to -- the next available cycle. -- The following type represents an iterator over all edges of a library -- graph. type All_Edge_Iterator is private; function Has_Next (Iter : All_Edge_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more edges to examine function Iterate_All_Edges (G : Library_Graph) return All_Edge_Iterator; pragma Inline (Iterate_All_Edges); -- Obtain an iterator over all edges of library graph G procedure Next (Iter : in out All_Edge_Iterator; Edge : out Library_Graph_Edge_Id); pragma Inline (Next); -- Return the current edge referenced by iterator Iter and advance to -- the next available edge. -- The following type represents an iterator over all vertices of a -- library graph. type All_Vertex_Iterator is private; function Has_Next (Iter : All_Vertex_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more vertices to examine function Iterate_All_Vertices (G : Library_Graph) return All_Vertex_Iterator; pragma Inline (Iterate_All_Vertices); -- Obtain an iterator over all vertices of library graph G procedure Next (Iter : in out All_Vertex_Iterator; Vertex : out Library_Graph_Vertex_Id); pragma Inline (Next); -- Return the current vertex referenced by iterator Iter and advance -- to the next available vertex. -- The following type represents an iterator over all components of a -- library graph. type Component_Iterator is private; function Has_Next (Iter : Component_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more components to examine function Iterate_Components (G : Library_Graph) return Component_Iterator; pragma Inline (Iterate_Components); -- Obtain an iterator over all components of library graph G procedure Next (Iter : in out Component_Iterator; Comp : out Component_Id); pragma Inline (Next); -- Return the current component referenced by iterator Iter and advance -- to the next available component. -- The following type represents an iterator over all vertices of a -- component. type Component_Vertex_Iterator is private; function Has_Next (Iter : Component_Vertex_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more vertices to examine function Iterate_Component_Vertices (G : Library_Graph; Comp : Component_Id) return Component_Vertex_Iterator; pragma Inline (Iterate_Component_Vertices); -- Obtain an iterator over all vertices of component Comp of library -- graph G. procedure Next (Iter : in out Component_Vertex_Iterator; Vertex : out Library_Graph_Vertex_Id); pragma Inline (Next); -- Return the current vertex referenced by iterator Iter and advance -- to the next available vertex. -- The following type represents an iterator over all edges that form a -- cycle. type Edges_Of_Cycle_Iterator is private; function Has_Next (Iter : Edges_Of_Cycle_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more edges to examine function Iterate_Edges_Of_Cycle (G : Library_Graph; Cycle : Library_Graph_Cycle_Id) return Edges_Of_Cycle_Iterator; pragma Inline (Iterate_Edges_Of_Cycle); -- Obtain an iterator over all edges that form cycle Cycle of library -- graph G. procedure Next (Iter : in out Edges_Of_Cycle_Iterator; Edge : out Library_Graph_Edge_Id); pragma Inline (Next); -- Return the current edge referenced by iterator Iter and advance to -- the next available edge. -- The following type represents an iterator over all edges that reach -- successors starting from a particular predecessor vertex. type Edges_To_Successors_Iterator is private; function Has_Next (Iter : Edges_To_Successors_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more edges to examine function Iterate_Edges_To_Successors (G : Library_Graph; Vertex : Library_Graph_Vertex_Id) return Edges_To_Successors_Iterator; pragma Inline (Iterate_Edges_To_Successors); -- Obtain an iterator over all edges to successors with predecessor -- vertex Vertex of library graph G. procedure Next (Iter : in out Edges_To_Successors_Iterator; Edge : out Library_Graph_Edge_Id); pragma Inline (Next); -- Return the current edge referenced by iterator Iter and advance to -- the next available edge. private -------------- -- Vertices -- -------------- -- The following type represents the attributes of a library graph -- vertex. type Library_Graph_Vertex_Attributes is record Corresponding_Item : Library_Graph_Vertex_Id := No_Library_Graph_Vertex; -- The reference to the corresponding spec or body. This attribute is -- set as follows: -- -- * If predicate Is_Body_With_Spec is True, the reference denotes -- the corresponding spec. -- -- * If predicate Is_Spec_With_Body is True, the reference denotes -- the corresponding body. -- -- * Otherwise the attribute remains empty. In_Elaboration_Order : Boolean := False; -- Set when this vertex is elaborated Pending_Strong_Predecessors : Natural := 0; -- The number of pending strong predecessor vertices this vertex must -- wait on before it can be elaborated. Pending_Weak_Predecessors : Natural := 0; -- The number of weak predecessor vertices this vertex must wait on -- before it can be elaborated. Unit : Unit_Id := No_Unit_Id; -- The reference to unit this vertex represents end record; No_Library_Graph_Vertex_Attributes : constant Library_Graph_Vertex_Attributes := (Corresponding_Item => No_Library_Graph_Vertex, In_Elaboration_Order => False, Pending_Strong_Predecessors => 0, Pending_Weak_Predecessors => 0, Unit => No_Unit_Id); procedure Destroy_Library_Graph_Vertex_Attributes (Attrs : in out Library_Graph_Vertex_Attributes); pragma Inline (Destroy_Library_Graph_Vertex_Attributes); -- Destroy the contents of attributes Attrs package LGV_Tables is new Dynamic_Hash_Tables (Key_Type => Library_Graph_Vertex_Id, Value_Type => Library_Graph_Vertex_Attributes, No_Value => No_Library_Graph_Vertex_Attributes, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Library_Graph_Vertex_Attributes, Hash => Hash_Library_Graph_Vertex); ----------- -- Edges -- ----------- -- The following type represents the attributes of a library graph edge type Library_Graph_Edge_Attributes is record Activates_Task : Boolean := False; -- Set for an invocation edge, where at least one of the paths the -- edge represents activates a task. Kind : Library_Graph_Edge_Kind := No_Edge; -- The nature of the library graph edge end record; No_Library_Graph_Edge_Attributes : constant Library_Graph_Edge_Attributes := (Activates_Task => False, Kind => No_Edge); procedure Destroy_Library_Graph_Edge_Attributes (Attrs : in out Library_Graph_Edge_Attributes); pragma Inline (Destroy_Library_Graph_Edge_Attributes); -- Destroy the contents of attributes Attrs package LGE_Tables is new Dynamic_Hash_Tables (Key_Type => Library_Graph_Edge_Id, Value_Type => Library_Graph_Edge_Attributes, No_Value => No_Library_Graph_Edge_Attributes, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Library_Graph_Edge_Attributes, Hash => Hash_Library_Graph_Edge); ---------------- -- Components -- ---------------- -- The following type represents the attributes of a component type Component_Attributes is record Pending_Strong_Predecessors : Natural := 0; -- The number of pending strong predecessor components this component -- must wait on before it can be elaborated. Pending_Weak_Predecessors : Natural := 0; -- The number of pending weak predecessor components this component -- must wait on before it can be elaborated. end record; No_Component_Attributes : constant Component_Attributes := (Pending_Strong_Predecessors => 0, Pending_Weak_Predecessors => 0); procedure Destroy_Component_Attributes (Attrs : in out Component_Attributes); pragma Inline (Destroy_Component_Attributes); -- Destroy the contents of attributes Attrs package Component_Tables is new Dynamic_Hash_Tables (Key_Type => Component_Id, Value_Type => Component_Attributes, No_Value => No_Component_Attributes, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Component_Attributes, Hash => Hash_Component); ------------ -- Cycles -- ------------ -- The following type represents the attributes of a cycle type Library_Graph_Cycle_Attributes is record Invocation_Edge_Count : Natural := 0; -- The number of invocation edges within the cycle Kind : Library_Graph_Cycle_Kind := No_Cycle_Kind; -- The nature of the cycle Path : LGE_Lists.Doubly_Linked_List := LGE_Lists.Nil; -- The path of edges that form the cycle end record; No_Library_Graph_Cycle_Attributes : constant Library_Graph_Cycle_Attributes := (Invocation_Edge_Count => 0, Kind => No_Cycle_Kind, Path => LGE_Lists.Nil); procedure Destroy_Library_Graph_Cycle_Attributes (Attrs : in out Library_Graph_Cycle_Attributes); pragma Inline (Destroy_Library_Graph_Cycle_Attributes); -- Destroy the contents of attributes Attrs function Hash_Library_Graph_Cycle_Attributes (Attrs : Library_Graph_Cycle_Attributes) return Bucket_Range_Type; pragma Inline (Hash_Library_Graph_Cycle_Attributes); -- Obtain the hash of key Attrs function Same_Library_Graph_Cycle_Attributes (Left : Library_Graph_Cycle_Attributes; Right : Library_Graph_Cycle_Attributes) return Boolean; pragma Inline (Same_Library_Graph_Cycle_Attributes); -- Determine whether cycle attributes Left and Right are the same package LGC_Tables is new Dynamic_Hash_Tables (Key_Type => Library_Graph_Cycle_Id, Value_Type => Library_Graph_Cycle_Attributes, No_Value => No_Library_Graph_Cycle_Attributes, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Library_Graph_Cycle_Attributes, Hash => Hash_Library_Graph_Cycle); -------------------- -- Recorded edges -- -------------------- -- The following type represents a relation between a predecessor and -- successor vertices. type Predecessor_Successor_Relation is record Predecessor : Library_Graph_Vertex_Id := No_Library_Graph_Vertex; -- The source vertex Successor : Library_Graph_Vertex_Id := No_Library_Graph_Vertex; -- The destination vertex end record; No_Predecessor_Successor_Relation : constant Predecessor_Successor_Relation := (Predecessor => No_Library_Graph_Vertex, Successor => No_Library_Graph_Vertex); function Hash_Predecessor_Successor_Relation (Rel : Predecessor_Successor_Relation) return Bucket_Range_Type; pragma Inline (Hash_Predecessor_Successor_Relation); -- Obtain the hash value of key Rel package RE_Sets is new Membership_Sets (Element_Type => Predecessor_Successor_Relation, "=" => "=", Hash => Hash_Predecessor_Successor_Relation); ---------------- -- Statistics -- ---------------- type Library_Graph_Edge_Counts is array (Library_Graph_Edge_Kind) of Natural; ----------- -- Units -- ----------- package Unit_Tables is new Dynamic_Hash_Tables (Key_Type => Unit_Id, Value_Type => Library_Graph_Vertex_Id, No_Value => No_Library_Graph_Vertex, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Library_Graph_Vertex, Hash => Hash_Unit); ----------- -- Graph -- ----------- package DG is new Directed_Graphs (Vertex_Id => Library_Graph_Vertex_Id, No_Vertex => No_Library_Graph_Vertex, Hash_Vertex => Hash_Library_Graph_Vertex, Same_Vertex => "=", Edge_Id => Library_Graph_Edge_Id, No_Edge => No_Library_Graph_Edge, Hash_Edge => Hash_Library_Graph_Edge, Same_Edge => "="); -- The following type represents the attributes of a library graph type Library_Graph_Attributes is record Component_Attributes : Component_Tables.Dynamic_Hash_Table := Component_Tables.Nil; -- The map of component -> component attributes for all components in -- the graph. Counts : Library_Graph_Edge_Counts := (others => 0); -- Edge statistics Cycle_Attributes : LGC_Tables.Dynamic_Hash_Table := LGC_Tables.Nil; -- The map of cycle -> cycle attributes for all cycles in the graph Cycles : LGC_Lists.Doubly_Linked_List := LGC_Lists.Nil; -- The list of all cycles in the graph, sorted based on precedence Edge_Attributes : LGE_Tables.Dynamic_Hash_Table := LGE_Tables.Nil; -- The map of edge -> edge attributes for all edges in the graph Graph : DG.Directed_Graph := DG.Nil; -- The underlying graph describing the relations between edges and -- vertices. Recorded_Edges : RE_Sets.Membership_Set := RE_Sets.Nil; -- The set of recorded edges, used to prevent duplicate edges in the -- graph. Unit_To_Vertex : Unit_Tables.Dynamic_Hash_Table := Unit_Tables.Nil; -- The map of unit -> vertex Vertex_Attributes : LGV_Tables.Dynamic_Hash_Table := LGV_Tables.Nil; -- The map of vertex -> vertex attributes for all vertices in the -- graph. end record; type Library_Graph is access Library_Graph_Attributes; Nil : constant Library_Graph := null; --------------- -- Iterators -- --------------- type All_Cycle_Iterator is new LGC_Lists.Iterator; type All_Edge_Iterator is new DG.All_Edge_Iterator; type All_Vertex_Iterator is new DG.All_Vertex_Iterator; type Component_Iterator is new DG.Component_Iterator; type Component_Vertex_Iterator is new DG.Component_Vertex_Iterator; type Edges_Of_Cycle_Iterator is new LGE_Lists.Iterator; type Edges_To_Successors_Iterator is new DG.Outgoing_Edge_Iterator; end Library_Graphs; ----------------------- -- Invocation_Graphs -- ----------------------- package Invocation_Graphs is ----------- -- Graph -- ----------- -- The following type denotes an invocation graph handle. Each instance -- must be created using routine Create. type Invocation_Graph is private; Nil : constant Invocation_Graph; ---------------------- -- Graph operations -- ---------------------- procedure Add_Edge (G : Invocation_Graph; Source : Invocation_Graph_Vertex_Id; Target : Invocation_Graph_Vertex_Id; IR_Id : Invocation_Relation_Id); pragma Inline (Add_Edge); -- Create a new edge in invocation graph G with source vertex Source and -- destination vertex Target. IR_Id is the invocation relation the edge -- describes. procedure Add_Vertex (G : Invocation_Graph; IC_Id : Invocation_Construct_Id; Body_Vertex : Library_Graph_Vertex_Id; Spec_Vertex : Library_Graph_Vertex_Id); pragma Inline (Add_Vertex); -- Create a new vertex in invocation graph G. IC_Id is the invocation -- construct the vertex describes. Body_Vertex denotes the library graph -- vertex where the invocation construct's body is declared. Spec_Vertex -- is the library graph vertex where the invocation construct's spec is -- declared. function Create (Initial_Vertices : Positive; Initial_Edges : Positive; Lib_Graph : Library_Graphs.Library_Graph) return Invocation_Graph; pragma Inline (Create); -- Create a new empty graph with vertex capacity Initial_Vertices -- and edge capacity Initial_Edges. Lib_Graph is the library graph -- corresponding to this invocation graph. function Get_Lib_Graph (G : Invocation_Graph) return Library_Graphs.Library_Graph; pragma Inline (Get_Lib_Graph); -- Return the library graph corresponding to this invocation graph procedure Destroy (G : in out Invocation_Graph); pragma Inline (Destroy); -- Destroy the contents of invocation graph G, rendering it unusable function Present (G : Invocation_Graph) return Boolean; pragma Inline (Present); -- Determine whether invocation graph G exists ----------------------- -- Vertex attributes -- ----------------------- function Body_Vertex (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Library_Graph_Vertex_Id; pragma Inline (Body_Vertex); -- Obtain the library graph vertex where the body of the invocation -- construct represented by vertex Vertex of invocation graph G is -- declared. function Column (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Nat; pragma Inline (Column); -- Obtain the column number where the invocation construct vertex Vertex -- of invocation graph G describes. function Construct (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Invocation_Construct_Id; pragma Inline (Construct); -- Obtain the invocation construct vertex Vertex of invocation graph G -- describes. function Corresponding_Vertex (G : Invocation_Graph; IS_Id : Invocation_Signature_Id) return Invocation_Graph_Vertex_Id; pragma Inline (Corresponding_Vertex); -- Obtain the vertex of invocation graph G that corresponds to signature -- IS_Id. function Line (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Nat; pragma Inline (Line); -- Obtain the line number where the invocation construct vertex Vertex -- of invocation graph G describes. function Name (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Name_Id; pragma Inline (Name); -- Obtain the name of the construct vertex Vertex of invocation graph G -- describes. function Spec_Vertex (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Library_Graph_Vertex_Id; pragma Inline (Spec_Vertex); -- Obtain the library graph vertex where the spec of the invocation -- construct represented by vertex Vertex of invocation graph G is -- declared. --------------------- -- Edge attributes -- --------------------- function Extra (G : Invocation_Graph; Edge : Invocation_Graph_Edge_Id) return Name_Id; pragma Inline (Extra); -- Obtain the extra name used in error diagnostics of edge Edge of -- invocation graph G. function Kind (G : Invocation_Graph; Edge : Invocation_Graph_Edge_Id) return Invocation_Kind; pragma Inline (Kind); -- Obtain the nature of edge Edge of invocation graph G function Relation (G : Invocation_Graph; Edge : Invocation_Graph_Edge_Id) return Invocation_Relation_Id; pragma Inline (Relation); -- Obtain the relation edge Edge of invocation graph G describes function Target (G : Invocation_Graph; Edge : Invocation_Graph_Edge_Id) return Invocation_Graph_Vertex_Id; pragma Inline (Target); -- Obtain the target vertex edge Edge of invocation graph G designates ---------------- -- Statistics -- ---------------- function Invocation_Graph_Edge_Count (G : Invocation_Graph; Kind : Invocation_Kind) return Natural; pragma Inline (Invocation_Graph_Edge_Count); -- Obtain the total number of edges of kind Kind in invocation graph G function Number_Of_Edges (G : Invocation_Graph) return Natural; pragma Inline (Number_Of_Edges); -- Obtain the total number of edges in invocation graph G function Number_Of_Edges_To_Targets (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Natural; pragma Inline (Number_Of_Edges_To_Targets); -- Obtain the total number of edges to targets vertex Vertex of -- invocation graph G has. function Number_Of_Elaboration_Roots (G : Invocation_Graph) return Natural; pragma Inline (Number_Of_Elaboration_Roots); -- Obtain the total number of elaboration roots in invocation graph G function Number_Of_Vertices (G : Invocation_Graph) return Natural; pragma Inline (Number_Of_Vertices); -- Obtain the total number of vertices in invocation graph G --------------- -- Iterators -- --------------- -- The following type represents an iterator over all edges of an -- invocation graph. type All_Edge_Iterator is private; function Has_Next (Iter : All_Edge_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more edges to examine function Iterate_All_Edges (G : Invocation_Graph) return All_Edge_Iterator; pragma Inline (Iterate_All_Edges); -- Obtain an iterator over all edges of invocation graph G procedure Next (Iter : in out All_Edge_Iterator; Edge : out Invocation_Graph_Edge_Id); pragma Inline (Next); -- Return the current edge referenced by iterator Iter and advance to -- the next available edge. -- The following type represents an iterator over all vertices of an -- invocation graph. type All_Vertex_Iterator is private; function Has_Next (Iter : All_Vertex_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more vertices to examine function Iterate_All_Vertices (G : Invocation_Graph) return All_Vertex_Iterator; pragma Inline (Iterate_All_Vertices); -- Obtain an iterator over all vertices of invocation graph G procedure Next (Iter : in out All_Vertex_Iterator; Vertex : out Invocation_Graph_Vertex_Id); pragma Inline (Next); -- Return the current vertex referenced by iterator Iter and advance -- to the next available vertex. -- The following type represents an iterator over all edges that reach -- targets starting from a particular source vertex. type Edges_To_Targets_Iterator is private; function Has_Next (Iter : Edges_To_Targets_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more edges to examine function Iterate_Edges_To_Targets (G : Invocation_Graph; Vertex : Invocation_Graph_Vertex_Id) return Edges_To_Targets_Iterator; pragma Inline (Iterate_Edges_To_Targets); -- Obtain an iterator over all edges to targets with source vertex -- Vertex of invocation graph G. procedure Next (Iter : in out Edges_To_Targets_Iterator; Edge : out Invocation_Graph_Edge_Id); pragma Inline (Next); -- Return the current edge referenced by iterator Iter and advance to -- the next available edge. -- The following type represents an iterator over all vertices of an -- invocation graph that denote the elaboration procedure or a spec or -- a body, referred to as elaboration root. type Elaboration_Root_Iterator is private; function Has_Next (Iter : Elaboration_Root_Iterator) return Boolean; pragma Inline (Has_Next); -- Determine whether iterator Iter has more elaboration roots to examine function Iterate_Elaboration_Roots (G : Invocation_Graph) return Elaboration_Root_Iterator; pragma Inline (Iterate_Elaboration_Roots); -- Obtain an iterator over all elaboration roots of invocation graph G procedure Next (Iter : in out Elaboration_Root_Iterator; Root : out Invocation_Graph_Vertex_Id); pragma Inline (Next); -- Return the current elaboration root referenced by iterator Iter and -- advance to the next available elaboration root. private -------------- -- Vertices -- -------------- procedure Destroy_Invocation_Graph_Vertex (Vertex : in out Invocation_Graph_Vertex_Id); pragma Inline (Destroy_Invocation_Graph_Vertex); -- Destroy invocation graph vertex Vertex -- The following type represents the attributes of an invocation graph -- vertex. type Invocation_Graph_Vertex_Attributes is record Body_Vertex : Library_Graph_Vertex_Id := No_Library_Graph_Vertex; -- Reference to the library graph vertex where the body of this -- vertex resides. Construct : Invocation_Construct_Id := No_Invocation_Construct; -- Reference to the invocation construct this vertex represents Spec_Vertex : Library_Graph_Vertex_Id := No_Library_Graph_Vertex; -- Reference to the library graph vertex where the spec of this -- vertex resides. end record; No_Invocation_Graph_Vertex_Attributes : constant Invocation_Graph_Vertex_Attributes := (Body_Vertex => No_Library_Graph_Vertex, Construct => No_Invocation_Construct, Spec_Vertex => No_Library_Graph_Vertex); procedure Destroy_Invocation_Graph_Vertex_Attributes (Attrs : in out Invocation_Graph_Vertex_Attributes); pragma Inline (Destroy_Invocation_Graph_Vertex_Attributes); -- Destroy the contents of attributes Attrs package IGV_Tables is new Dynamic_Hash_Tables (Key_Type => Invocation_Graph_Vertex_Id, Value_Type => Invocation_Graph_Vertex_Attributes, No_Value => No_Invocation_Graph_Vertex_Attributes, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Invocation_Graph_Vertex_Attributes, Hash => Hash_Invocation_Graph_Vertex); ----------- -- Edges -- ----------- procedure Destroy_Invocation_Graph_Edge (Edge : in out Invocation_Graph_Edge_Id); pragma Inline (Destroy_Invocation_Graph_Edge); -- Destroy invocation graph edge Edge -- The following type represents the attributes of an invocation graph -- edge. type Invocation_Graph_Edge_Attributes is record Relation : Invocation_Relation_Id := No_Invocation_Relation; -- Reference to the invocation relation this edge represents end record; No_Invocation_Graph_Edge_Attributes : constant Invocation_Graph_Edge_Attributes := (Relation => No_Invocation_Relation); procedure Destroy_Invocation_Graph_Edge_Attributes (Attrs : in out Invocation_Graph_Edge_Attributes); pragma Inline (Destroy_Invocation_Graph_Edge_Attributes); -- Destroy the contents of attributes Attrs package IGE_Tables is new Dynamic_Hash_Tables (Key_Type => Invocation_Graph_Edge_Id, Value_Type => Invocation_Graph_Edge_Attributes, No_Value => No_Invocation_Graph_Edge_Attributes, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Invocation_Graph_Edge_Attributes, Hash => Hash_Invocation_Graph_Edge); --------------- -- Relations -- --------------- -- The following type represents a relation between a source and target -- vertices. type Source_Target_Relation is record Source : Invocation_Graph_Vertex_Id := No_Invocation_Graph_Vertex; -- The source vertex Target : Invocation_Graph_Vertex_Id := No_Invocation_Graph_Vertex; -- The destination vertex end record; No_Source_Target_Relation : constant Source_Target_Relation := (Source => No_Invocation_Graph_Vertex, Target => No_Invocation_Graph_Vertex); function Hash_Source_Target_Relation (Rel : Source_Target_Relation) return Bucket_Range_Type; pragma Inline (Hash_Source_Target_Relation); -- Obtain the hash value of key Rel package Relation_Sets is new Membership_Sets (Element_Type => Source_Target_Relation, "=" => "=", Hash => Hash_Source_Target_Relation); ---------------- -- Statistics -- ---------------- type Invocation_Graph_Edge_Counts is array (Invocation_Kind) of Natural; ---------------- -- Signatures -- ---------------- function Hash_Invocation_Signature (IS_Id : Invocation_Signature_Id) return Bucket_Range_Type; pragma Inline (Hash_Invocation_Signature); -- Obtain the hash value of key IS_Id package Signature_Tables is new Dynamic_Hash_Tables (Key_Type => Invocation_Signature_Id, Value_Type => Invocation_Graph_Vertex_Id, No_Value => No_Invocation_Graph_Vertex, Expansion_Threshold => 1.5, Expansion_Factor => 2, Compression_Threshold => 0.3, Compression_Factor => 2, "=" => "=", Destroy_Value => Destroy_Invocation_Graph_Vertex, Hash => Hash_Invocation_Signature); ----------------------- -- Elaboration roots -- ----------------------- package IGV_Sets is new Membership_Sets (Element_Type => Invocation_Graph_Vertex_Id, "=" => "=", Hash => Hash_Invocation_Graph_Vertex); ----------- -- Graph -- ----------- package DG is new Directed_Graphs (Vertex_Id => Invocation_Graph_Vertex_Id, No_Vertex => No_Invocation_Graph_Vertex, Hash_Vertex => Hash_Invocation_Graph_Vertex, Same_Vertex => "=", Edge_id => Invocation_Graph_Edge_Id, No_Edge => No_Invocation_Graph_Edge, Hash_Edge => Hash_Invocation_Graph_Edge, Same_Edge => "="); -- The following type represents the attributes of an invocation graph type Invocation_Graph_Attributes is record Counts : Invocation_Graph_Edge_Counts := (others => 0); -- Edge statistics Edge_Attributes : IGE_Tables.Dynamic_Hash_Table := IGE_Tables.Nil; -- The map of edge -> edge attributes for all edges in the graph Graph : DG.Directed_Graph := DG.Nil; -- The underlying graph describing the relations between edges and -- vertices. Relations : Relation_Sets.Membership_Set := Relation_Sets.Nil; -- The set of relations between source and targets, used to prevent -- duplicate edges in the graph. Roots : IGV_Sets.Membership_Set := IGV_Sets.Nil; -- The set of elaboration root vertices Signature_To_Vertex : Signature_Tables.Dynamic_Hash_Table := Signature_Tables.Nil; -- The map of signature -> vertex Vertex_Attributes : IGV_Tables.Dynamic_Hash_Table := IGV_Tables.Nil; -- The map of vertex -> vertex attributes for all vertices in the -- graph. Lib_Graph : Library_Graphs.Library_Graph; end record; type Invocation_Graph is access Invocation_Graph_Attributes; Nil : constant Invocation_Graph := null; --------------- -- Iterators -- --------------- type All_Edge_Iterator is new DG.All_Edge_Iterator; type All_Vertex_Iterator is new DG.All_Vertex_Iterator; type Edges_To_Targets_Iterator is new DG.Outgoing_Edge_Iterator; type Elaboration_Root_Iterator is new IGV_Sets.Iterator; end Invocation_Graphs; end Bindo.Graphs;
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with stdlib_h; package cstdlib is -- -*- C++ -*- forwarding header. -- Copyright (C) 1997-2017 Free Software Foundation, Inc. -- This file is part of the GNU ISO C++ Library. This library 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, or (at your option) -- any later version. -- This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- 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/>. --* @file include/cstdlib -- * This is a Standard C++ Library file. You should @c \#include this file -- * in your programs, rather than any of the @a *.h implementation files. -- * -- * This is the C++ version of the Standard C Library header @c stdlib.h, -- * and its contents are (mostly) the same as that header, but are all -- * contained in the namespace @c std (except for names which are defined -- * as macros in C). -- -- ISO C++ 14882: 20.4.6 C library -- The C standard does not require a freestanding implementation to -- provide <stdlib.h>. However, the C++ standard does still require -- <cstdlib> -- but only the functionality mentioned in -- [lib.support.start.term]. -- namespace std -- Need to ensure this finds the C library's <stdlib.h> not a libstdc++ -- wrapper that might already be installed later in the include search path. -- Get rid of those macros defined in <stdlib.h> in lieu of real functions. function div (uu_i : long; uu_j : long) return stdlib_h.ldiv_t; -- d:\install\gpl2018\include\c++\7.3.1\cstdlib:177 pragma Import (CPP, div, "_ZSt3divll"); -- namespace function div (uu_n : Long_Long_Integer; uu_d : Long_Long_Integer) return stdlib_h.lldiv_t; -- d:\install\gpl2018\include\c++\7.3.1\cstdlib:213 pragma Import (CPP, div, "_ZN9__gnu_cxx3divExx"); -- namespace __gnu_cxx -- namespace std -- extern "C++" end cstdlib;
------------------------------------------------------------------------------ -- -- -- JSON Parser/Constructor -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2021, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- 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 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 -- -- 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. -- -- -- ------------------------------------------------------------------------------ separate (JSON.Unbounded_Codecs.Node_Hash_Maps) package body Indexing_Strategies is package MH renames Modular_Hashing; type Indexing_Tactic is not null access function (Bin: MH.Hash_Binary_Value) return Match_Table_Index; type Indexing_Tactics is array (Config.Hash_Algorithm, Match_Level) of Indexing_Tactic; -- Primary_Tactics -- function XXHL32_PRI_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL32_PRI_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL32_PRI_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL32_PRI_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_PRI_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_PRI_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_PRI_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_PRI_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; Primary_Tactics: constant Indexing_Tactics := (xxHash32 => (1 => XXHL32_PRI_L1'Access, 2 => XXHL32_PRI_L2'Access, 3 => XXHL32_PRI_L3'Access, 4 => XXHL32_PRI_L4'Access), xxHash64 => (1 => XXHL64_PRI_L1'Access, 2 => XXHL64_PRI_L2'Access, 3 => XXHL64_PRI_L3'Access, 4 => XXHL64_PRI_L4'Access)); -- Secondary_Tactics -- function XXHL32_SEC_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL32_SEC_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL32_SEC_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL32_SEC_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_SEC_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_SEC_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_SEC_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; function XXHL64_SEC_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index; Secondary_Tactics: constant Indexing_Tactics := (xxHash32 => (1 => XXHL32_SEC_L1'Access, 2 => XXHL32_SEC_L2'Access, 3 => XXHL32_SEC_L3'Access, 4 => XXHL32_SEC_L4'Access), xxHash64 => (1 => XXHL64_SEC_L1'Access, 2 => XXHL64_SEC_L2'Access, 3 => XXHL64_SEC_L3'Access, 4 => XXHL64_SEC_L4'Access)); ------------------ -- Compute_Plan -- ------------------ generic Tactics: in Indexing_Tactics; function Generic_Compute_Plan (Hash: Hash_Container) return Indexing_Plan; function Generic_Compute_Plan (Hash: Hash_Container) return Indexing_Plan is Algo: Config.Hash_Algorithm renames Config.Unbounded_Codec_Hash_Algo; Hash_Bin: MH.Hash_Binary_Value := (case Hash.Kind is when xxHash32 => Hash.XXH32.Binary, when xxHash64 => Hash.XXH64.Binary); begin pragma Assert (Hash_Bin'First = 1); pragma Assert (case Algo is when xxHash32 => Hash_Bin'Length = 4, when xxHash64 => Hash_Bin'Length = 8); return Plan: Indexing_Plan do for Level in Match_Level'Range loop Plan(Level) := Tactics(Algo, Level)(Hash_Bin); end loop; end return; end; function Compute_Primary_Plan_Instance is new Generic_Compute_Plan (Primary_Tactics); function Compute_Primary_Plan (Hash: Hash_Container) return Indexing_Plan renames Compute_Primary_Plan_Instance; function Compute_Secondary_Plan_Instance is new Generic_Compute_Plan (Secondary_Tactics); function Compute_Secondary_Plan (Hash: Hash_Container) return Indexing_Plan renames Compute_Secondary_Plan_Instance; -- -- Strategies -- -- Strategy descriptions -- -- xxHash32 -- -------- -- xxHash32 produces a 4-octet (32-bit) value, which matches exactly the -- number of Match Levels. The strategy is simple, for the primary tactics, -- we will use the octets in order of their index vis-a-vis the match level. -- -- For the secondary tactics, we will simply go in reverse order. -- xxHash64 -- -------- -- xxHash64 produces an 8-octet (64-bit) value. The XXH64 strategy -- interleves odd (primary) and even (secondary) octets per match level. -------------- -- xxHash32 -- -------------- function XXHL32_PRI_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (1))); function XXHL32_PRI_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (2))); function XXHL32_PRI_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (3))); function XXHL32_PRI_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (4))); function XXHL32_SEC_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (4))); function XXHL32_SEC_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (3))); function XXHL32_SEC_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (2))); function XXHL32_SEC_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (1))); -------------- -- xxHash64 -- -------------- function XXHL64_PRI_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (1))); function XXHL64_PRI_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (3))); function XXHL64_PRI_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (5))); function XXHL64_PRI_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (7))); function XXHL64_SEC_L1 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (2))); function XXHL64_SEC_L2 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (4))); function XXHL64_SEC_L3 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (6))); function XXHL64_SEC_L4 (Bin: MH.Hash_Binary_Value) return Match_Table_Index is (Match_Table_Index(Bin (8))); end Indexing_Strategies;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R . C H 2 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram body ordering check. Subprograms are in order -- by RM section rather than alphabetical separate (Par) package body Ch2 is -- Local functions, used only in this chapter procedure Scan_Pragma_Argument_Association (Identifier_Seen : in out Boolean; Association : out Node_Id); -- Scans out a pragma argument association. Identifier_Seen is true on -- entry if a previous association had an identifier, and gets set True if -- the scanned association has an identifier (this is used to check the -- rule that no associations without identifiers can follow an association -- which has an identifier). The result is returned in Association. --------------------- -- 2.3 Identifier -- --------------------- -- IDENTIFIER ::= LETTER {[UNDERLINE] LETTER_OR_DIGIT} -- LETTER_OR_DIGIT ::= IDENTIFIER_LETTER | DIGIT -- An IDENTIFIER shall not be a reserved word -- Error recovery: can raise Error_Resync (cannot return Error) function P_Identifier (C : Id_Check := None) return Node_Id is Ident_Node : Node_Id; begin -- All set if we do indeed have an identifier if Token = Tok_Identifier then -- Ada 2005 (AI-284): Compiling in Ada95 mode we warn that INTERFACE, -- OVERRIDING, and SYNCHRONIZED are new reserved words. if Ada_Version = Ada_95 and then Warn_On_Ada_2005_Compatibility then if Token_Name = Name_Overriding or else Token_Name = Name_Synchronized or else (Token_Name = Name_Interface and then Prev_Token /= Tok_Pragma) then Error_Msg_N ("& is a reserved word in Ada 2005?", Token_Node); end if; end if; Ident_Node := Token_Node; Scan; -- past Identifier return Ident_Node; -- If we have a reserved identifier, manufacture an identifier with -- a corresponding name after posting an appropriate error message elsif Is_Reserved_Identifier (C) then Scan_Reserved_Identifier (Force_Msg => False); Ident_Node := Token_Node; Scan; -- past the node return Ident_Node; -- Otherwise we have junk that cannot be interpreted as an identifier else T_Identifier; -- to give message raise Error_Resync; end if; end P_Identifier; -------------------------- -- 2.3 Letter Or Digit -- -------------------------- -- Parsed by P_Identifier (2.3) -------------------------- -- 2.4 Numeric Literal -- -------------------------- -- NUMERIC_LITERAL ::= DECIMAL_LITERAL | BASED_LITERAL -- Numeric literal is returned by the scanner as either -- Tok_Integer_Literal or Tok_Real_Literal ---------------------------- -- 2.4.1 Decimal Literal -- ---------------------------- -- DECIMAL_LITERAL ::= NUMERAL [.NUMERAL] [EXPONENT] -- Handled by scanner as part of numeric lIteral handing (see 2.4) -------------------- -- 2.4.1 Numeral -- -------------------- -- NUMERAL ::= DIGIT {[UNDERLINE] DIGIT} -- Handled by scanner as part of numeric literal handling (see 2.4) --------------------- -- 2.4.1 Exponent -- --------------------- -- EXPONENT ::= E [+] NUMERAL | E - NUMERAL -- Handled by scanner as part of numeric literal handling (see 2.4) -------------------------- -- 2.4.2 Based Literal -- -------------------------- -- BASED_LITERAL ::= -- BASE # BASED_NUMERAL [.BASED_NUMERAL] # [EXPONENT] -- Handled by scanner as part of numeric literal handling (see 2.4) ----------------- -- 2.4.2 Base -- ----------------- -- BASE ::= NUMERAL -- Handled by scanner as part of numeric literal handling (see 2.4) -------------------------- -- 2.4.2 Based Numeral -- -------------------------- -- BASED_NUMERAL ::= -- EXTENDED_DIGIT {[UNDERLINE] EXTENDED_DIGIT} -- Handled by scanner as part of numeric literal handling (see 2.4) --------------------------- -- 2.4.2 Extended Digit -- --------------------------- -- EXTENDED_DIGIT ::= DIGIT | A | B | C | D | E | F -- Handled by scanner as part of numeric literal handling (see 2.4) ---------------------------- -- 2.5 Character Literal -- ---------------------------- -- CHARACTER_LITERAL ::= ' GRAPHIC_CHARACTER ' -- Handled by the scanner and returned as Tok_Character_Literal ------------------------- -- 2.6 String Literal -- ------------------------- -- STRING LITERAL ::= "{STRING_ELEMENT}" -- Handled by the scanner and returned as Tok_Character_Literal -- or if the string looks like an operator as Tok_Operator_Symbol. ------------------------- -- 2.6 String Element -- ------------------------- -- STRING_ELEMENT ::= "" | non-quotation_mark_GRAPHIC_CHARACTER -- A STRING_ELEMENT is either a pair of quotation marks ("), -- or a single GRAPHIC_CHARACTER other than a quotation mark. -- Handled by scanner as part of string literal handling (see 2.4) ------------------ -- 2.7 Comment -- ------------------ -- A COMMENT starts with two adjacent hyphens and extends up to the -- end of the line. A COMMENT may appear on any line of a program. -- Handled by the scanner which simply skips past encountered comments ----------------- -- 2.8 Pragma -- ----------------- -- PRAGMA ::= pragma IDENTIFIER -- [(PRAGMA_ARGUMENT_ASSOCIATION {, PRAGMA_ARGUMENT_ASSOCIATION})]; -- The caller has checked that the initial token is PRAGMA -- Error recovery: cannot raise Error_Resync -- One special piece of processing is needed in this routine. As described -- in the section on "Handling semicolon used in place of IS" in module -- Parse, the parser detects the case of missing subprogram bodies to -- allow recovery from this syntactic error. Pragma INTERFACE (and, for -- Ada 95, pragma IMPORT) can appear in place of the body. The parser must -- recognize the use of these two pragmas in this context, otherwise it -- will think there are missing bodies, and try to change ; to IS, when -- in fact the bodies ARE present, supplied by these pragmas. function P_Pragma return Node_Id is Interface_Check_Required : Boolean := False; -- Set True if check of pragma INTERFACE is required Import_Check_Required : Boolean := False; -- Set True if check of pragma IMPORT is required Arg_Count : Int := 0; -- Number of argument associations processed Identifier_Seen : Boolean := False; -- Set True if an identifier is encountered for a pragma argument. Used -- to check that there are no more arguments without identifiers. Pragma_Node : Node_Id; Pragma_Name : Name_Id; Semicolon_Loc : Source_Ptr; Ident_Node : Node_Id; Assoc_Node : Node_Id; Result : Node_Id; procedure Skip_Pragma_Semicolon; -- Skip past semicolon at end of pragma --------------------------- -- Skip_Pragma_Semicolon -- --------------------------- procedure Skip_Pragma_Semicolon is begin if Token /= Tok_Semicolon then T_Semicolon; Resync_Past_Semicolon; else Scan; -- past semicolon end if; end Skip_Pragma_Semicolon; -- Start of processing for P_Pragma begin Pragma_Node := New_Node (N_Pragma, Token_Ptr); Scan; -- past PRAGMA Pragma_Name := Token_Name; if Style_Check then Style.Check_Pragma_Name; end if; -- Ada 2005 (AI-284): INTERFACE is a new reserved word but it is -- allowed as a pragma name. if Ada_Version >= Ada_05 and then Token = Tok_Interface then Pragma_Name := Name_Interface; Ident_Node := Token_Node; Scan; -- past INTERFACE else Ident_Node := P_Identifier; Delete_Node (Ident_Node); end if; Set_Chars (Pragma_Node, Pragma_Name); -- See if special INTERFACE/IMPORT check is required if SIS_Entry_Active then Interface_Check_Required := (Pragma_Name = Name_Interface); Import_Check_Required := (Pragma_Name = Name_Import); else Interface_Check_Required := False; Import_Check_Required := False; end if; -- Scan arguments. We assume that arguments are present if there is -- a left paren, or if a semicolon is missing and there is another -- token on the same line as the pragma name. if Token = Tok_Left_Paren or else (Token /= Tok_Semicolon and then not Token_Is_At_Start_Of_Line) then Set_Pragma_Argument_Associations (Pragma_Node, New_List); T_Left_Paren; loop Arg_Count := Arg_Count + 1; Scan_Pragma_Argument_Association (Identifier_Seen, Assoc_Node); if Arg_Count = 2 and then (Interface_Check_Required or else Import_Check_Required) then -- Here is where we cancel the SIS active status if this pragma -- supplies a body for the currently active subprogram spec. if Nkind (Expression (Assoc_Node)) in N_Direct_Name and then Chars (Expression (Assoc_Node)) = Chars (SIS_Labl) then SIS_Entry_Active := False; end if; end if; Append (Assoc_Node, Pragma_Argument_Associations (Pragma_Node)); exit when Token /= Tok_Comma; Scan; -- past comma end loop; -- If we have := for pragma Debug, it is worth special casing -- the error message (it is easy to think of pragma Debug as -- taking a statement, and an assignment statement is the most -- likely candidate for this error) if Token = Tok_Colon_Equal and then Pragma_Name = Name_Debug then Error_Msg_SC ("argument for pragma Debug must be procedure call"); Resync_To_Semicolon; -- Normal case, we expect a right paren here else T_Right_Paren; end if; end if; Semicolon_Loc := Token_Ptr; -- Now we have two tasks left, we need to scan out the semicolon -- following the pragma, and we have to call Par.Prag to process -- the pragma. Normally we do them in this order, however, there -- is one exception namely pragma Style_Checks where we like to -- skip the semicolon after processing the pragma, since that way -- the style checks for the scanning of the semicolon follow the -- settings of the pragma. -- You might think we could just unconditionally do things in -- the opposite order, but there are other pragmas, notably the -- case of pragma Source_File_Name, which assume the semicolon -- is already scanned out. if Chars (Pragma_Node) = Name_Style_Checks then Result := Par.Prag (Pragma_Node, Semicolon_Loc); Skip_Pragma_Semicolon; return Result; else Skip_Pragma_Semicolon; return Par.Prag (Pragma_Node, Semicolon_Loc); end if; exception when Error_Resync => Resync_Past_Semicolon; return Error; end P_Pragma; -- This routine is called if a pragma is encountered in an inappropriate -- position, the pragma is scanned out and control returns to continue. -- The caller has checked that the initial token is pragma -- Error recovery: cannot raise Error_Resync procedure P_Pragmas_Misplaced is begin while Token = Tok_Pragma loop Error_Msg_SC ("pragma not allowed here"); Discard_Junk_Node (P_Pragma); end loop; end P_Pragmas_Misplaced; -- This function is called to scan out an optional sequence of pragmas. -- If no pragmas are found, then No_List is returned. -- Error recovery: Cannot raise Error_Resync function P_Pragmas_Opt return List_Id is L : List_Id; begin if Token = Tok_Pragma then L := New_List; P_Pragmas_Opt (L); return L; else return No_List; end if; end P_Pragmas_Opt; -- This procedure is called to scan out an optional sequence of pragmas. -- Any pragmas found are appended to the list provided as an argument. -- Error recovery: Cannot raise Error_Resync procedure P_Pragmas_Opt (List : List_Id) is P : Node_Id; begin while Token = Tok_Pragma loop P := P_Pragma; if Chars (P) = Name_Assert or else Chars (P) = Name_Debug then Error_Msg_Name_1 := Chars (P); Error_Msg_N ("pragma% must be in declaration/statement context", P); else Append (P, List); end if; end loop; end P_Pragmas_Opt; -------------------------------------- -- 2.8 Pragma_Argument Association -- -------------------------------------- -- PRAGMA_ARGUMENT_ASSOCIATION ::= -- [pragma_argument_IDENTIFIER =>] NAME -- | [pragma_argument_IDENTIFIER =>] EXPRESSION -- Error recovery: cannot raise Error_Resync procedure Scan_Pragma_Argument_Association (Identifier_Seen : in out Boolean; Association : out Node_Id) is Scan_State : Saved_Scan_State; Identifier_Node : Node_Id; begin Association := New_Node (N_Pragma_Argument_Association, Token_Ptr); Set_Chars (Association, No_Name); if Token = Tok_Identifier then Identifier_Node := Token_Node; Save_Scan_State (Scan_State); -- at Identifier Scan; -- past Identifier if Token = Tok_Arrow then Identifier_Seen := True; Scan; -- past arrow Set_Chars (Association, Chars (Identifier_Node)); Delete_Node (Identifier_Node); -- Case of argument with no identifier else Restore_Scan_State (Scan_State); -- to Identifier if Identifier_Seen then Error_Msg_SC ("|pragma argument identifier required here ('R'M' 2.8(4))"); end if; end if; end if; Set_Expression (Association, P_Expression); end Scan_Pragma_Argument_Association; end Ch2;
-- 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/>. with System; package Pck is type Array_Type is array (Integer range <>) of Integer; type Record_Type (N : Integer) is record A : Array_Type (1 .. N); end record; function Get (N : Integer) return Record_Type; procedure Do_Nothing (A : System.Address); end Pck;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . D E B U G -- -- -- -- B o d y -- -- -- -- Copyright (C) 2011-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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This package encapsulates all direct interfaces to task debugging services -- that are needed by gdb with gnat mode. -- Note : This file *must* be compiled with debugging information -- Do not add any dependency on GNARL packages since this package is used in -- both normal and restricted (ravenscar) environments. package body System.Tasking.Debug is First_Task : Task_Id := null; pragma Unreferenced (First_Task); -- Head of known tasks list Last_Task : Task_Id := null; -- Simply linked list of known tasks visible from GDB. Tasks are always -- appended. The link is made with the Activation_Link component. ----------------- -- Add_Task_Id -- ----------------- procedure Add_Task_Id (T : Task_Id) is begin pragma Assert (T.Common.Activation_Link = null); if Last_Task /= null then Last_Task.Common.Activation_Link := T; else First_Task := T; end if; Last_Task := T; end Add_Task_Id; end System.Tasking.Debug;
------------------------------------------------------------------------------- -- Copyright (c) 2019, Daniel King -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- * Redistributions of source code must retain the above copyright -- notice, this list of conditions and the following disclaimer. -- * Redistributions in binary form must reproduce the above copyright -- notice, this list of conditions and the following disclaimer in the -- documentation and/or other materials provided with the distribution. -- * The name of the copyright holder may not be used to endorse or promote -- Products derived from this software without specific prior written -- permission. -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY -- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -- THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ------------------------------------------------------------------------------- with AUnit.Test_Fixtures; with Keccak.Generic_MonkeyWrap; with Keccak.Types; use Keccak.Types; generic with package MonkeyWrap is new Keccak.Generic_MonkeyWrap (<>); package Ketje_Tests is type Test is new AUnit.Test_Fixtures.Test_Fixture with null record; procedure Test_Encrypt_Decrypt (T : in out Test); procedure Test_Streaming_AAD (T : in out Test); procedure Test_Streaming_Encryption (T : in out Test); procedure Test_Streaming_Decryption (T : in out Test); procedure Test_Streaming_Tag (T : in out Test); procedure Test_Verify_Tag (T : in out Test); procedure Test_Streaming_Verify_Tag (T : in out Test); end Ketje_Tests;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_get_tex_geniv_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; context_tag : aliased xcb.xcb_glx_context_tag_t; coord : aliased Interfaces.Unsigned_32; pname : aliased Interfaces.Unsigned_32; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_tex_geniv_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_tex_geniv_request_t.Item, Element_Array => xcb.xcb_glx_get_tex_geniv_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_get_tex_geniv_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_get_tex_geniv_request_t.Pointer, Element_Array => xcb.xcb_glx_get_tex_geniv_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_get_tex_geniv_request_t;
with Ada.Strings; use Ada.Strings; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Strings.Equal_Case_Insensitive; with Langkit_Support.Text; use Langkit_Support.Text; package body Rejuvenation.Utils is -- Raw signature -------- function Raw_Signature (Node : Ada_Node'Class; Before, After : Node_Location := No_Trivia) return String is begin if Node.Is_Null then return ""; else declare First : constant Positive := Start_Offset (Node, Before); Last : constant Natural := End_Offset (Node, After); Unit : constant Analysis_Unit := Node.Unit; Node_Str : constant String := Encode (Unit.Text (First .. Last), Unit.Get_Charset); begin return Node_Str; end; end if; end Raw_Signature; function Raw_Signature (Token : Token_Reference; Charset : String) return String is (if Token = No_Token then "" else Encode (Text (Token), Charset)); function Raw_Signature (First_Node, Last_Node : Ada_Node'Class; Before, After : Node_Location := No_Trivia) return String is First : constant Positive := Start_Offset (First_Node, Before); Last : constant Natural := End_Offset (Last_Node, After); Unit : constant Analysis_Unit := First_Node.Unit; Str : constant String := Encode (Unit.Text (First .. Last), Unit.Get_Charset); begin return Str; end Raw_Signature; function Are_Equal_As_Raw_Signature (Node1, Node2 : Ada_Node'Class) return Boolean is begin return Raw_Signature (Node1) = Raw_Signature (Node2); end Are_Equal_As_Raw_Signature; function Are_Equal_Case_Insensitive_As_Raw_Signature (Node1, Node2 : Ada_Node'Class) return Boolean is begin return Equal_Case_Insensitive (Raw_Signature (Node1), Raw_Signature (Node2)); end Are_Equal_Case_Insensitive_As_Raw_Signature; -- Package (Distributed over files) functionality function In_Same_Package (Unit1, Unit2 : Analysis_Unit) return Boolean is Unit1_Filename : constant String := Unit1.Get_Filename; Unit2_Filename : constant String := Unit2.Get_Filename; begin -- TODO: should the comparison be case insensitive? return Unit1_Filename (Unit1_Filename'First .. Unit1_Filename'Last - 1) = Unit2_Filename (Unit2_Filename'First .. Unit2_Filename'Last - 1); end In_Same_Package; -- Image -------- function Image (Node_List_Vector : Node_List.Vector) return String is begin if Node_List_Vector.Length = 0 then return "[]"; else declare Str : Unbounded_String := To_Unbounded_String (Node_List_Vector.First_Element.Image); begin for Index in Node_List_Vector.First_Index + 1 .. Node_List_Vector.Last_Index loop Str := Str & ", " & Node_List_Vector.Element (Positive (Index)).Image; end loop; return "[" & To_String (Str) & "]"; end; end if; end Image; -- Get trivia tokens -------- function Get_Trivia_Before (Node : Ada_Node'Class) return Token_List.Vector is begin return Get_Trivia_Before (Node.Token_Start); end Get_Trivia_Before; function Get_Trivia_Before (Token : Token_Reference) return Token_List.Vector is Results : Token_List.Vector; Running_Token : Token_Reference := Previous (Token); begin while Is_Trivia (Running_Token) loop Token_List.Prepend (Results, Running_Token); Running_Token := Previous (Running_Token); end loop; return Results; end Get_Trivia_Before; function Get_Trivia_After (Node : Ada_Node'Class) return Token_List.Vector is begin return Get_Trivia_After (Node.Token_End); end Get_Trivia_After; function Get_Trivia_After (Token : Token_Reference) return Token_List.Vector is Results : Token_List.Vector; Running_Token : Token_Reference := Next (Token); begin while Is_Trivia (Running_Token) loop Token_List.Append (Results, Running_Token); Running_Token := Next (Running_Token); end loop; return Results; end Get_Trivia_After; function Get_Tokens (Node : Ada_Node'Class) return Token_List.Vector is Results : Token_List.Vector; Running_Token : Token_Reference := Node.Token_Start; begin while Running_Token /= Node.Token_End loop Token_List.Append (Results, Running_Token); Running_Token := Next (Running_Token); end loop; Token_List.Append (Results, Running_Token); return Results; end Get_Tokens; end Rejuvenation.Utils;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- U R E A L P -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2010, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Alloc; with Output; use Output; with Table; with Tree_IO; use Tree_IO; package body Urealp is Ureal_First_Entry : constant Ureal := Ureal'Succ (No_Ureal); -- First subscript allocated in Ureal table (note that we can't just -- add 1 to No_Ureal, since "+" means something different for Ureals! type Ureal_Entry is record Num : Uint; -- Numerator (always non-negative) Den : Uint; -- Denominator (always non-zero, always positive if base is zero) Rbase : Nat; -- Base value. If Rbase is zero, then the value is simply Num / Den. -- If Rbase is non-zero, then the value is Num / (Rbase ** Den) Negative : Boolean; -- Flag set if value is negative end record; -- The following representation clause ensures that the above record -- has no holes. We do this so that when instances of this record are -- written by Tree_Gen, we do not write uninitialized values to the file. for Ureal_Entry use record Num at 0 range 0 .. 31; Den at 4 range 0 .. 31; Rbase at 8 range 0 .. 31; Negative at 12 range 0 .. 31; end record; for Ureal_Entry'Size use 16 * 8; -- This ensures that we did not leave out any fields package Ureals is new Table.Table ( Table_Component_Type => Ureal_Entry, Table_Index_Type => Ureal'Base, Table_Low_Bound => Ureal_First_Entry, Table_Initial => Alloc.Ureals_Initial, Table_Increment => Alloc.Ureals_Increment, Table_Name => "Ureals"); -- The following universal reals are the values returned by the constant -- functions. They are initialized by the initialization procedure. UR_0 : Ureal; UR_M_0 : Ureal; UR_Tenth : Ureal; UR_Half : Ureal; UR_1 : Ureal; UR_2 : Ureal; UR_10 : Ureal; UR_10_36 : Ureal; UR_M_10_36 : Ureal; UR_100 : Ureal; UR_2_128 : Ureal; UR_2_80 : Ureal; UR_2_M_128 : Ureal; UR_2_M_80 : Ureal; Num_Ureal_Constants : constant := 10; -- This is used for an assertion check in Tree_Read and Tree_Write to -- help remember to add values to these routines when we add to the list. Normalized_Real : Ureal := No_Ureal; -- Used to memoize Norm_Num and Norm_Den, if either of these functions -- is called, this value is set and Normalized_Entry contains the result -- of the normalization. On subsequent calls, this is used to avoid the -- call to Normalize if it has already been made. Normalized_Entry : Ureal_Entry; -- Entry built by most recent call to Normalize ----------------------- -- Local Subprograms -- ----------------------- function Decimal_Exponent_Hi (V : Ureal) return Int; -- Returns an estimate of the exponent of Val represented as a normalized -- decimal number (non-zero digit before decimal point), The estimate is -- either correct, or high, but never low. The accuracy of the estimate -- affects only the efficiency of the comparison routines. function Decimal_Exponent_Lo (V : Ureal) return Int; -- Returns an estimate of the exponent of Val represented as a normalized -- decimal number (non-zero digit before decimal point), The estimate is -- either correct, or low, but never high. The accuracy of the estimate -- affects only the efficiency of the comparison routines. function Equivalent_Decimal_Exponent (U : Ureal_Entry) return Int; -- U is a Ureal entry for which the base value is non-zero, the value -- returned is the equivalent decimal exponent value, i.e. the value of -- Den, adjusted as though the base were base 10. The value is rounded -- to the nearest integer, and so can be one off. function Is_Integer (Num, Den : Uint) return Boolean; -- Return true if the real quotient of Num / Den is an integer value function Normalize (Val : Ureal_Entry) return Ureal_Entry; -- Normalizes the Ureal_Entry by reducing it to lowest terms (with a base -- value of 0). function Same (U1, U2 : Ureal) return Boolean; pragma Inline (Same); -- Determines if U1 and U2 are the same Ureal. Note that we cannot use -- the equals operator for this test, since that tests for equality, not -- identity. function Store_Ureal (Val : Ureal_Entry) return Ureal; -- This store a new entry in the universal reals table and return its index -- in the table. function Store_Ureal_Normalized (Val : Ureal_Entry) return Ureal; pragma Inline (Store_Ureal_Normalized); -- Like Store_Ureal, but normalizes its operand first. ------------------------- -- Decimal_Exponent_Hi -- ------------------------- function Decimal_Exponent_Hi (V : Ureal) return Int is Val : constant Ureal_Entry := Ureals.Table (V); begin -- Zero always returns zero if UR_Is_Zero (V) then return 0; -- For numbers in rational form, get the maximum number of digits in the -- numerator and the minimum number of digits in the denominator, and -- subtract. For example: -- 1000 / 99 = 1.010E+1 -- 9999 / 10 = 9.999E+2 -- This estimate may of course be high, but that is acceptable elsif Val.Rbase = 0 then return UI_Decimal_Digits_Hi (Val.Num) - UI_Decimal_Digits_Lo (Val.Den); -- For based numbers, just subtract the decimal exponent from the -- high estimate of the number of digits in the numerator and add -- one to accommodate possible round off errors for non-decimal -- bases. For example: -- 1_500_000 / 10**4 = 1.50E-2 else -- Val.Rbase /= 0 return UI_Decimal_Digits_Hi (Val.Num) - Equivalent_Decimal_Exponent (Val) + 1; end if; end Decimal_Exponent_Hi; ------------------------- -- Decimal_Exponent_Lo -- ------------------------- function Decimal_Exponent_Lo (V : Ureal) return Int is Val : constant Ureal_Entry := Ureals.Table (V); begin -- Zero always returns zero if UR_Is_Zero (V) then return 0; -- For numbers in rational form, get min digits in numerator, max digits -- in denominator, and subtract and subtract one more for possible loss -- during the division. For example: -- 1000 / 99 = 1.010E+1 -- 9999 / 10 = 9.999E+2 -- This estimate may of course be low, but that is acceptable elsif Val.Rbase = 0 then return UI_Decimal_Digits_Lo (Val.Num) - UI_Decimal_Digits_Hi (Val.Den) - 1; -- For based numbers, just subtract the decimal exponent from the -- low estimate of the number of digits in the numerator and subtract -- one to accommodate possible round off errors for non-decimal -- bases. For example: -- 1_500_000 / 10**4 = 1.50E-2 else -- Val.Rbase /= 0 return UI_Decimal_Digits_Lo (Val.Num) - Equivalent_Decimal_Exponent (Val) - 1; end if; end Decimal_Exponent_Lo; ----------------- -- Denominator -- ----------------- function Denominator (Real : Ureal) return Uint is begin return Ureals.Table (Real).Den; end Denominator; --------------------------------- -- Equivalent_Decimal_Exponent -- --------------------------------- function Equivalent_Decimal_Exponent (U : Ureal_Entry) return Int is -- The following table is a table of logs to the base 10 Logs : constant array (Nat range 1 .. 16) of Long_Float := ( 1 => 0.000000000000000, 2 => 0.301029995663981, 3 => 0.477121254719662, 4 => 0.602059991327962, 5 => 0.698970004336019, 6 => 0.778151250383644, 7 => 0.845098040014257, 8 => 0.903089986991944, 9 => 0.954242509439325, 10 => 1.000000000000000, 11 => 1.041392685158230, 12 => 1.079181246047620, 13 => 1.113943352306840, 14 => 1.146128035678240, 15 => 1.176091259055680, 16 => 1.204119982655920); begin pragma Assert (U.Rbase /= 0); return Int (Long_Float (UI_To_Int (U.Den)) * Logs (U.Rbase)); end Equivalent_Decimal_Exponent; ---------------- -- Initialize -- ---------------- procedure Initialize is begin Ureals.Init; UR_0 := UR_From_Components (Uint_0, Uint_1, 0, False); UR_M_0 := UR_From_Components (Uint_0, Uint_1, 0, True); UR_Half := UR_From_Components (Uint_1, Uint_1, 2, False); UR_Tenth := UR_From_Components (Uint_1, Uint_1, 10, False); UR_1 := UR_From_Components (Uint_1, Uint_1, 0, False); UR_2 := UR_From_Components (Uint_1, Uint_Minus_1, 2, False); UR_10 := UR_From_Components (Uint_1, Uint_Minus_1, 10, False); UR_10_36 := UR_From_Components (Uint_1, Uint_Minus_36, 10, False); UR_M_10_36 := UR_From_Components (Uint_1, Uint_Minus_36, 10, True); UR_100 := UR_From_Components (Uint_1, Uint_Minus_2, 10, False); UR_2_128 := UR_From_Components (Uint_1, Uint_Minus_128, 2, False); UR_2_M_128 := UR_From_Components (Uint_1, Uint_128, 2, False); UR_2_80 := UR_From_Components (Uint_1, Uint_Minus_80, 2, False); UR_2_M_80 := UR_From_Components (Uint_1, Uint_80, 2, False); end Initialize; ---------------- -- Is_Integer -- ---------------- function Is_Integer (Num, Den : Uint) return Boolean is begin return (Num / Den) * Den = Num; end Is_Integer; ---------- -- Mark -- ---------- function Mark return Save_Mark is begin return Save_Mark (Ureals.Last); end Mark; -------------- -- Norm_Den -- -------------- function Norm_Den (Real : Ureal) return Uint is begin if not Same (Real, Normalized_Real) then Normalized_Real := Real; Normalized_Entry := Normalize (Ureals.Table (Real)); end if; return Normalized_Entry.Den; end Norm_Den; -------------- -- Norm_Num -- -------------- function Norm_Num (Real : Ureal) return Uint is begin if not Same (Real, Normalized_Real) then Normalized_Real := Real; Normalized_Entry := Normalize (Ureals.Table (Real)); end if; return Normalized_Entry.Num; end Norm_Num; --------------- -- Normalize -- --------------- function Normalize (Val : Ureal_Entry) return Ureal_Entry is J : Uint; K : Uint; Tmp : Uint; Num : Uint; Den : Uint; M : constant Uintp.Save_Mark := Uintp.Mark; begin -- Start by setting J to the greatest of the absolute values of the -- numerator and the denominator (taking into account the base value), -- and K to the lesser of the two absolute values. The gcd of Num and -- Den is the gcd of J and K. if Val.Rbase = 0 then J := Val.Num; K := Val.Den; elsif Val.Den < 0 then J := Val.Num * Val.Rbase ** (-Val.Den); K := Uint_1; else J := Val.Num; K := Val.Rbase ** Val.Den; end if; Num := J; Den := K; if K > J then Tmp := J; J := K; K := Tmp; end if; J := UI_GCD (J, K); Num := Num / J; Den := Den / J; Uintp.Release_And_Save (M, Num, Den); -- Divide numerator and denominator by gcd and return result return (Num => Num, Den => Den, Rbase => 0, Negative => Val.Negative); end Normalize; --------------- -- Numerator -- --------------- function Numerator (Real : Ureal) return Uint is begin return Ureals.Table (Real).Num; end Numerator; -------- -- pr -- -------- procedure pr (Real : Ureal) is begin UR_Write (Real); Write_Eol; end pr; ----------- -- Rbase -- ----------- function Rbase (Real : Ureal) return Nat is begin return Ureals.Table (Real).Rbase; end Rbase; ------------- -- Release -- ------------- procedure Release (M : Save_Mark) is begin Ureals.Set_Last (Ureal (M)); end Release; ---------- -- Same -- ---------- function Same (U1, U2 : Ureal) return Boolean is begin return Int (U1) = Int (U2); end Same; ----------------- -- Store_Ureal -- ----------------- function Store_Ureal (Val : Ureal_Entry) return Ureal is begin Ureals.Append (Val); -- Normalize representation of signed values if Val.Num < 0 then Ureals.Table (Ureals.Last).Negative := True; Ureals.Table (Ureals.Last).Num := -Val.Num; end if; return Ureals.Last; end Store_Ureal; ---------------------------- -- Store_Ureal_Normalized -- ---------------------------- function Store_Ureal_Normalized (Val : Ureal_Entry) return Ureal is begin return Store_Ureal (Normalize (Val)); end Store_Ureal_Normalized; --------------- -- Tree_Read -- --------------- procedure Tree_Read is begin pragma Assert (Num_Ureal_Constants = 10); Ureals.Tree_Read; Tree_Read_Int (Int (UR_0)); Tree_Read_Int (Int (UR_M_0)); Tree_Read_Int (Int (UR_Tenth)); Tree_Read_Int (Int (UR_Half)); Tree_Read_Int (Int (UR_1)); Tree_Read_Int (Int (UR_2)); Tree_Read_Int (Int (UR_10)); Tree_Read_Int (Int (UR_100)); Tree_Read_Int (Int (UR_2_128)); Tree_Read_Int (Int (UR_2_M_128)); -- Clear the normalization cache Normalized_Real := No_Ureal; end Tree_Read; ---------------- -- Tree_Write -- ---------------- procedure Tree_Write is begin pragma Assert (Num_Ureal_Constants = 10); Ureals.Tree_Write; Tree_Write_Int (Int (UR_0)); Tree_Write_Int (Int (UR_M_0)); Tree_Write_Int (Int (UR_Tenth)); Tree_Write_Int (Int (UR_Half)); Tree_Write_Int (Int (UR_1)); Tree_Write_Int (Int (UR_2)); Tree_Write_Int (Int (UR_10)); Tree_Write_Int (Int (UR_100)); Tree_Write_Int (Int (UR_2_128)); Tree_Write_Int (Int (UR_2_M_128)); end Tree_Write; ------------ -- UR_Abs -- ------------ function UR_Abs (Real : Ureal) return Ureal is Val : constant Ureal_Entry := Ureals.Table (Real); begin return Store_Ureal ((Num => Val.Num, Den => Val.Den, Rbase => Val.Rbase, Negative => False)); end UR_Abs; ------------ -- UR_Add -- ------------ function UR_Add (Left : Uint; Right : Ureal) return Ureal is begin return UR_From_Uint (Left) + Right; end UR_Add; function UR_Add (Left : Ureal; Right : Uint) return Ureal is begin return Left + UR_From_Uint (Right); end UR_Add; function UR_Add (Left : Ureal; Right : Ureal) return Ureal is Lval : Ureal_Entry := Ureals.Table (Left); Rval : Ureal_Entry := Ureals.Table (Right); Num : Uint; begin -- Note, in the temporary Ureal_Entry values used in this procedure, -- we store the sign as the sign of the numerator (i.e. xxx.Num may -- be negative, even though in stored entries this can never be so) if Lval.Rbase /= 0 and then Lval.Rbase = Rval.Rbase then declare Opd_Min, Opd_Max : Ureal_Entry; Exp_Min, Exp_Max : Uint; begin if Lval.Negative then Lval.Num := (-Lval.Num); end if; if Rval.Negative then Rval.Num := (-Rval.Num); end if; if Lval.Den < Rval.Den then Exp_Min := Lval.Den; Exp_Max := Rval.Den; Opd_Min := Lval; Opd_Max := Rval; else Exp_Min := Rval.Den; Exp_Max := Lval.Den; Opd_Min := Rval; Opd_Max := Lval; end if; Num := Opd_Min.Num * Lval.Rbase ** (Exp_Max - Exp_Min) + Opd_Max.Num; if Num = 0 then return Store_Ureal ((Num => Uint_0, Den => Uint_1, Rbase => 0, Negative => Lval.Negative)); else return Store_Ureal ((Num => abs Num, Den => Exp_Max, Rbase => Lval.Rbase, Negative => (Num < 0))); end if; end; else declare Ln : Ureal_Entry := Normalize (Lval); Rn : Ureal_Entry := Normalize (Rval); begin if Ln.Negative then Ln.Num := (-Ln.Num); end if; if Rn.Negative then Rn.Num := (-Rn.Num); end if; Num := (Ln.Num * Rn.Den) + (Rn.Num * Ln.Den); if Num = 0 then return Store_Ureal ((Num => Uint_0, Den => Uint_1, Rbase => 0, Negative => Lval.Negative)); else return Store_Ureal_Normalized ((Num => abs Num, Den => Ln.Den * Rn.Den, Rbase => 0, Negative => (Num < 0))); end if; end; end if; end UR_Add; ---------------- -- UR_Ceiling -- ---------------- function UR_Ceiling (Real : Ureal) return Uint is Val : constant Ureal_Entry := Normalize (Ureals.Table (Real)); begin if Val.Negative then return UI_Negate (Val.Num / Val.Den); else return (Val.Num + Val.Den - 1) / Val.Den; end if; end UR_Ceiling; ------------ -- UR_Div -- ------------ function UR_Div (Left : Uint; Right : Ureal) return Ureal is begin return UR_From_Uint (Left) / Right; end UR_Div; function UR_Div (Left : Ureal; Right : Uint) return Ureal is begin return Left / UR_From_Uint (Right); end UR_Div; function UR_Div (Left, Right : Ureal) return Ureal is Lval : constant Ureal_Entry := Ureals.Table (Left); Rval : constant Ureal_Entry := Ureals.Table (Right); Rneg : constant Boolean := Rval.Negative xor Lval.Negative; begin pragma Assert (Rval.Num /= Uint_0); if Lval.Rbase = 0 then if Rval.Rbase = 0 then return Store_Ureal_Normalized ((Num => Lval.Num * Rval.Den, Den => Lval.Den * Rval.Num, Rbase => 0, Negative => Rneg)); elsif Is_Integer (Lval.Num, Rval.Num * Lval.Den) then return Store_Ureal ((Num => Lval.Num / (Rval.Num * Lval.Den), Den => (-Rval.Den), Rbase => Rval.Rbase, Negative => Rneg)); elsif Rval.Den < 0 then return Store_Ureal_Normalized ((Num => Lval.Num, Den => Rval.Rbase ** (-Rval.Den) * Rval.Num * Lval.Den, Rbase => 0, Negative => Rneg)); else return Store_Ureal_Normalized ((Num => Lval.Num * Rval.Rbase ** Rval.Den, Den => Rval.Num * Lval.Den, Rbase => 0, Negative => Rneg)); end if; elsif Is_Integer (Lval.Num, Rval.Num) then if Rval.Rbase = Lval.Rbase then return Store_Ureal ((Num => Lval.Num / Rval.Num, Den => Lval.Den - Rval.Den, Rbase => Lval.Rbase, Negative => Rneg)); elsif Rval.Rbase = 0 then return Store_Ureal ((Num => (Lval.Num / Rval.Num) * Rval.Den, Den => Lval.Den, Rbase => Lval.Rbase, Negative => Rneg)); elsif Rval.Den < 0 then declare Num, Den : Uint; begin if Lval.Den < 0 then Num := (Lval.Num / Rval.Num) * (Lval.Rbase ** (-Lval.Den)); Den := Rval.Rbase ** (-Rval.Den); else Num := Lval.Num / Rval.Num; Den := (Lval.Rbase ** Lval.Den) * (Rval.Rbase ** (-Rval.Den)); end if; return Store_Ureal ((Num => Num, Den => Den, Rbase => 0, Negative => Rneg)); end; else return Store_Ureal ((Num => (Lval.Num / Rval.Num) * (Rval.Rbase ** Rval.Den), Den => Lval.Den, Rbase => Lval.Rbase, Negative => Rneg)); end if; else declare Num, Den : Uint; begin if Lval.Den < 0 then Num := Lval.Num * (Lval.Rbase ** (-Lval.Den)); Den := Rval.Num; else Num := Lval.Num; Den := Rval.Num * (Lval.Rbase ** Lval.Den); end if; if Rval.Rbase /= 0 then if Rval.Den < 0 then Den := Den * (Rval.Rbase ** (-Rval.Den)); else Num := Num * (Rval.Rbase ** Rval.Den); end if; else Num := Num * Rval.Den; end if; return Store_Ureal_Normalized ((Num => Num, Den => Den, Rbase => 0, Negative => Rneg)); end; end if; end UR_Div; ----------- -- UR_Eq -- ----------- function UR_Eq (Left, Right : Ureal) return Boolean is begin return not UR_Ne (Left, Right); end UR_Eq; --------------------- -- UR_Exponentiate -- --------------------- function UR_Exponentiate (Real : Ureal; N : Uint) return Ureal is X : constant Uint := abs N; Bas : Ureal; Val : Ureal_Entry; Neg : Boolean; IBas : Uint; begin -- If base is negative, then the resulting sign depends on whether -- the exponent is even or odd (even => positive, odd = negative) if UR_Is_Negative (Real) then Neg := (N mod 2) /= 0; Bas := UR_Negate (Real); else Neg := False; Bas := Real; end if; Val := Ureals.Table (Bas); -- If the base is a small integer, then we can return the result in -- exponential form, which can save a lot of time for junk exponents. IBas := UR_Trunc (Bas); if IBas <= 16 and then UR_From_Uint (IBas) = Bas then return Store_Ureal ((Num => Uint_1, Den => -N, Rbase => UI_To_Int (UR_Trunc (Bas)), Negative => Neg)); -- If the exponent is negative then we raise the numerator and the -- denominator (after normalization) to the absolute value of the -- exponent and we return the reciprocal. An assert error will happen -- if the numerator is zero. elsif N < 0 then pragma Assert (Val.Num /= 0); Val := Normalize (Val); return Store_Ureal ((Num => Val.Den ** X, Den => Val.Num ** X, Rbase => 0, Negative => Neg)); -- If positive, we distinguish the case when the base is not zero, in -- which case the new denominator is just the product of the old one -- with the exponent, else if Val.Rbase /= 0 then return Store_Ureal ((Num => Val.Num ** X, Den => Val.Den * X, Rbase => Val.Rbase, Negative => Neg)); -- And when the base is zero, in which case we exponentiate -- the old denominator. else return Store_Ureal ((Num => Val.Num ** X, Den => Val.Den ** X, Rbase => 0, Negative => Neg)); end if; end if; end UR_Exponentiate; -------------- -- UR_Floor -- -------------- function UR_Floor (Real : Ureal) return Uint is Val : constant Ureal_Entry := Normalize (Ureals.Table (Real)); begin if Val.Negative then return UI_Negate ((Val.Num + Val.Den - 1) / Val.Den); else return Val.Num / Val.Den; end if; end UR_Floor; ------------------------ -- UR_From_Components -- ------------------------ function UR_From_Components (Num : Uint; Den : Uint; Rbase : Nat := 0; Negative : Boolean := False) return Ureal is begin return Store_Ureal ((Num => Num, Den => Den, Rbase => Rbase, Negative => Negative)); end UR_From_Components; ------------------ -- UR_From_Uint -- ------------------ function UR_From_Uint (UI : Uint) return Ureal is begin return UR_From_Components (abs UI, Uint_1, Negative => (UI < 0)); end UR_From_Uint; ----------- -- UR_Ge -- ----------- function UR_Ge (Left, Right : Ureal) return Boolean is begin return not (Left < Right); end UR_Ge; ----------- -- UR_Gt -- ----------- function UR_Gt (Left, Right : Ureal) return Boolean is begin return (Right < Left); end UR_Gt; -------------------- -- UR_Is_Negative -- -------------------- function UR_Is_Negative (Real : Ureal) return Boolean is begin return Ureals.Table (Real).Negative; end UR_Is_Negative; -------------------- -- UR_Is_Positive -- -------------------- function UR_Is_Positive (Real : Ureal) return Boolean is begin return not Ureals.Table (Real).Negative and then Ureals.Table (Real).Num /= 0; end UR_Is_Positive; ---------------- -- UR_Is_Zero -- ---------------- function UR_Is_Zero (Real : Ureal) return Boolean is begin return Ureals.Table (Real).Num = 0; end UR_Is_Zero; ----------- -- UR_Le -- ----------- function UR_Le (Left, Right : Ureal) return Boolean is begin return not (Right < Left); end UR_Le; ----------- -- UR_Lt -- ----------- function UR_Lt (Left, Right : Ureal) return Boolean is begin -- An operand is not less than itself if Same (Left, Right) then return False; -- Deal with zero cases elsif UR_Is_Zero (Left) then return UR_Is_Positive (Right); elsif UR_Is_Zero (Right) then return Ureals.Table (Left).Negative; -- Different signs are decisive (note we dealt with zero cases) elsif Ureals.Table (Left).Negative and then not Ureals.Table (Right).Negative then return True; elsif not Ureals.Table (Left).Negative and then Ureals.Table (Right).Negative then return False; -- Signs are same, do rapid check based on worst case estimates of -- decimal exponent, which will often be decisive. Precise test -- depends on whether operands are positive or negative. elsif Decimal_Exponent_Hi (Left) < Decimal_Exponent_Lo (Right) then return UR_Is_Positive (Left); elsif Decimal_Exponent_Lo (Left) > Decimal_Exponent_Hi (Right) then return UR_Is_Negative (Left); -- If we fall through, full gruesome test is required. This happens -- if the numbers are close together, or in some weird (/=10) base. else declare Imrk : constant Uintp.Save_Mark := Mark; Rmrk : constant Urealp.Save_Mark := Mark; Lval : Ureal_Entry; Rval : Ureal_Entry; Result : Boolean; begin Lval := Ureals.Table (Left); Rval := Ureals.Table (Right); -- An optimization. If both numbers are based, then subtract -- common value of base to avoid unnecessarily giant numbers if Lval.Rbase = Rval.Rbase and then Lval.Rbase /= 0 then if Lval.Den < Rval.Den then Rval.Den := Rval.Den - Lval.Den; Lval.Den := Uint_0; else Lval.Den := Lval.Den - Rval.Den; Rval.Den := Uint_0; end if; end if; Lval := Normalize (Lval); Rval := Normalize (Rval); if Lval.Negative then Result := (Lval.Num * Rval.Den) > (Rval.Num * Lval.Den); else Result := (Lval.Num * Rval.Den) < (Rval.Num * Lval.Den); end if; Release (Imrk); Release (Rmrk); return Result; end; end if; end UR_Lt; ------------ -- UR_Max -- ------------ function UR_Max (Left, Right : Ureal) return Ureal is begin if Left >= Right then return Left; else return Right; end if; end UR_Max; ------------ -- UR_Min -- ------------ function UR_Min (Left, Right : Ureal) return Ureal is begin if Left <= Right then return Left; else return Right; end if; end UR_Min; ------------ -- UR_Mul -- ------------ function UR_Mul (Left : Uint; Right : Ureal) return Ureal is begin return UR_From_Uint (Left) * Right; end UR_Mul; function UR_Mul (Left : Ureal; Right : Uint) return Ureal is begin return Left * UR_From_Uint (Right); end UR_Mul; function UR_Mul (Left, Right : Ureal) return Ureal is Lval : constant Ureal_Entry := Ureals.Table (Left); Rval : constant Ureal_Entry := Ureals.Table (Right); Num : Uint := Lval.Num * Rval.Num; Den : Uint; Rneg : constant Boolean := Lval.Negative xor Rval.Negative; begin if Lval.Rbase = 0 then if Rval.Rbase = 0 then return Store_Ureal_Normalized ((Num => Num, Den => Lval.Den * Rval.Den, Rbase => 0, Negative => Rneg)); elsif Is_Integer (Num, Lval.Den) then return Store_Ureal ((Num => Num / Lval.Den, Den => Rval.Den, Rbase => Rval.Rbase, Negative => Rneg)); elsif Rval.Den < 0 then return Store_Ureal_Normalized ((Num => Num * (Rval.Rbase ** (-Rval.Den)), Den => Lval.Den, Rbase => 0, Negative => Rneg)); else return Store_Ureal_Normalized ((Num => Num, Den => Lval.Den * (Rval.Rbase ** Rval.Den), Rbase => 0, Negative => Rneg)); end if; elsif Lval.Rbase = Rval.Rbase then return Store_Ureal ((Num => Num, Den => Lval.Den + Rval.Den, Rbase => Lval.Rbase, Negative => Rneg)); elsif Rval.Rbase = 0 then if Is_Integer (Num, Rval.Den) then return Store_Ureal ((Num => Num / Rval.Den, Den => Lval.Den, Rbase => Lval.Rbase, Negative => Rneg)); elsif Lval.Den < 0 then return Store_Ureal_Normalized ((Num => Num * (Lval.Rbase ** (-Lval.Den)), Den => Rval.Den, Rbase => 0, Negative => Rneg)); else return Store_Ureal_Normalized ((Num => Num, Den => Rval.Den * (Lval.Rbase ** Lval.Den), Rbase => 0, Negative => Rneg)); end if; else Den := Uint_1; if Lval.Den < 0 then Num := Num * (Lval.Rbase ** (-Lval.Den)); else Den := Den * (Lval.Rbase ** Lval.Den); end if; if Rval.Den < 0 then Num := Num * (Rval.Rbase ** (-Rval.Den)); else Den := Den * (Rval.Rbase ** Rval.Den); end if; return Store_Ureal_Normalized ((Num => Num, Den => Den, Rbase => 0, Negative => Rneg)); end if; end UR_Mul; ----------- -- UR_Ne -- ----------- function UR_Ne (Left, Right : Ureal) return Boolean is begin -- Quick processing for case of identical Ureal values (note that -- this also deals with comparing two No_Ureal values). if Same (Left, Right) then return False; -- Deal with case of one or other operand is No_Ureal, but not both elsif Same (Left, No_Ureal) or else Same (Right, No_Ureal) then return True; -- Do quick check based on number of decimal digits elsif Decimal_Exponent_Hi (Left) < Decimal_Exponent_Lo (Right) or else Decimal_Exponent_Lo (Left) > Decimal_Exponent_Hi (Right) then return True; -- Otherwise full comparison is required else declare Imrk : constant Uintp.Save_Mark := Mark; Rmrk : constant Urealp.Save_Mark := Mark; Lval : constant Ureal_Entry := Normalize (Ureals.Table (Left)); Rval : constant Ureal_Entry := Normalize (Ureals.Table (Right)); Result : Boolean; begin if UR_Is_Zero (Left) then return not UR_Is_Zero (Right); elsif UR_Is_Zero (Right) then return not UR_Is_Zero (Left); -- Both operands are non-zero else Result := Rval.Negative /= Lval.Negative or else Rval.Num /= Lval.Num or else Rval.Den /= Lval.Den; Release (Imrk); Release (Rmrk); return Result; end if; end; end if; end UR_Ne; --------------- -- UR_Negate -- --------------- function UR_Negate (Real : Ureal) return Ureal is begin return Store_Ureal ((Num => Ureals.Table (Real).Num, Den => Ureals.Table (Real).Den, Rbase => Ureals.Table (Real).Rbase, Negative => not Ureals.Table (Real).Negative)); end UR_Negate; ------------ -- UR_Sub -- ------------ function UR_Sub (Left : Uint; Right : Ureal) return Ureal is begin return UR_From_Uint (Left) + UR_Negate (Right); end UR_Sub; function UR_Sub (Left : Ureal; Right : Uint) return Ureal is begin return Left + UR_From_Uint (-Right); end UR_Sub; function UR_Sub (Left, Right : Ureal) return Ureal is begin return Left + UR_Negate (Right); end UR_Sub; ---------------- -- UR_To_Uint -- ---------------- function UR_To_Uint (Real : Ureal) return Uint is Val : constant Ureal_Entry := Normalize (Ureals.Table (Real)); Res : Uint; begin Res := (Val.Num + (Val.Den / 2)) / Val.Den; if Val.Negative then return UI_Negate (Res); else return Res; end if; end UR_To_Uint; -------------- -- UR_Trunc -- -------------- function UR_Trunc (Real : Ureal) return Uint is Val : constant Ureal_Entry := Normalize (Ureals.Table (Real)); begin if Val.Negative then return -(Val.Num / Val.Den); else return Val.Num / Val.Den; end if; end UR_Trunc; -------------- -- UR_Write -- -------------- procedure UR_Write (Real : Ureal; Brackets : Boolean := False) is Val : constant Ureal_Entry := Ureals.Table (Real); T : Uint; begin -- If value is negative, we precede the constant by a minus sign if Val.Negative then Write_Char ('-'); end if; -- Zero is zero if Val.Num = 0 then Write_Str ("0.0"); -- For constants with a denominator of zero, the value is simply the -- numerator value, since we are dividing by base**0, which is 1. elsif Val.Den = 0 then UI_Write (Val.Num, Decimal); Write_Str (".0"); -- Small powers of 2 get written in decimal fixed-point format elsif Val.Rbase = 2 and then Val.Den <= 3 and then Val.Den >= -16 then if Val.Den = 1 then T := Val.Num * (10/2); UI_Write (T / 10, Decimal); Write_Char ('.'); UI_Write (T mod 10, Decimal); elsif Val.Den = 2 then T := Val.Num * (100/4); UI_Write (T / 100, Decimal); Write_Char ('.'); UI_Write (T mod 100 / 10, Decimal); if T mod 10 /= 0 then UI_Write (T mod 10, Decimal); end if; elsif Val.Den = 3 then T := Val.Num * (1000 / 8); UI_Write (T / 1000, Decimal); Write_Char ('.'); UI_Write (T mod 1000 / 100, Decimal); if T mod 100 /= 0 then UI_Write (T mod 100 / 10, Decimal); if T mod 10 /= 0 then UI_Write (T mod 10, Decimal); end if; end if; else UI_Write (Val.Num * (Uint_2 ** (-Val.Den)), Decimal); Write_Str (".0"); end if; -- Constants in base 10 or 16 can be written in normal Ada literal -- style, as long as they fit in the UI_Image_Buffer. Using hexadecimal -- notation, 4 bytes are required for the 16# # part, and every fifth -- character is an underscore. So, a buffer of size N has room for -- ((N - 4) - (N - 4) / 5) * 4 bits, -- or at least -- N * 16 / 5 - 12 bits. elsif (Val.Rbase = 10 or else Val.Rbase = 16) and then Num_Bits (Val.Num) < UI_Image_Buffer'Length * 16 / 5 - 12 then pragma Assert (Val.Den /= 0); -- Use fixed-point format for small scaling values if (Val.Rbase = 10 and then Val.Den < 0 and then Val.Den > -3) or else (Val.Rbase = 16 and then Val.Den = -1) then UI_Write (Val.Num * Val.Rbase**(-Val.Den), Decimal); Write_Str (".0"); -- Write hexadecimal constants in exponential notation with a zero -- unit digit. This matches the Ada canonical form for floating point -- numbers, and also ensures that the underscores end up in the -- correct place. elsif Val.Rbase = 16 then UI_Image (Val.Num, Hex); pragma Assert (Val.Rbase = 16); Write_Str ("16#0."); Write_Str (UI_Image_Buffer (4 .. UI_Image_Length)); -- For exponent, exclude 16# # and underscores from length UI_Image_Length := UI_Image_Length - 4; UI_Image_Length := UI_Image_Length - UI_Image_Length / 5; Write_Char ('E'); UI_Write (Int (UI_Image_Length) - Val.Den, Decimal); elsif Val.Den = 1 then UI_Write (Val.Num / 10, Decimal); Write_Char ('.'); UI_Write (Val.Num mod 10, Decimal); elsif Val.Den = 2 then UI_Write (Val.Num / 100, Decimal); Write_Char ('.'); UI_Write (Val.Num / 10 mod 10, Decimal); UI_Write (Val.Num mod 10, Decimal); -- Else use decimal exponential format else -- Write decimal constants with a non-zero unit digit. This -- matches usual scientific notation. UI_Image (Val.Num, Decimal); Write_Char (UI_Image_Buffer (1)); Write_Char ('.'); if UI_Image_Length = 1 then Write_Char ('0'); else Write_Str (UI_Image_Buffer (2 .. UI_Image_Length)); end if; Write_Char ('E'); UI_Write (Int (UI_Image_Length - 1) - Val.Den, Decimal); end if; -- Constants in a base other than 10 can still be easily written in -- normal Ada literal style if the numerator is one. elsif Val.Rbase /= 0 and then Val.Num = 1 then Write_Int (Val.Rbase); Write_Str ("#1.0#E"); UI_Write (-Val.Den); -- Other constants with a base other than 10 are written using one -- of the following forms, depending on the sign of the number -- and the sign of the exponent (= minus denominator value) -- numerator.0*base**exponent -- numerator.0*base**-exponent -- And of course an exponent of 0 can be omitted elsif Val.Rbase /= 0 then if Brackets then Write_Char ('['); end if; UI_Write (Val.Num, Decimal); Write_Str (".0"); if Val.Den /= 0 then Write_Char ('*'); Write_Int (Val.Rbase); Write_Str ("**"); if Val.Den <= 0 then UI_Write (-Val.Den, Decimal); else Write_Str ("(-"); UI_Write (Val.Den, Decimal); Write_Char (')'); end if; end if; if Brackets then Write_Char (']'); end if; -- Rationals where numerator is divisible by denominator can be output -- as literals after we do the division. This includes the common case -- where the denominator is 1. elsif Val.Num mod Val.Den = 0 then UI_Write (Val.Num / Val.Den, Decimal); Write_Str (".0"); -- Other non-based (rational) constants are written in num/den style else if Brackets then Write_Char ('['); end if; UI_Write (Val.Num, Decimal); Write_Str (".0/"); UI_Write (Val.Den, Decimal); Write_Str (".0"); if Brackets then Write_Char (']'); end if; end if; end UR_Write; ------------- -- Ureal_0 -- ------------- function Ureal_0 return Ureal is begin return UR_0; end Ureal_0; ------------- -- Ureal_1 -- ------------- function Ureal_1 return Ureal is begin return UR_1; end Ureal_1; ------------- -- Ureal_2 -- ------------- function Ureal_2 return Ureal is begin return UR_2; end Ureal_2; -------------- -- Ureal_10 -- -------------- function Ureal_10 return Ureal is begin return UR_10; end Ureal_10; --------------- -- Ureal_100 -- --------------- function Ureal_100 return Ureal is begin return UR_100; end Ureal_100; ----------------- -- Ureal_10_36 -- ----------------- function Ureal_10_36 return Ureal is begin return UR_10_36; end Ureal_10_36; ---------------- -- Ureal_2_80 -- ---------------- function Ureal_2_80 return Ureal is begin return UR_2_80; end Ureal_2_80; ----------------- -- Ureal_2_128 -- ----------------- function Ureal_2_128 return Ureal is begin return UR_2_128; end Ureal_2_128; ------------------- -- Ureal_2_M_80 -- ------------------- function Ureal_2_M_80 return Ureal is begin return UR_2_M_80; end Ureal_2_M_80; ------------------- -- Ureal_2_M_128 -- ------------------- function Ureal_2_M_128 return Ureal is begin return UR_2_M_128; end Ureal_2_M_128; ---------------- -- Ureal_Half -- ---------------- function Ureal_Half return Ureal is begin return UR_Half; end Ureal_Half; --------------- -- Ureal_M_0 -- --------------- function Ureal_M_0 return Ureal is begin return UR_M_0; end Ureal_M_0; ------------------- -- Ureal_M_10_36 -- ------------------- function Ureal_M_10_36 return Ureal is begin return UR_M_10_36; end Ureal_M_10_36; ----------------- -- Ureal_Tenth -- ----------------- function Ureal_Tenth return Ureal is begin return UR_Tenth; end Ureal_Tenth; end Urealp;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>dct</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>input_r</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>input</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</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>output_r</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>output</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>15</id> <name>buf_2d_in_0</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</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_Analysis/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>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[0]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>30</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>16</id> <name>buf_2d_in_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[1]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>31</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>17</id> <name>buf_2d_in_2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[2]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>32</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>18</id> <name>buf_2d_in_3</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[3]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>33</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>19</id> <name>buf_2d_in_4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[4]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>34</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>20</id> <name>buf_2d_in_5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[5]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>35</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>21</id> <name>buf_2d_in_6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[6]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>36</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>22</id> <name>buf_2d_in_7</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in[7]</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>37</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>23</id> <name>buf_2d_out</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>125</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>125</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_out</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>38</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>24</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>128</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>10</count> <item_version>0</item_version> <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> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>25</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>20</count> <item_version>0</item_version> <item>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>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>89</item> <item>90</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>26</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>133</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</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>62</item> <item>63</item> <item>64</item> <item>88</item> <item>91</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>27</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>134</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>4</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_16"> <Value> <Obj> <type>2</type> <id>29</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_17"> <Value> <Obj> <type>2</type> <id>39</id> <name>dct_read_data</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_read_data&gt;</content> </item> <item class_id_reference="16" object_id="_18"> <Value> <Obj> <type>2</type> <id>50</id> <name>dct_dct_2d</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_dct_2d&gt;</content> </item> <item class_id_reference="16" object_id="_19"> <Value> <Obj> <type>2</type> <id>61</id> <name>dct_write_data</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_write_data&gt;</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="_20"> <Obj> <type>3</type> <id>28</id> <name>dct</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>13</count> <item_version>0</item_version> <item>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> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>44</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_21"> <id>30</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_22"> <id>31</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_23"> <id>32</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_24"> <id>33</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_25"> <id>34</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_26"> <id>35</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_27"> <id>36</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_28"> <id>37</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_29"> <id>38</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_30"> <id>40</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_31"> <id>41</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_32"> <id>42</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_33"> <id>43</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_34"> <id>44</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_35"> <id>45</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_36"> <id>46</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_37"> <id>47</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_38"> <id>48</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_39"> <id>49</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_40"> <id>51</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_41"> <id>52</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_42"> <id>53</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_43"> <id>54</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_44"> <id>55</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_45"> <id>56</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_46"> <id>57</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_47"> <id>58</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_48"> <id>59</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_49"> <id>60</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_50"> <id>62</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_51"> <id>63</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_52"> <id>64</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_53"> <id>65</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_54"> <id>66</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_55"> <id>67</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_56"> <id>68</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_57"> <id>69</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_58"> <id>70</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_59"> <id>71</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_60"> <id>72</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_61"> <id>88</id> <edge_type>4</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_62"> <id>89</id> <edge_type>4</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_63"> <id>90</id> <edge_type>4</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_64"> <id>91</id> <edge_type>4</edge_type> <source_obj>25</source_obj> <sink_obj>26</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="_65"> <mId>1</mId> <mTag>dct</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>28</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>507</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_66"> <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>3</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_67"> <type>0</type> <name>dct_read_data_U0</name> <ssdmobj_id>24</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_68"> <port class_id="29" tracking_level="1" version="0" object_id="_69"> <name>input</name> <dir>2</dir> <type>0</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_70"> <type>0</type> <name>dct_read_data_U0</name> <ssdmobj_id>24</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_71"> <port class_id_reference="29" object_id="_72"> <name>buf_0</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_73"> <port class_id_reference="29" object_id="_74"> <name>buf_1</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_75"> <port class_id_reference="29" object_id="_76"> <name>buf_2</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_77"> <port class_id_reference="29" object_id="_78"> <name>buf_3</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_79"> <port class_id_reference="29" object_id="_80"> <name>buf_4</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_81"> <port class_id_reference="29" object_id="_82"> <name>buf_5</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_83"> <port class_id_reference="29" object_id="_84"> <name>buf_6</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> <item class_id_reference="28" object_id="_85"> <port class_id_reference="29" object_id="_86"> <name>buf_7</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_87"> <type>0</type> <name>dct_dct_2d_U0</name> <ssdmobj_id>25</ssdmobj_id> <pins> <count>17</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_88"> <port class_id_reference="29" object_id="_89"> <name>in_block_0</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_90"> <type>0</type> <name>dct_dct_2d_U0</name> <ssdmobj_id>25</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_91"> <port class_id_reference="29" object_id="_92"> <name>in_block_1</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_93"> <port class_id_reference="29" object_id="_94"> <name>in_block_2</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_95"> <port class_id_reference="29" object_id="_96"> <name>in_block_3</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_97"> <port class_id_reference="29" object_id="_98"> <name>in_block_4</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_99"> <port class_id_reference="29" object_id="_100"> <name>in_block_5</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_101"> <port class_id_reference="29" object_id="_102"> <name>in_block_6</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_103"> <port class_id_reference="29" object_id="_104"> <name>in_block_7</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_105"> <port class_id_reference="29" object_id="_106"> <name>out_block</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_107"> <port class_id_reference="29" object_id="_108"> <name>dct_coeff_table_0</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_109"> <port class_id_reference="29" object_id="_110"> <name>dct_coeff_table_1</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_111"> <port class_id_reference="29" object_id="_112"> <name>dct_coeff_table_2</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_113"> <port class_id_reference="29" object_id="_114"> <name>dct_coeff_table_3</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_115"> <port class_id_reference="29" object_id="_116"> <name>dct_coeff_table_4</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_117"> <port class_id_reference="29" object_id="_118"> <name>dct_coeff_table_5</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_119"> <port class_id_reference="29" object_id="_120"> <name>dct_coeff_table_6</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> <item class_id_reference="28" object_id="_121"> <port class_id_reference="29" object_id="_122"> <name>dct_coeff_table_7</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_123"> <type>0</type> <name>dct_write_data_U0</name> <ssdmobj_id>26</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_124"> <port class_id_reference="29" object_id="_125"> <name>buf</name> <dir>2</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_126"> <type>0</type> <name>dct_write_data_U0</name> <ssdmobj_id>26</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_127"> <port class_id_reference="29" object_id="_128"> <name>output</name> <dir>2</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_126"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_129"> <type>1</type> <name>buf_2d_in_0</name> <ssdmobj_id>15</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_130"> <port class_id_reference="29" object_id="_131"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_132"> <port class_id_reference="29" object_id="_133"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_134"> <type>1</type> <name>buf_2d_in_1</name> <ssdmobj_id>16</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_135"> <port class_id_reference="29" object_id="_136"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_137"> <port class_id_reference="29" object_id="_138"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_139"> <type>1</type> <name>buf_2d_in_2</name> <ssdmobj_id>17</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_140"> <port class_id_reference="29" object_id="_141"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_142"> <port class_id_reference="29" object_id="_143"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_144"> <type>1</type> <name>buf_2d_in_3</name> <ssdmobj_id>18</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_145"> <port class_id_reference="29" object_id="_146"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_147"> <port class_id_reference="29" object_id="_148"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_149"> <type>1</type> <name>buf_2d_in_4</name> <ssdmobj_id>19</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_150"> <port class_id_reference="29" object_id="_151"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_152"> <port class_id_reference="29" object_id="_153"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_154"> <type>1</type> <name>buf_2d_in_5</name> <ssdmobj_id>20</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_155"> <port class_id_reference="29" object_id="_156"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_157"> <port class_id_reference="29" object_id="_158"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_159"> <type>1</type> <name>buf_2d_in_6</name> <ssdmobj_id>21</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_160"> <port class_id_reference="29" object_id="_161"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_162"> <port class_id_reference="29" object_id="_163"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_164"> <type>1</type> <name>buf_2d_in_7</name> <ssdmobj_id>22</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_165"> <port class_id_reference="29" object_id="_166"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_70"></inst> </source> <sink class_id_reference="28" object_id="_167"> <port class_id_reference="29" object_id="_168"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </sink> </item> <item class_id_reference="32" object_id="_169"> <type>1</type> <name>buf_2d_out</name> <ssdmobj_id>23</ssdmobj_id> <ctype>1</ctype> <depth>0</depth> <bitwidth>0</bitwidth> <source class_id_reference="28" object_id="_170"> <port class_id_reference="29" object_id="_171"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_90"></inst> </source> <sink class_id_reference="28" object_id="_172"> <port class_id_reference="29" object_id="_173"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_126"></inst> </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="_174"> <states class_id="35" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="36" tracking_level="1" version="0" object_id="_175"> <id>1</id> <operations class_id="37" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="38" tracking_level="1" version="0" object_id="_176"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_177"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_178"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_179"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_180"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_181"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_182"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_183"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_184"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_185"> <id>24</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_186"> <id>2</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_187"> <id>24</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_188"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_189"> <id>25</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_190"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_191"> <id>25</id> <stage>1</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_192"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_193"> <id>26</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="36" object_id="_194"> <id>6</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="38" object_id="_195"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_196"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_197"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_198"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="38" object_id="_199"> <id>26</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="38" object_id="_200"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="39" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="40" tracking_level="1" version="0" object_id="_201"> <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="_202"> <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="_203"> <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="_204"> <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="_205"> <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> </transitions> </fsm> <res class_id="44" tracking_level="1" version="0" object_id="_206"> <dp_component_resource class_id="45" 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="46" 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="47" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>15</first> <second class_id="49" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>25</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>26</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>27</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="50" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>28</first> <second class_id="52" tracking_level="0" version="0"> <first>0</first> <second>5</second> </second> </item> </bblk_ent_exit> <regions class_id="53" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="54" tracking_level="1" version="0" object_id="_207"> <region_name>dct</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>28</item> </basic_blocks> <nodes> <count>17</count> <item_version>0</item_version> <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> </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="55" tracking_level="0" version="0"> <count>12</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>40</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>44</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>48</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>52</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>56</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>60</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>64</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>68</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>72</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>76</first> <second> <count>2</count> <item_version>0</item_version> <item>25</item> <item>25</item> </second> </item> <item> <first>105</first> <second> <count>2</count> <item_version>0</item_version> <item>26</item> <item>26</item> </second> </item> <item> <first>112</first> <second> <count>2</count> <item_version>0</item_version> <item>24</item> <item>24</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="58" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="59" tracking_level="0" version="0"> <first>buf_2d_in_0_alloca_fu_40</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>buf_2d_in_1_alloca_fu_44</first> <second> <count>1</count> <item_version>0</item_version> <item>16</item> </second> </item> <item> <first>buf_2d_in_2_alloca_fu_48</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>buf_2d_in_3_alloca_fu_52</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>buf_2d_in_4_alloca_fu_56</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>buf_2d_in_5_alloca_fu_60</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>buf_2d_in_6_alloca_fu_64</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>buf_2d_in_7_alloca_fu_68</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>buf_2d_out_alloca_fu_72</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>3</count> <item_version>0</item_version> <item> <first>grp_dct_dct_2d_fu_76</first> <second> <count>2</count> <item_version>0</item_version> <item>25</item> <item>25</item> </second> </item> <item> <first>grp_dct_read_data_fu_112</first> <second> <count>2</count> <item_version>0</item_version> <item>24</item> <item>24</item> </second> </item> <item> <first>grp_dct_write_data_fu_105</first> <second> <count>2</count> <item_version>0</item_version> <item>26</item> <item>26</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="60" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="61" tracking_level="0" version="0"> <first class_id="62" tracking_level="0" version="0"> <first>dct_coeff_table_0</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_1</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_2</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_3</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_4</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_5</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_6</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first> <first>dct_coeff_table_7</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </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="63" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="64" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="65" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> </port2core> <node2core> <count>9</count> <item_version>0</item_version> <item> <first>15</first> <second>RAM</second> </item> <item> <first>16</first> <second>RAM</second> </item> <item> <first>17</first> <second>RAM</second> </item> <item> <first>18</first> <second>RAM</second> </item> <item> <first>19</first> <second>RAM</second> </item> <item> <first>20</first> <second>RAM</second> </item> <item> <first>21</first> <second>RAM</second> </item> <item> <first>22</first> <second>RAM</second> </item> <item> <first>23</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>align</name> <ret_bitwidth>64</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>5</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>seq1</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>seq1</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>100</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>n</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>n</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</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>seq2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>seq2</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>100</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>m</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</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>H</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>H</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>10201</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>82</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_6"> <Value> <Obj> <type>0</type> <id>6</id> <name>max_score_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>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>102</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>7</id> <name>pos_1_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>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>103</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>8</id> <name>pos_0_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>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>104</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>9</id> <name>m_read</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</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>SmithWaterman.c</first> <second>align</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>106</item> <item>107</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="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>n_read</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>77</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>77</second> </item> </second> </item> </inlineStackInfo> <originalName>n</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>108</item> <item>109</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>pos_0_0_write_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>111</item> <item>112</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>pos_1_0_write_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>113</item> <item>114</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>13</id> <name>max_score_0_write_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>115</item> <item>116</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name>_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>117</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.60</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>16</id> <name>i_0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>119</item> <item>120</item> <item>121</item> <item>122</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>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>17</id> <name>zext_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>123</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>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>18</id> <name>icmp_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>124</item> <item>125</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.59</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>20</id> <name>_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>126</item> <item>127</item> <item>128</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>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>24</id> <name>add_ln91</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>129</item> <item>131</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.40</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>25</id> <name>zext_ln91</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>26</id> <name>zext_ln91_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>133</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>27</id> <name>mul_ln91</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>134</item> <item>136</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.55</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>28</id> <name>seq1_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>137</item> <item>139</item> <item>140</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>18</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>zext_ln98</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>141</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>19</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>mul_ln98</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>142</item> <item>143</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.55</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>31</id> <name>_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>144</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>33</id> <name>j_0</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>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>145</item> <item>146</item> <item>147</item> <item>148</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>27</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>zext_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</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>149</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>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>icmp_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</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>150</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>0.59</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>37</id> <name>_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</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>152</item> <item>153</item> <item>154</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="_31"> <Value> <Obj> <type>0</type> <id>39</id> <name>max_score_0_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>155</item> <item>311</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>40</id> <name>pos_1_0_load_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>156</item> <item>309</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>41</id> <name>pos_0_0_load_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>157</item> <item>307</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>43</id> <name>add_ln91_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>158</item> <item>159</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.40</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>44</id> <name>zext_ln91_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</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>160</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="_36"> <Value> <Obj> <type>0</type> <id>45</id> <name>zext_ln91_3</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>161</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>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>46</id> <name>add_ln91_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>162</item> <item>163</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.55</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>47</id> <name>zext_ln91_4</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</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>164</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>48</id> <name>H_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>49</id> <name>add_ln98</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>168</item> <item>169</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.55</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>50</id> <name>zext_ln98_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</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>170</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>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>51</id> <name>H_addr_4</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>173</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>52</id> <name>diag_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>91</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>91</second> </item> </second> </item> </inlineStackInfo> <originalName>diag_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>174</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.15</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>53</id> <name>seq1_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</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>175</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.61</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>54</id> <name>seq2_addr</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>176</item> <item>177</item> <item>178</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>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>55</id> <name>seq2_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</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>179</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.61</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>56</id> <name>icmp_ln92</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</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>180</item> <item>181</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.58</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>57</id> <name>select_ln92</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</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>182</item> <item>184</item> <item>186</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>52</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>58</id> <name>select_ln92_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>187</item> <item>189</item> <item>191</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>53</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>59</id> <name>trunc_ln92</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>192</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>54</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>60</id> <name>diag_score_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName>diag_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>193</item> <item>194</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.66</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>61</id> <name>add_ln92_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>92</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>92</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>195</item> <item>196</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.66</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>62</id> <name>H_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</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>197</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.15</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>63</id> <name>right_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>98</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>98</second> </item> </second> </item> </inlineStackInfo> <originalName>right_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>199</item> <item>200</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.66</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>64</id> <name>zext_ln99</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>201</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="_56"> <Value> <Obj> <type>0</type> <id>65</id> <name>add_ln99</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</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.55</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>66</id> <name>zext_ln99_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>99</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>204</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>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>67</id> <name>H_addr_5</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>205</item> <item>206</item> <item>207</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>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>68</id> <name>add_ln100</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>208</item> <item>209</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.55</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>69</id> <name>zext_ln100</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</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>210</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>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>70</id> <name>H_addr_6</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>211</item> <item>212</item> <item>213</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>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>71</id> <name>H_load_4</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>99</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>214</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.15</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>72</id> <name>down_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>99</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>99</second> </item> </second> </item> </inlineStackInfo> <originalName>down_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</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>0.66</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>73</id> <name>icmp_ln51</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>217</item> <item>218</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.85</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>74</id> <name>select_ln51</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>219</item> <item>220</item> <item>222</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.25</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>75</id> <name>zext_ln51</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>51</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>223</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>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>76</id> <name>icmp_ln54</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>54</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>224</item> <item>225</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.85</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>77</id> <name>max_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>54</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>54</second> </item> </second> </item> </inlineStackInfo> <originalName>max</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>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.22</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>78</id> <name>icmp_ln57</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>57</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>229</item> <item>230</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.85</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>79</id> <name>max_score</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>57</lineNumber> <contextFuncName>max</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</second> </item> <item> <first> <first>SmithWaterman.c</first> <second>max</second> </first> <second>57</second> </item> </second> </item> </inlineStackInfo> <originalName>max_score</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>231</item> <item>232</item> <item>233</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.22</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>80</id> <name>H_addr_6_write_ln100</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>100</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>100</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>234</item> <item>235</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.15</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>81</id> <name>icmp_ln102</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>236</item> <item>237</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.85</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>82</id> <name>select_ln102</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>238</item> <item>239</item> <item>240</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.22</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>83</id> <name>select_ln102_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>241</item> <item>242</item> <item>243</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.22</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>84</id> <name>select_ln102_2</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>102</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>102</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>244</item> <item>245</item> <item>246</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.22</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>85</id> <name>j</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName>j</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>247</item> <item>248</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.40</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>86</id> <name>pos_0_0_write_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>249</item> <item>250</item> <item>302</item> <item>308</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>87</id> <name>pos_1_0_write_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>303</item> <item>310</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>88</id> <name>max_score_0_write_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>253</item> <item>254</item> <item>304</item> <item>312</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.60</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>89</id> <name>_ln90</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>90</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>90</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>255</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>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>92</id> <name>i</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>256</item> <item>257</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.40</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>93</id> <name>_ln89</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>89</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>89</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>258</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>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>95</id> <name>pos_1_0_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>110</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>259</item> <item>306</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>96</id> <name>pos_0_0_load</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>110</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>260</item> <item>305</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>97</id> <name>mrv</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>110</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>262</item> <item>263</item> </oprand_edges> <opcode>insertvalue</opcode> <m_Display>0</m_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="_86"> <Value> <Obj> <type>0</type> <id>98</id> <name>mrv_1</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>110</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>264</item> <item>265</item> </oprand_edges> <opcode>insertvalue</opcode> <m_Display>0</m_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="_87"> <Value> <Obj> <type>0</type> <id>99</id> <name>_ln110</name> <fileName>SmithWaterman.c</fileName> <fileDirectory>/home/foteini/Workspace/SmithWaterman_HLS/SW</fileDirectory> <lineNumber>110</lineNumber> <contextFuncName>align</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/foteini/Workspace/SmithWaterman_HLS/SW</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>SmithWaterman.c</first> <second>align</second> </first> <second>110</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>266</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>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_88"> <Value> <Obj> <type>2</type> <id>101</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</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>110</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_90"> <Value> <Obj> <type>2</type> <id>118</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_91"> <Value> <Obj> <type>2</type> <id>130</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>127</content> </item> <item class_id_reference="16" object_id="_92"> <Value> <Obj> <type>2</type> <id>135</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <const_type>0</const_type> <content>101</content> </item> <item class_id_reference="16" object_id="_93"> <Value> <Obj> <type>2</type> <id>138</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_94"> <Value> <Obj> <type>2</type> <id>183</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_95"> <Value> <Obj> <type>2</type> <id>185</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>4294967293</content> </item> <item class_id_reference="16" object_id="_96"> <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>31</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_97"> <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>31</bitwidth> </Value> <const_type>0</const_type> <content>2147483645</content> </item> <item class_id_reference="16" object_id="_98"> <Value> <Obj> <type>2</type> <id>198</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>4294967294</content> </item> <item class_id_reference="16" object_id="_99"> <Value> <Obj> <type>2</type> <id>221</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>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>261</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>5</const_type> <content>&lt;undef&gt;</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="_101"> <Obj> <type>3</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> <node_objs> <count>9</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_102"> <Obj> <type>3</type> <id>21</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>16</item> <item>17</item> <item>18</item> <item>20</item> </node_objs> </item> <item class_id_reference="18" object_id="_103"> <Obj> <type>3</type> <id>32</id> <name>Align_Row_Loop_begin</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> </node_objs> </item> <item class_id_reference="18" object_id="_104"> <Obj> <type>3</type> <id>38</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>33</item> <item>34</item> <item>35</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_105"> <Obj> <type>3</type> <id>90</id> <name>._crit_edge</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>50</count> <item_version>0</item_version> <item>39</item> <item>40</item> <item>41</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> </node_objs> </item> <item class_id_reference="18" object_id="_106"> <Obj> <type>3</type> <id>94</id> <name>Align_Row_Loop_end</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>92</item> <item>93</item> </node_objs> </item> <item class_id_reference="18" object_id="_107"> <Obj> <type>3</type> <id>100</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>169</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_108"> <id>102</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>6</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_109"> <id>103</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>7</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_110"> <id>104</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_111"> <id>107</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_112"> <id>109</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_113"> <id>111</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_114"> <id>112</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="_115"> <id>113</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_116"> <id>114</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_117"> <id>115</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_118"> <id>116</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_119"> <id>117</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_120"> <id>119</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_121"> <id>120</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_122"> <id>121</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>16</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_123"> <id>122</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>16</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_124"> <id>123</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="_125"> <id>124</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_126"> <id>125</id> <edge_type>1</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="_127"> <id>126</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_128"> <id>127</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_129"> <id>128</id> <edge_type>2</edge_type> <source_obj>100</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_130"> <id>129</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_131"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_132"> <id>132</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="_133"> <id>133</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_134"> <id>134</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_135"> <id>136</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_136"> <id>137</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_137"> <id>139</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_138"> <id>140</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_139"> <id>141</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_140"> <id>142</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="_141"> <id>143</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_142"> <id>144</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_143"> <id>145</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_144"> <id>146</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_145"> <id>147</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_146"> <id>148</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>33</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_147"> <id>149</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_148"> <id>150</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_149"> <id>151</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_150"> <id>152</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_151"> <id>153</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_152"> <id>154</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_153"> <id>155</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_154"> <id>156</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_155"> <id>157</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_156"> <id>158</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_157"> <id>159</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_158"> <id>160</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="_159"> <id>161</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="_160"> <id>162</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_161"> <id>163</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="_162"> <id>164</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="_163"> <id>165</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>166</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>167</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="_166"> <id>168</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>169</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>170</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="_169"> <id>171</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>172</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>173</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="_172"> <id>174</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>175</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>176</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>177</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>178</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>179</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="_178"> <id>180</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>181</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>182</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="_181"> <id>184</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>187</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="_184"> <id>189</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>191</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>192</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>193</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="_188"> <id>194</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>195</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>196</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>197</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>199</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>200</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="_194"> <id>201</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>202</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>203</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="_197"> <id>204</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>205</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>206</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>207</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="_201"> <id>208</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>209</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>210</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="_204"> <id>211</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>212</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>213</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="_207"> <id>214</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>215</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>216</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="_210"> <id>217</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>218</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>219</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="_213"> <id>220</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>222</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>223</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="_216"> <id>224</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="_217"> <id>225</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>226</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>227</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>228</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>229</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="_222"> <id>230</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>231</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>232</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>233</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>234</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="_227"> <id>235</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>236</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>237</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>238</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="_231"> <id>239</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>240</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>241</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>242</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>243</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>244</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>245</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>246</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>247</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>248</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>249</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>250</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>251</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>252</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>253</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>254</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>255</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>256</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>257</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>258</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>259</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>260</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>262</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>263</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="_255"> <id>264</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>265</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>266</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="_258"> <id>294</id> <edge_type>2</edge_type> <source_obj>15</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>295</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>296</id> <edge_type>2</edge_type> <source_obj>21</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>297</id> <edge_type>2</edge_type> <source_obj>32</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>298</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>299</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>300</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>38</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>301</id> <edge_type>2</edge_type> <source_obj>94</source_obj> <sink_obj>21</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>302</id> <edge_type>4</edge_type> <source_obj>41</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>303</id> <edge_type>4</edge_type> <source_obj>40</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>304</id> <edge_type>4</edge_type> <source_obj>39</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>305</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>306</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>307</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>308</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>309</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>310</id> <edge_type>4</edge_type> <source_obj>12</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>311</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>312</id> <edge_type>4</edge_type> <source_obj>13</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_277"> <mId>1</mId> <mTag>align</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>6</mMinLatency> <mMaxLatency>30201</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_278"> <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>15</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="_279"> <mId>3</mId> <mTag>Align_Row_Loop</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>1</mMinTripCount> <mMaxTripCount>100</mMaxTripCount> <mMinLatency>5</mMinLatency> <mMaxLatency>30200</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_280"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>21</item> <item>32</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="_281"> <mId>5</mId> <mTag>Align_Col_Loop</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>38</item> <item>90</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>1</mMinTripCount> <mMaxTripCount>100</mMaxTripCount> <mMinLatency>3</mMinLatency> <mMaxLatency>300</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_282"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>94</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="_283"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>100</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>82</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>6</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>7</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>10</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>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>20</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>33</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>53</first> <second> <first>2</first> <second>1</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>1</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>2</first> <second>1</second> </second> </item> <item> <first>63</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>3</first> <second>1</second> </second> </item> <item> <first>72</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>86</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>1</first> <second>0</second> </second> </item> </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>15</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>90</first> <second> <first>2</first> <second>4</second> </second> </item> <item> <first>94</first> <second> <first>2</first> <second>2</second> </second> </item> <item> <first>100</first> <second> <first>1</first> <second>1</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </regions> <dp_fu_nodes class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- ----------------------------------------------------------------- -- -- AdaSDL -- -- Binding to Simple Direct Media Layer -- -- Copyright (C) 2001 A.M.F.Vargas -- -- Antonio M. F. Vargas -- -- Ponta Delgada - Azores - Portugal -- -- http://www.adapower.net/~avargas -- -- E-mail: avargas@adapower.net -- -- ----------------------------------------------------------------- -- -- -- -- This library 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 library is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public -- -- License along with this library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- 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. -- -- ----------------------------------------------------------------- -- -- **************************************************************** -- -- This is an Ada binding to SDL ( Simple DirectMedia Layer from -- -- Sam Lantinga - www.libsld.org ) -- -- **************************************************************** -- -- In order to help the Ada programmer, the comments in this file -- -- are, in great extent, a direct copy of the original text in the -- -- SDL header files. -- -- **************************************************************** -- with SDL.Types; use SDL.Types; package SDL.Active is -- The available application states type Active_State is mod 2**8; for Active_State'Size use 8; APPMOUSEFOCUS : constant Active_State := 16#01#; APPINPUTFOCUS : constant Active_State := 16#02#; APPACTIVE : constant Active_State := 16#04#; -- Function prototypes -- This function returns the current state of the application, -- which is a bitwise combination of APPMOUSEFOCUS, APPINPUTFOCUS, -- and APPACTIVE. If APPACTIVE is set, then the user is able to -- see your application, otherwise it has been iconified or -- disabled. function GetAppState return Active_State; pragma Import (C, GetAppState, "SDL_GetAppState"); end SDL.Active;
package Depends_Exercise is Stack_Size : constant := 100; type Pointer_Range is range 0 .. Stack_Size; subtype Stack_Range is Pointer_Range range 1 .. Stack_Size; Stack : array (Stack_Range) of Integer; Stack_Pointer : Pointer_Range := 0; -- Add suitable Global and Depends contracts procedure Initialize; -- Add suitable Global and Depends contracts procedure Push (X : in Integer); -- Add suitable Global and Depends contracts -- Why might it be useful to put a Depends contract on a function? function Is_Full return Boolean; function Wait_X_Return_True (X : in Integer) return Boolean; end Depends_Exercise;
with Ada.Real_Time; use Ada.Real_Time; with Ada.Numerics.Elementary_Functions; use Ada.Numerics.Elementary_Functions; with MPU6000.Driver; use MPU6000; package body IMU with SPARK_Mode, Refined_State => (State => (G_state)) is ---------------- -- TYPES ---------------- type Kalman_Type is record Angle : Angle_Type := 0.0 * Degree; Bias : Angular_Velocity_Type := 0.0 * Degree/Second; Rate : Angular_Velocity_Type := 0.0 * Degree/Second; P : Unit_Matrix2D := (1 => (0.0, 0.0), 2 => (0.0, 0.0) ); K : Unit_Vector2D := (0.0, 0.0); -- Kalman Gain S : Base_Unit_Type := 0.0; -- Estimate Error y : Angle_Type := 0.0 * Degree; -- Angle difference end record; type State_Type is record filterAngle : Rotation_Vector; lastFuse : Ada.Real_Time.Time := Ada.Real_Time.Time_First; kmState : Orientation_Type := (0.0 * Degree, 0.0 * Degree, 0.0 * Degree); kmLastCall : Ada.Real_Time.Time := Ada.Real_Time.Time_First; kmRoll : Kalman_Type; kmPitch : Kalman_Type; end record; G_state : State_Type; ------------------ -- CONSTANTS ------------------ KM_ACC_VARIANCE : constant Base_Unit_Type := 0.001; -- tut: 0.001 px4: 0.00005; KM_GYRO_BIAS_VARIANCE : constant Base_Unit_Type := 0.005; -- tut: 0.003, px4: 8.0e-6; KM_MEASUREMENT_VARIANCE : constant Base_Unit_Type := 0.008; -- tut: 0.03, px4: 0.003?; function MPU_To_PX4Frame(vector : Linear_Acceleration_Vector) return Linear_Acceleration_Vector is ( ( X => vector(Y), Y => -vector(X), Z => vector(Z) ) ); function MPU_To_PX4Frame(vector : Angular_Velocity_Vector) return Angular_Velocity_Vector is ( ( X => vector(Y), Y => -vector(X), Z => vector(Z) ) ); --overriding procedure initialize (Self : in out IMU_Tag) is now : constant Ada.Real_Time.Time := Ada.Real_Time.Clock; success : Boolean; begin G_state.lastFuse := now; G_state.kmLastCall := now; MPU6000.Driver.Test_Connection (success); if success then Driver.Init; Driver.Set_Full_Scale_Gyro_Range( FS_Range => Driver.MPU6000_Gyro_FS_2000 ); Driver.Set_Full_Scale_Accel_Range( FS_Range => Driver.MPU6000_Accel_FS_8 ); Self.state := READY; else Self.state := ERROR; end if; end initialize; --overriding procedure read_Measurement(Self : in out IMU_Tag) is begin Driver.Get_Motion_6(Self.sample.data.Acc_X, Self.sample.data.Acc_Y, Self.sample.data.Acc_Z, Self.sample.data.Gyro_X, Self.sample.data.Gyro_Y, Self.sample.data.Gyro_Z); end read_Measurement; procedure perform_Kalman_Filtering(Self : IMU_Tag; newAngle : Orientation_Type) is time_of_call : constant Ada.Real_Time.Time := Ada.Real_Time.Clock; dt : constant Time_Type := Units.To_Time( time_of_call - G_state.kmLastCall ); newRate : Angular_Velocity_Vector := get_Angular_Velocity(Self); BIAS_LIMIT : constant Angular_Velocity_Type := 500.0*Degree/Second; predAngle : Angle_Vector; begin -- Logger.log(Logger.INFO, "real time dt: " & Float'Image( Float(dt) ) ); -- Vermutung: Bei Roll arbeiten Acc und Gyro gegeneinander. ------------------- -- Preprocessing ------------------- -- compensate gyros declare -- SPARK needs explicit conversion between array with different elements: cv : Cartesian_Vector_Type := (X => Base_Unit_Type (newRate(X)), Y => Base_Unit_Type (newRate(Y)), Z => Base_Unit_Type (newRate(Z))); begin rotate (cv, X, G_state.kmRoll.Angle); newRate := (X => Angular_Velocity_Type (cv(X)), Y => Angular_Velocity_Type (cv(Y)), Z => Angular_Velocity_Type (cv(Z))); end; -- if roll > 90° then gyro pitch rate is inverse. -- not needed if gyro is compensated -- if abs( Unit_Type( G_state.kmRoll.Angle )) > Unit_Type( 90.0 * Degree ) then -- newRate(Y) := - newRate(Y); -- end if; -- looping: if |pitch| exceeds 90°, the roll flips by 180°? => no, flight dynamic prevents this -- rollover: switch from -180 to 180° if (newAngle.Roll < -90.0*Degree and G_state.kmRoll.Angle > 90.0*Degree) or (newAngle.Roll > 90.0*Degree and G_state.kmRoll.Angle < -90.0*Degree) then G_state.kmRoll.Angle := newAngle.Roll; end if; ------------------ -- ROLL KALMAN ------------------ -- 1. Predict G_state.kmRoll.Rate := newRate(X) - G_state.kmRoll.Bias; -- Bias bei Pitch hoch: 6.2 predAngle(X) := wrap_Angle( G_state.kmRoll.Angle + Angle_Type( G_state.kmRoll.Rate * dt ), Roll_Type'First, Roll_Type'Last); G_state.kmRoll.Angle := predAngle(X); -- Calc Covariance, stays small G_state.kmRoll.P := ( 1 => ( 1 => G_state.kmRoll.P(1, 1) + Base_Unit_Type(dt) * ( Base_Unit_Type(dt) * G_state.kmRoll.P(2, 2) - G_state.kmRoll.P(1, 2) - G_state.kmRoll.P(2, 1) + KM_ACC_VARIANCE), 2 => G_state.kmRoll.P(1, 2) - Base_Unit_Type(dt) * G_state.kmRoll.P(2, 2) ), 2 => ( 1 => G_state.kmRoll.P(2, 1) - Base_Unit_Type(dt) * G_state.kmRoll.P(2, 2), 2 => G_state.kmRoll.P(2, 2) + Base_Unit_Type(dt) * KM_GYRO_BIAS_VARIANCE ) ); -- 2. Update G_state.kmRoll.S := G_state.kmRoll.P(1, 1) + KM_MEASUREMENT_VARIANCE; G_state.kmRoll.K(1) := G_state.kmRoll.P(1, 1) / G_state.kmRoll.S; -- gains: 1 => 0.2 – 0.9 , 2 => < 0.1 G_state.kmRoll.K(2) := G_state.kmRoll.P(2, 1) / G_state.kmRoll.S; -- final correction G_state.kmRoll.y := newAngle.Roll - G_state.kmRoll.Angle; G_state.kmRoll.Angle := wrap_Angle( G_state.kmRoll.Angle + Unit_Type (G_State.kmRoll.K(1)) * G_State.kmRoll.Y, Roll_Type'First, Roll_Type'Last); G_state.kmRoll.Bias := G_state.kmRoll.Bias + Angular_Velocity_Type( Base_Unit_Type (Unit_Type (G_State.kmRoll.K(2)) * G_State.kmRoll.y )); if G_state.kmRoll.Bias < -BIAS_LIMIT then G_state.kmRoll.Bias := -BIAS_LIMIT; elsif G_state.kmRoll.Bias > BIAS_LIMIT then G_state.kmRoll.Bias := BIAS_LIMIT; end if; G_state.kmRoll.P := ( 1 => ( 1 => G_state.kmRoll.P(1, 1) - G_state.kmRoll.K(1) * G_state.kmRoll.P(1, 1), 2 => G_state.kmRoll.P(1, 2) - G_state.kmRoll.K(1) * G_state.kmRoll.P(1, 2) ), 2 => ( 1 => G_state.kmRoll.P(2, 1) - G_state.kmRoll.K(2) * G_state.kmRoll.P(1, 1), 2 => G_state.kmRoll.P(2, 2) - G_state.kmRoll.K(2) * G_state.kmRoll.P(1, 2) ) ); ----------- -- PITCH ----------- -- 1. Predict G_state.kmPitch.Rate := newRate(Y) - G_state.kmPitch.Bias; predAngle(Y) := G_state.kmPitch.Angle + Angle_Type( G_state.kmPitch.Rate * dt ); -- if pitch prediction exceeds |90°|, the remainder has to be inverted: 80° + 15° = 85°! if predAngle(Y) > 90.0*Degree then G_state.kmPitch.Angle := 180.0*Degree - predAngle(Y); elsif predAngle(Y) < -90.0*Degree then G_state.kmPitch.Angle := -180.0*Degree - predAngle(Y); else G_state.kmPitch.Angle := predAngle(Y); end if; -- Calc Covariance, bleibt klein G_state.kmPitch.P := ( 1 => ( 1 => G_state.kmPitch.P(1, 1) + Base_Unit_Type(dt) * ( Base_Unit_Type(dt) * G_state.kmPitch.P(2, 2) - G_state.kmPitch.P(1, 2) - G_state.kmPitch.P(2, 1) + KM_ACC_VARIANCE), 2 => G_state.kmPitch.P(1, 2) - Base_Unit_Type(dt) * G_state.kmPitch.P(2, 2) ), 2 => ( 1 => G_state.kmPitch.P(2, 1) - Base_Unit_Type(dt) * G_state.kmPitch.P(2, 2), 2 => G_state.kmPitch.P(2, 2) + Base_Unit_Type(dt) * KM_GYRO_BIAS_VARIANCE ) ); -- 2. Update G_state.kmPitch.S := G_state.kmPitch.P(1, 1) + KM_MEASUREMENT_VARIANCE; G_state.kmPitch.K(1) := G_state.kmPitch.P(1, 1) / G_state.kmPitch.S; -- gains: 1 => 0.2 – 0.9 , 2 => < 0.1 G_state.kmPitch.K(2) := G_state.kmPitch.P(2, 1) / G_state.kmPitch.S; -- final correction G_state.kmPitch.y := newAngle.Pitch - G_state.kmPitch.Angle; G_state.kmPitch.Angle := wrap_Angle( G_state.kmPitch.Angle + Unit_Type (G_State.kmPitch.K(1)) * G_state.kmPitch.y, Pitch_Type'First, Pitch_Type'Last); G_state.kmPitch.Bias := G_state.kmPitch.Bias + Angular_Velocity_Type( Base_Unit_Type (Unit_Type (G_State.kmPitch.K(2)) * G_state.kmPitch.y )); if G_state.kmPitch.Bias < -BIAS_LIMIT then G_state.kmPitch.Bias := -BIAS_LIMIT; elsif G_state.kmPitch.Bias > BIAS_LIMIT then G_state.kmPitch.Bias := BIAS_LIMIT; end if; G_state.kmPitch.P := ( 1 => ( 1 => G_state.kmPitch.P(1, 1) - G_state.kmPitch.K(1) * G_state.kmPitch.P(1, 1), 2 => G_state.kmPitch.P(1, 2) - G_state.kmPitch.K(1) * G_state.kmPitch.P(1, 2) ), 2 => ( 1 => G_state.kmPitch.P(2, 1) - G_state.kmPitch.K(2) * G_state.kmPitch.P(1, 1), 2 => G_state.kmPitch.P(2, 2) - G_state.kmPitch.K(2) * G_state.kmPitch.P(1, 2) ) ); G_state.kmLastCall := time_of_call; end perform_Kalman_Filtering; function get_Linear_Acceleration(Self : IMU_Tag) return Linear_Acceleration_Vector is result : Linear_Acceleration_Vector; sensitivity : constant Float := Driver.MPU6000_G_PER_LSB_8; -- Arduplane: +- 8G begin result := ( X => Unit_Type( Float( Self.sample.data.Acc_X ) * sensitivity ) * GRAVITY, Y => Unit_Type( Float( Self.sample.data.Acc_Y ) * sensitivity ) * GRAVITY, Z => Unit_Type( Float( Self.sample.data.Acc_Z ) * sensitivity ) * GRAVITY ); result := MPU_To_PX4Frame( result ); return result; end get_Linear_Acceleration; function get_Angular_Velocity(Self : IMU_Tag) return Angular_Velocity_Vector is result : Angular_Velocity_Vector; sensitivity : constant Angular_Velocity_Type := Unit_Type( Driver.MPU6000_DEG_PER_LSB_2000 ) * Degree / Second; begin result := ( X => Unit_Type( Float( Self.sample.data.Gyro_X ) ) * sensitivity, Y => Unit_Type( Float( Self.sample.data.Gyro_Y ) ) * sensitivity, Z => Unit_Type( Float( Self.sample.data.Gyro_Z ) ) * sensitivity ); result := MPU_To_PX4Frame( result ); return result; end get_Angular_Velocity; function get_Orientation(Self : IMU_Tag) return Orientation_Type is pragma Unreferenced (Self); r : constant Roll_Type := wrap_Angle (angle => G_state.kmRoll.Angle, min => Roll_Type'First, max => Roll_Type'Last); p : constant Pitch_Type := wrap_Angle (angle => G_state.kmPitch.Angle, min => Pitch_Type'First, max => Pitch_Type'Last); begin return (Roll => r, Pitch => p, Yaw => 0.0 * Degree); end get_Orientation; -- Complementary Filter: angle = 0.98 *(angle+gyro*dt) + 0.02*acc procedure Fused_Orientation(Self : IMU_Tag; Orientation : Orientation_Type; Angular_Rate : Angular_Velocity_Vector; result : out Orientation_Type) is pragma Unreferenced (Self); fraction : constant := 0.7; now : constant Ada.Real_Time.Time := Ada.Real_Time.Clock; dt : constant Ada.Real_Time.Time_Span := now - G_state.lastFuse; function Sat_Add_Angle is new Saturated_Addition (Angle_Type); begin declare tmp : constant Angle_Type := Sat_Add_Angle (G_state.filterAngle(X), Angular_Rate(X) * Units.To_Time (dt)); begin result.Roll := wrap_Angle (angle => Sat_Add_Angle (fraction * tmp, (1.0 - fraction) * Orientation.Roll), min => Roll_Type'First, max => Roll_Type'Last); end; declare tmp : constant Angle_Type := Sat_Add_Angle (G_state.filterAngle(Y), Angular_Rate(Y) * Units.To_Time(dt)); begin result.Pitch := wrap_Angle (angle => Sat_Add_Angle (fraction * tmp, (1.0 - fraction) * Orientation.Pitch), min => Pitch_Type'First, max => Pitch_Type'Last); end; result.Yaw := Orientation.Yaw; G_state.lastFuse := Ada.Real_Time.Clock; end Fused_Orientation; procedure check_Freefall(Self : in out IMU_Tag; isFreefall : out Boolean) is function Sat_Add_Flt is new Saturated_Addition (Float); function "abs" (value : Linear_Acceleration_Vector) return Linear_Acceleration_Type is lensq : Float; begin lensq := Sat_Add_Flt (Float (value(X))**2, Float (value(Y))**2); lensq := Sat_Add_Flt (lensq, Float (value(Z))**2); return Linear_Acceleration_Type (Sqrt (lensq)); end "abs"; begin if abs (get_Linear_Acceleration (Self)) < 0.5 * Meter / (Second**2) then if Self.Freefall_Counter < Natural'Last then Self.Freefall_Counter := Self.Freefall_Counter + 1; end if; else Self.Freefall_Counter := 0; end if; isFreefall := (Self.Freefall_Counter >= 5); end check_Freefall; end IMU;
-- Copyright 2017-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package B is procedure Read_Small with Inline_Always; procedure Doit; end B;
------------------------------------------------------------------------------- -- This file is part of libsparkcrypto. -- -- @author Alexander Senier -- @date 2019-03-04 -- -- Copyright (C) 2019 Componolit GmbH -- 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 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 LSC.Types is pragma Pure; type Byte is mod 2**8 with Size => 8; -- Natural index type subtype Natural_Index is Natural range Natural'First .. Natural'Last - 1; -- Byte array type type Bytes is array (Natural_Index range <>) of Byte; end LSC.Types;
----------------------------------------------------------------------- -- Util testsuite - Util Testsuite -- Copyright (C) 2009, 2010, 2011 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; package Util.Testsuite is function Suite return Util.Tests.Access_Test_Suite; end Util.Testsuite;
------------------------------------------------------------------------------ -- -- -- Unicode Utilities -- -- -- -- Case Folding Utilities -- -- Simple Case Folding -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2019, ANNEXI-STRAYLINE Trans-Human Ltd. -- -- All rights reserved. -- -- -- -- Original Contributors: -- -- * Richard Wai (ANNEXI-STRAYLINE) -- -- -- -- 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 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 -- -- 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: 2019-08-15 -- CaseFolding.txt source -- https://www.unicode.org/Public/UCD/latest/ucd/CaseFolding.txt -- ********** THIS FILE IS AUTOMATICALLY GENERATED ********* -- -- - See AURA.Unicode.UCD.Generate_Case_Folding.Simple - -- -- CaseFolding.txt: C+S maps loaded = 1411 function Unicode.Case_Folding.Simple (C: Wide_Wide_Character) return Wide_Wide_Character is type Codepoint is mod 2**24; type Key_Hash is mod 2**8; function Hash (C: Codepoint) return Key_Hash with Inline is T: Codepoint := C; begin return K: Key_Hash := 0 do for I in 1 .. 3 loop K := K xor Key_Hash (T and 16#FF#); T := T / 16#100#; end loop; end return; end Hash; function Bucket_00 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000202# => Wide_Wide_Character'Val (16#000203#), when 16#000404# => Wide_Wide_Character'Val (16#000454#), when 16#001E1E# => Wide_Wide_Character'Val (16#001E1F#), when 16#002C2C# => Wide_Wide_Character'Val (16#002C5C#), when 16#00ABAB# => Wide_Wide_Character'Val (16#0013DB#), when 16#010405# => Wide_Wide_Character'Val (16#01042D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_01 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000100# => Wide_Wide_Character'Val (16#000101#), when 16#000405# => Wide_Wide_Character'Val (16#000455#), when 16#000504# => Wide_Wide_Character'Val (16#000505#), when 16#002C2D# => Wide_Wide_Character'Val (16#002C5D#), when 16#00A7A6# => Wide_Wide_Character'Val (16#00A7A7#), when 16#00ABAA# => Wide_Wide_Character'Val (16#0013DA#), when 16#010404# => Wide_Wide_Character'Val (16#01042C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_02 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000200# => Wide_Wide_Character'Val (16#000201#), when 16#000406# => Wide_Wide_Character'Val (16#000456#), when 16#001E1C# => Wide_Wide_Character'Val (16#001E1D#), when 16#001F1D# => Wide_Wide_Character'Val (16#001F15#), when 16#002C2E# => Wide_Wide_Character'Val (16#002C5E#), when 16#00ABA9# => Wide_Wide_Character'Val (16#0013D9#), when 16#010407# => Wide_Wide_Character'Val (16#01042F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_03 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000102# => Wide_Wide_Character'Val (16#000103#), when 16#000407# => Wide_Wide_Character'Val (16#000457#), when 16#000506# => Wide_Wide_Character'Val (16#000507#), when 16#001F1C# => Wide_Wide_Character'Val (16#001F14#), when 16#00A7A4# => Wide_Wide_Character'Val (16#00A7A5#), when 16#00ABA8# => Wide_Wide_Character'Val (16#0013D8#), when 16#010406# => Wide_Wide_Character'Val (16#01042E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_04 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000206# => Wide_Wide_Character'Val (16#000207#), when 16#000400# => Wide_Wide_Character'Val (16#000450#), when 16#001E1A# => Wide_Wide_Character'Val (16#001E1B#), when 16#001F1B# => Wide_Wide_Character'Val (16#001F13#), when 16#002C28# => Wide_Wide_Character'Val (16#002C58#), when 16#00ABAF# => Wide_Wide_Character'Val (16#0013DF#), when 16#010401# => Wide_Wide_Character'Val (16#010429#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_05 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000104# => Wide_Wide_Character'Val (16#000105#), when 16#000401# => Wide_Wide_Character'Val (16#000451#), when 16#000500# => Wide_Wide_Character'Val (16#000501#), when 16#001F1A# => Wide_Wide_Character'Val (16#001F12#), when 16#002C29# => Wide_Wide_Character'Val (16#002C59#), when 16#00A7A2# => Wide_Wide_Character'Val (16#00A7A3#), when 16#00ABAE# => Wide_Wide_Character'Val (16#0013DE#), when 16#010400# => Wide_Wide_Character'Val (16#010428#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_06 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000204# => Wide_Wide_Character'Val (16#000205#), when 16#000402# => Wide_Wide_Character'Val (16#000452#), when 16#001E18# => Wide_Wide_Character'Val (16#001E19#), when 16#001F19# => Wide_Wide_Character'Val (16#001F11#), when 16#002C2A# => Wide_Wide_Character'Val (16#002C5A#), when 16#00ABAD# => Wide_Wide_Character'Val (16#0013DD#), when 16#010403# => Wide_Wide_Character'Val (16#01042B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_07 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000106# => Wide_Wide_Character'Val (16#000107#), when 16#000403# => Wide_Wide_Character'Val (16#000453#), when 16#000502# => Wide_Wide_Character'Val (16#000503#), when 16#001F18# => Wide_Wide_Character'Val (16#001F10#), when 16#002126# => Wide_Wide_Character'Val (16#0003C9#), when 16#002C2B# => Wide_Wide_Character'Val (16#002C5B#), when 16#00A7A0# => Wide_Wide_Character'Val (16#00A7A1#), when 16#00ABAC# => Wide_Wide_Character'Val (16#0013DC#), when 16#010402# => Wide_Wide_Character'Val (16#01042A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_08 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00020A# => Wide_Wide_Character'Val (16#00020B#), when 16#00040C# => Wide_Wide_Character'Val (16#00045C#), when 16#001E16# => Wide_Wide_Character'Val (16#001E17#), when 16#002C24# => Wide_Wide_Character'Val (16#002C54#), when 16#00ABA3# => Wide_Wide_Character'Val (16#0013D3#), when 16#01040D# => Wide_Wide_Character'Val (16#010435#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_09 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000108# => Wide_Wide_Character'Val (16#000109#), when 16#00040D# => Wide_Wide_Character'Val (16#00045D#), when 16#00050C# => Wide_Wide_Character'Val (16#00050D#), when 16#002C25# => Wide_Wide_Character'Val (16#002C55#), when 16#00A7AE# => Wide_Wide_Character'Val (16#00026A#), when 16#00ABA2# => Wide_Wide_Character'Val (16#0013D2#), when 16#01040C# => Wide_Wide_Character'Val (16#010434#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_0A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000208# => Wide_Wide_Character'Val (16#000209#), when 16#00040E# => Wide_Wide_Character'Val (16#00045E#), when 16#001E14# => Wide_Wide_Character'Val (16#001E15#), when 16#00212B# => Wide_Wide_Character'Val (16#0000E5#), when 16#002C26# => Wide_Wide_Character'Val (16#002C56#), when 16#00A7AD# => Wide_Wide_Character'Val (16#00026C#), when 16#00ABA1# => Wide_Wide_Character'Val (16#0013D1#), when 16#01040F# => Wide_Wide_Character'Val (16#010437#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_0B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00010A# => Wide_Wide_Character'Val (16#00010B#), when 16#00040F# => Wide_Wide_Character'Val (16#00045F#), when 16#00050E# => Wide_Wide_Character'Val (16#00050F#), when 16#00212A# => Wide_Wide_Character'Val (16#00006B#), when 16#002C27# => Wide_Wide_Character'Val (16#002C57#), when 16#00A7AC# => Wide_Wide_Character'Val (16#000261#), when 16#00ABA0# => Wide_Wide_Character'Val (16#0013D0#), when 16#01040E# => Wide_Wide_Character'Val (16#010436#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_0C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00020E# => Wide_Wide_Character'Val (16#00020F#), when 16#000408# => Wide_Wide_Character'Val (16#000458#), when 16#001E12# => Wide_Wide_Character'Val (16#001E13#), when 16#002C20# => Wide_Wide_Character'Val (16#002C50#), when 16#00A7AB# => Wide_Wide_Character'Val (16#00025C#), when 16#00ABA7# => Wide_Wide_Character'Val (16#0013D7#), when 16#010409# => Wide_Wide_Character'Val (16#010431#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_0D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00010C# => Wide_Wide_Character'Val (16#00010D#), when 16#000409# => Wide_Wide_Character'Val (16#000459#), when 16#000508# => Wide_Wide_Character'Val (16#000509#), when 16#002C21# => Wide_Wide_Character'Val (16#002C51#), when 16#00A7AA# => Wide_Wide_Character'Val (16#000266#), when 16#00ABA6# => Wide_Wide_Character'Val (16#0013D6#), when 16#010408# => Wide_Wide_Character'Val (16#010430#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_0E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00020C# => Wide_Wide_Character'Val (16#00020D#), when 16#00040A# => Wide_Wide_Character'Val (16#00045A#), when 16#001E10# => Wide_Wide_Character'Val (16#001E11#), when 16#002C22# => Wide_Wide_Character'Val (16#002C52#), when 16#00ABA5# => Wide_Wide_Character'Val (16#0013D5#), when 16#01040B# => Wide_Wide_Character'Val (16#010433#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_0F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00010E# => Wide_Wide_Character'Val (16#00010F#), when 16#00040B# => Wide_Wide_Character'Val (16#00045B#), when 16#00050A# => Wide_Wide_Character'Val (16#00050B#), when 16#002C23# => Wide_Wide_Character'Val (16#002C53#), when 16#00A7A8# => Wide_Wide_Character'Val (16#00A7A9#), when 16#00ABA4# => Wide_Wide_Character'Val (16#0013D4#), when 16#01040A# => Wide_Wide_Character'Val (16#010432#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_10 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000212# => Wide_Wide_Character'Val (16#000213#), when 16#000414# => Wide_Wide_Character'Val (16#000434#), when 16#001E0E# => Wide_Wide_Character'Val (16#001E0F#), when 16#001F0F# => Wide_Wide_Character'Val (16#001F07#), when 16#00ABBB# => Wide_Wide_Character'Val (16#0013EB#), when 16#010415# => Wide_Wide_Character'Val (16#01043D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_11 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000110# => Wide_Wide_Character'Val (16#000111#), when 16#000415# => Wide_Wide_Character'Val (16#000435#), when 16#000514# => Wide_Wide_Character'Val (16#000515#), when 16#001F0E# => Wide_Wide_Character'Val (16#001F06#), when 16#00A7B6# => Wide_Wide_Character'Val (16#00A7B7#), when 16#00ABBA# => Wide_Wide_Character'Val (16#0013EA#), when 16#010414# => Wide_Wide_Character'Val (16#01043C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_12 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000210# => Wide_Wide_Character'Val (16#000211#), when 16#000416# => Wide_Wide_Character'Val (16#000436#), when 16#001E0C# => Wide_Wide_Character'Val (16#001E0D#), when 16#001F0D# => Wide_Wide_Character'Val (16#001F05#), when 16#00ABB9# => Wide_Wide_Character'Val (16#0013E9#), when 16#010417# => Wide_Wide_Character'Val (16#01043F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_13 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000112# => Wide_Wide_Character'Val (16#000113#), when 16#000417# => Wide_Wide_Character'Val (16#000437#), when 16#000516# => Wide_Wide_Character'Val (16#000517#), when 16#001F0C# => Wide_Wide_Character'Val (16#001F04#), when 16#002132# => Wide_Wide_Character'Val (16#00214E#), when 16#00A7B4# => Wide_Wide_Character'Val (16#00A7B5#), when 16#00ABB8# => Wide_Wide_Character'Val (16#0013E8#), when 16#010416# => Wide_Wide_Character'Val (16#01043E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_14 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000216# => Wide_Wide_Character'Val (16#000217#), when 16#000410# => Wide_Wide_Character'Val (16#000430#), when 16#001E0A# => Wide_Wide_Character'Val (16#001E0B#), when 16#001F0B# => Wide_Wide_Character'Val (16#001F03#), when 16#00A7B3# => Wide_Wide_Character'Val (16#00AB53#), when 16#00ABBF# => Wide_Wide_Character'Val (16#0013EF#), when 16#010411# => Wide_Wide_Character'Val (16#010439#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_15 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000114# => Wide_Wide_Character'Val (16#000115#), when 16#000411# => Wide_Wide_Character'Val (16#000431#), when 16#000510# => Wide_Wide_Character'Val (16#000511#), when 16#001F0A# => Wide_Wide_Character'Val (16#001F02#), when 16#00A7B2# => Wide_Wide_Character'Val (16#00029D#), when 16#00ABBE# => Wide_Wide_Character'Val (16#0013EE#), when 16#010410# => Wide_Wide_Character'Val (16#010438#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_16 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000214# => Wide_Wide_Character'Val (16#000215#), when 16#000412# => Wide_Wide_Character'Val (16#000432#), when 16#001E08# => Wide_Wide_Character'Val (16#001E09#), when 16#001F09# => Wide_Wide_Character'Val (16#001F01#), when 16#00A7B1# => Wide_Wide_Character'Val (16#000287#), when 16#00ABBD# => Wide_Wide_Character'Val (16#0013ED#), when 16#010413# => Wide_Wide_Character'Val (16#01043B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_17 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000116# => Wide_Wide_Character'Val (16#000117#), when 16#000413# => Wide_Wide_Character'Val (16#000433#), when 16#000512# => Wide_Wide_Character'Val (16#000513#), when 16#001F08# => Wide_Wide_Character'Val (16#001F00#), when 16#00A7B0# => Wide_Wide_Character'Val (16#00029E#), when 16#00ABBC# => Wide_Wide_Character'Val (16#0013EC#), when 16#010412# => Wide_Wide_Character'Val (16#01043A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_18 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00021A# => Wide_Wide_Character'Val (16#00021B#), when 16#00041C# => Wide_Wide_Character'Val (16#00043C#), when 16#001E06# => Wide_Wide_Character'Val (16#001E07#), when 16#00ABB3# => Wide_Wide_Character'Val (16#0013E3#), when 16#01041D# => Wide_Wide_Character'Val (16#010445#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_19 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000118# => Wide_Wide_Character'Val (16#000119#), when 16#00041D# => Wide_Wide_Character'Val (16#00043D#), when 16#00051C# => Wide_Wide_Character'Val (16#00051D#), when 16#00A7BE# => Wide_Wide_Character'Val (16#00A7BF#), when 16#00ABB2# => Wide_Wide_Character'Val (16#0013E2#), when 16#01041C# => Wide_Wide_Character'Val (16#010444#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_1A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000218# => Wide_Wide_Character'Val (16#000219#), when 16#00041E# => Wide_Wide_Character'Val (16#00043E#), when 16#001E04# => Wide_Wide_Character'Val (16#001E05#), when 16#00ABB1# => Wide_Wide_Character'Val (16#0013E1#), when 16#01041F# => Wide_Wide_Character'Val (16#010447#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_1B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00011A# => Wide_Wide_Character'Val (16#00011B#), when 16#00041F# => Wide_Wide_Character'Val (16#00043F#), when 16#00051E# => Wide_Wide_Character'Val (16#00051F#), when 16#00A7BC# => Wide_Wide_Character'Val (16#00A7BD#), when 16#00ABB0# => Wide_Wide_Character'Val (16#0013E0#), when 16#01041E# => Wide_Wide_Character'Val (16#010446#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_1C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00021E# => Wide_Wide_Character'Val (16#00021F#), when 16#000418# => Wide_Wide_Character'Val (16#000438#), when 16#001E02# => Wide_Wide_Character'Val (16#001E03#), when 16#00ABB7# => Wide_Wide_Character'Val (16#0013E7#), when 16#010419# => Wide_Wide_Character'Val (16#010441#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_1D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00011C# => Wide_Wide_Character'Val (16#00011D#), when 16#000419# => Wide_Wide_Character'Val (16#000439#), when 16#000518# => Wide_Wide_Character'Val (16#000519#), when 16#00A7BA# => Wide_Wide_Character'Val (16#00A7BB#), when 16#00ABB6# => Wide_Wide_Character'Val (16#0013E6#), when 16#010418# => Wide_Wide_Character'Val (16#010440#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_1E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00021C# => Wide_Wide_Character'Val (16#00021D#), when 16#00041A# => Wide_Wide_Character'Val (16#00043A#), when 16#001E00# => Wide_Wide_Character'Val (16#001E01#), when 16#00ABB5# => Wide_Wide_Character'Val (16#0013E5#), when 16#01041B# => Wide_Wide_Character'Val (16#010443#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_1F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00011E# => Wide_Wide_Character'Val (16#00011F#), when 16#00041B# => Wide_Wide_Character'Val (16#00043B#), when 16#00051A# => Wide_Wide_Character'Val (16#00051B#), when 16#00A7B8# => Wide_Wide_Character'Val (16#00A7B9#), when 16#00ABB4# => Wide_Wide_Character'Val (16#0013E4#), when 16#01041A# => Wide_Wide_Character'Val (16#010442#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_20 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000222# => Wide_Wide_Character'Val (16#000223#), when 16#000424# => Wide_Wide_Character'Val (16#000444#), when 16#001E3E# => Wide_Wide_Character'Val (16#001E3F#), when 16#001F3F# => Wide_Wide_Character'Val (16#001F37#), when 16#002C0C# => Wide_Wide_Character'Val (16#002C3C#), when 16#00A686# => Wide_Wide_Character'Val (16#00A687#), when 16#00AB8B# => Wide_Wide_Character'Val (16#0013BB#), when 16#010425# => Wide_Wide_Character'Val (16#01044D#), when 16#016E4F# => Wide_Wide_Character'Val (16#016E6F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_21 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000120# => Wide_Wide_Character'Val (16#000121#), when 16#000425# => Wide_Wide_Character'Val (16#000445#), when 16#000524# => Wide_Wide_Character'Val (16#000525#), when 16#001F3E# => Wide_Wide_Character'Val (16#001F36#), when 16#002C0D# => Wide_Wide_Character'Val (16#002C3D#), when 16#00A786# => Wide_Wide_Character'Val (16#00A787#), when 16#00AB8A# => Wide_Wide_Character'Val (16#0013BA#), when 16#010424# => Wide_Wide_Character'Val (16#01044C#), when 16#016E4E# => Wide_Wide_Character'Val (16#016E6E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_22 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000220# => Wide_Wide_Character'Val (16#00019E#), when 16#000426# => Wide_Wide_Character'Val (16#000446#), when 16#001E3C# => Wide_Wide_Character'Val (16#001E3D#), when 16#001F3D# => Wide_Wide_Character'Val (16#001F35#), when 16#002C0E# => Wide_Wide_Character'Val (16#002C3E#), when 16#00A684# => Wide_Wide_Character'Val (16#00A685#), when 16#00AB89# => Wide_Wide_Character'Val (16#0013B9#), when 16#010427# => Wide_Wide_Character'Val (16#01044F#), when 16#016E4D# => Wide_Wide_Character'Val (16#016E6D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_23 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000122# => Wide_Wide_Character'Val (16#000123#), when 16#000427# => Wide_Wide_Character'Val (16#000447#), when 16#000526# => Wide_Wide_Character'Val (16#000527#), when 16#001F3C# => Wide_Wide_Character'Val (16#001F34#), when 16#002C0F# => Wide_Wide_Character'Val (16#002C3F#), when 16#00A784# => Wide_Wide_Character'Val (16#00A785#), when 16#00AB88# => Wide_Wide_Character'Val (16#0013B8#), when 16#010426# => Wide_Wide_Character'Val (16#01044E#), when 16#016E4C# => Wide_Wide_Character'Val (16#016E6C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_24 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000226# => Wide_Wide_Character'Val (16#000227#), when 16#000420# => Wide_Wide_Character'Val (16#000440#), when 16#001E3A# => Wide_Wide_Character'Val (16#001E3B#), when 16#001F3B# => Wide_Wide_Character'Val (16#001F33#), when 16#002C08# => Wide_Wide_Character'Val (16#002C38#), when 16#00A682# => Wide_Wide_Character'Val (16#00A683#), when 16#00AB8F# => Wide_Wide_Character'Val (16#0013BF#), when 16#010421# => Wide_Wide_Character'Val (16#010449#), when 16#016E4B# => Wide_Wide_Character'Val (16#016E6B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_25 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000124# => Wide_Wide_Character'Val (16#000125#), when 16#000421# => Wide_Wide_Character'Val (16#000441#), when 16#000520# => Wide_Wide_Character'Val (16#000521#), when 16#001F3A# => Wide_Wide_Character'Val (16#001F32#), when 16#002C09# => Wide_Wide_Character'Val (16#002C39#), when 16#00A782# => Wide_Wide_Character'Val (16#00A783#), when 16#00AB8E# => Wide_Wide_Character'Val (16#0013BE#), when 16#010420# => Wide_Wide_Character'Val (16#010448#), when 16#016E4A# => Wide_Wide_Character'Val (16#016E6A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_26 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000224# => Wide_Wide_Character'Val (16#000225#), when 16#000422# => Wide_Wide_Character'Val (16#000442#), when 16#001E38# => Wide_Wide_Character'Val (16#001E39#), when 16#001F39# => Wide_Wide_Character'Val (16#001F31#), when 16#002C0A# => Wide_Wide_Character'Val (16#002C3A#), when 16#00A680# => Wide_Wide_Character'Val (16#00A681#), when 16#00AB8D# => Wide_Wide_Character'Val (16#0013BD#), when 16#010423# => Wide_Wide_Character'Val (16#01044B#), when 16#016E49# => Wide_Wide_Character'Val (16#016E69#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_27 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000126# => Wide_Wide_Character'Val (16#000127#), when 16#000423# => Wide_Wide_Character'Val (16#000443#), when 16#000522# => Wide_Wide_Character'Val (16#000523#), when 16#001F38# => Wide_Wide_Character'Val (16#001F30#), when 16#002C0B# => Wide_Wide_Character'Val (16#002C3B#), when 16#00A780# => Wide_Wide_Character'Val (16#00A781#), when 16#00AB8C# => Wide_Wide_Character'Val (16#0013BC#), when 16#010422# => Wide_Wide_Character'Val (16#01044A#), when 16#016E48# => Wide_Wide_Character'Val (16#016E68#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_28 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00022A# => Wide_Wide_Character'Val (16#00022B#), when 16#00042C# => Wide_Wide_Character'Val (16#00044C#), when 16#001E36# => Wide_Wide_Character'Val (16#001E37#), when 16#002C04# => Wide_Wide_Character'Val (16#002C34#), when 16#00A68E# => Wide_Wide_Character'Val (16#00A68F#), when 16#00AB83# => Wide_Wide_Character'Val (16#0013B3#), when 16#016E47# => Wide_Wide_Character'Val (16#016E67#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_29 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000128# => Wide_Wide_Character'Val (16#000129#), when 16#00042D# => Wide_Wide_Character'Val (16#00044D#), when 16#00052C# => Wide_Wide_Character'Val (16#00052D#), when 16#002C05# => Wide_Wide_Character'Val (16#002C35#), when 16#00AB82# => Wide_Wide_Character'Val (16#0013B2#), when 16#016E46# => Wide_Wide_Character'Val (16#016E66#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_2A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000228# => Wide_Wide_Character'Val (16#000229#), when 16#00042E# => Wide_Wide_Character'Val (16#00044E#), when 16#001E34# => Wide_Wide_Character'Val (16#001E35#), when 16#002C06# => Wide_Wide_Character'Val (16#002C36#), when 16#00A68C# => Wide_Wide_Character'Val (16#00A68D#), when 16#00A78D# => Wide_Wide_Character'Val (16#000265#), when 16#00AB81# => Wide_Wide_Character'Val (16#0013B1#), when 16#016E45# => Wide_Wide_Character'Val (16#016E65#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_2B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00012A# => Wide_Wide_Character'Val (16#00012B#), when 16#00042F# => Wide_Wide_Character'Val (16#00044F#), when 16#00052E# => Wide_Wide_Character'Val (16#00052F#), when 16#002C07# => Wide_Wide_Character'Val (16#002C37#), when 16#00AB80# => Wide_Wide_Character'Val (16#0013B0#), when 16#016E44# => Wide_Wide_Character'Val (16#016E64#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_2C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00022E# => Wide_Wide_Character'Val (16#00022F#), when 16#000428# => Wide_Wide_Character'Val (16#000448#), when 16#001E32# => Wide_Wide_Character'Val (16#001E33#), when 16#002C00# => Wide_Wide_Character'Val (16#002C30#), when 16#00A68A# => Wide_Wide_Character'Val (16#00A68B#), when 16#00A78B# => Wide_Wide_Character'Val (16#00A78C#), when 16#00AB87# => Wide_Wide_Character'Val (16#0013B7#), when 16#016E43# => Wide_Wide_Character'Val (16#016E63#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_2D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00012C# => Wide_Wide_Character'Val (16#00012D#), when 16#000429# => Wide_Wide_Character'Val (16#000449#), when 16#000528# => Wide_Wide_Character'Val (16#000529#), when 16#002C01# => Wide_Wide_Character'Val (16#002C31#), when 16#00AB86# => Wide_Wide_Character'Val (16#0013B6#), when 16#016E42# => Wide_Wide_Character'Val (16#016E62#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_2E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00022C# => Wide_Wide_Character'Val (16#00022D#), when 16#00042A# => Wide_Wide_Character'Val (16#00044A#), when 16#001E30# => Wide_Wide_Character'Val (16#001E31#), when 16#002C02# => Wide_Wide_Character'Val (16#002C32#), when 16#00A688# => Wide_Wide_Character'Val (16#00A689#), when 16#00AB85# => Wide_Wide_Character'Val (16#0013B5#), when 16#016E41# => Wide_Wide_Character'Val (16#016E61#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_2F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00012E# => Wide_Wide_Character'Val (16#00012F#), when 16#00042B# => Wide_Wide_Character'Val (16#00044B#), when 16#00052A# => Wide_Wide_Character'Val (16#00052B#), when 16#002C03# => Wide_Wide_Character'Val (16#002C33#), when 16#00AB84# => Wide_Wide_Character'Val (16#0013B4#), when 16#016E40# => Wide_Wide_Character'Val (16#016E60#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_30 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000232# => Wide_Wide_Character'Val (16#000233#), when 16#000535# => Wide_Wide_Character'Val (16#000565#), when 16#001E2E# => Wide_Wide_Character'Val (16#001E2F#), when 16#001F2F# => Wide_Wide_Character'Val (16#001F27#), when 16#002C1C# => Wide_Wide_Character'Val (16#002C4C#), when 16#00A696# => Wide_Wide_Character'Val (16#00A697#), when 16#00AB9B# => Wide_Wide_Character'Val (16#0013CB#), when 16#016E5F# => Wide_Wide_Character'Val (16#016E7F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_31 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000534# => Wide_Wide_Character'Val (16#000564#), when 16#001F2E# => Wide_Wide_Character'Val (16#001F26#), when 16#002C1D# => Wide_Wide_Character'Val (16#002C4D#), when 16#00A796# => Wide_Wide_Character'Val (16#00A797#), when 16#00AB9A# => Wide_Wide_Character'Val (16#0013CA#), when 16#016E5E# => Wide_Wide_Character'Val (16#016E7E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_32 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000230# => Wide_Wide_Character'Val (16#000231#), when 16#000537# => Wide_Wide_Character'Val (16#000567#), when 16#001E2C# => Wide_Wide_Character'Val (16#001E2D#), when 16#001F2D# => Wide_Wide_Character'Val (16#001F25#), when 16#002C1E# => Wide_Wide_Character'Val (16#002C4E#), when 16#00A694# => Wide_Wide_Character'Val (16#00A695#), when 16#00AB99# => Wide_Wide_Character'Val (16#0013C9#), when 16#016E5D# => Wide_Wide_Character'Val (16#016E7D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_33 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000132# => Wide_Wide_Character'Val (16#000133#), when 16#000536# => Wide_Wide_Character'Val (16#000566#), when 16#001F2C# => Wide_Wide_Character'Val (16#001F24#), when 16#002C1F# => Wide_Wide_Character'Val (16#002C4F#), when 16#00AB98# => Wide_Wide_Character'Val (16#0013C8#), when 16#016E5C# => Wide_Wide_Character'Val (16#016E7C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_34 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000531# => Wide_Wide_Character'Val (16#000561#), when 16#001E2A# => Wide_Wide_Character'Val (16#001E2B#), when 16#001F2B# => Wide_Wide_Character'Val (16#001F23#), when 16#002C18# => Wide_Wide_Character'Val (16#002C48#), when 16#00A692# => Wide_Wide_Character'Val (16#00A693#), when 16#00AB9F# => Wide_Wide_Character'Val (16#0013CF#), when 16#016E5B# => Wide_Wide_Character'Val (16#016E7B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_35 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000134# => Wide_Wide_Character'Val (16#000135#), when 16#001F2A# => Wide_Wide_Character'Val (16#001F22#), when 16#002C19# => Wide_Wide_Character'Val (16#002C49#), when 16#00A792# => Wide_Wide_Character'Val (16#00A793#), when 16#00AB9E# => Wide_Wide_Character'Val (16#0013CE#), when 16#016E5A# => Wide_Wide_Character'Val (16#016E7A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_36 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000533# => Wide_Wide_Character'Val (16#000563#), when 16#001E28# => Wide_Wide_Character'Val (16#001E29#), when 16#001F29# => Wide_Wide_Character'Val (16#001F21#), when 16#002C1A# => Wide_Wide_Character'Val (16#002C4A#), when 16#00A690# => Wide_Wide_Character'Val (16#00A691#), when 16#00AB9D# => Wide_Wide_Character'Val (16#0013CD#), when 16#016E59# => Wide_Wide_Character'Val (16#016E79#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_37 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000136# => Wide_Wide_Character'Val (16#000137#), when 16#000532# => Wide_Wide_Character'Val (16#000562#), when 16#001F28# => Wide_Wide_Character'Val (16#001F20#), when 16#002C1B# => Wide_Wide_Character'Val (16#002C4B#), when 16#00A790# => Wide_Wide_Character'Val (16#00A791#), when 16#00AB9C# => Wide_Wide_Character'Val (16#0013CC#), when 16#016E58# => Wide_Wide_Character'Val (16#016E78#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_38 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000139# => Wide_Wide_Character'Val (16#00013A#), when 16#00023A# => Wide_Wide_Character'Val (16#002C65#), when 16#00053D# => Wide_Wide_Character'Val (16#00056D#), when 16#001E26# => Wide_Wide_Character'Val (16#001E27#), when 16#002C14# => Wide_Wide_Character'Val (16#002C44#), when 16#00AB93# => Wide_Wide_Character'Val (16#0013C3#), when 16#016E57# => Wide_Wide_Character'Val (16#016E77#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_39 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00023B# => Wide_Wide_Character'Val (16#00023C#), when 16#00053C# => Wide_Wide_Character'Val (16#00056C#), when 16#002C15# => Wide_Wide_Character'Val (16#002C45#), when 16#00A79E# => Wide_Wide_Character'Val (16#00A79F#), when 16#00AB92# => Wide_Wide_Character'Val (16#0013C2#), when 16#016E56# => Wide_Wide_Character'Val (16#016E76#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_3A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00013B# => Wide_Wide_Character'Val (16#00013C#), when 16#00053F# => Wide_Wide_Character'Val (16#00056F#), when 16#001E24# => Wide_Wide_Character'Val (16#001E25#), when 16#002C16# => Wide_Wide_Character'Val (16#002C46#), when 16#00AB91# => Wide_Wide_Character'Val (16#0013C1#), when 16#016E55# => Wide_Wide_Character'Val (16#016E75#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_3B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00053E# => Wide_Wide_Character'Val (16#00056E#), when 16#002C17# => Wide_Wide_Character'Val (16#002C47#), when 16#00A79C# => Wide_Wide_Character'Val (16#00A79D#), when 16#00AB90# => Wide_Wide_Character'Val (16#0013C0#), when 16#016E54# => Wide_Wide_Character'Val (16#016E74#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_3C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00013D# => Wide_Wide_Character'Val (16#00013E#), when 16#00023E# => Wide_Wide_Character'Val (16#002C66#), when 16#000539# => Wide_Wide_Character'Val (16#000569#), when 16#001E22# => Wide_Wide_Character'Val (16#001E23#), when 16#002C10# => Wide_Wide_Character'Val (16#002C40#), when 16#00A69A# => Wide_Wide_Character'Val (16#00A69B#), when 16#00AB97# => Wide_Wide_Character'Val (16#0013C7#), when 16#016E53# => Wide_Wide_Character'Val (16#016E73#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_3D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000538# => Wide_Wide_Character'Val (16#000568#), when 16#002C11# => Wide_Wide_Character'Val (16#002C41#), when 16#00A79A# => Wide_Wide_Character'Val (16#00A79B#), when 16#00AB96# => Wide_Wide_Character'Val (16#0013C6#), when 16#016E52# => Wide_Wide_Character'Val (16#016E72#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_3E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00013F# => Wide_Wide_Character'Val (16#000140#), when 16#00053B# => Wide_Wide_Character'Val (16#00056B#), when 16#001E20# => Wide_Wide_Character'Val (16#001E21#), when 16#002C12# => Wide_Wide_Character'Val (16#002C42#), when 16#00A698# => Wide_Wide_Character'Val (16#00A699#), when 16#00AB95# => Wide_Wide_Character'Val (16#0013C5#), when 16#016E51# => Wide_Wide_Character'Val (16#016E71#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_3F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00023D# => Wide_Wide_Character'Val (16#00019A#), when 16#00053A# => Wide_Wide_Character'Val (16#00056A#), when 16#002C13# => Wide_Wide_Character'Val (16#002C43#), when 16#00A798# => Wide_Wide_Character'Val (16#00A799#), when 16#00AB94# => Wide_Wide_Character'Val (16#0013C4#), when 16#016E50# => Wide_Wide_Character'Val (16#016E70#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_40 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000141# => Wide_Wide_Character'Val (16#000142#), when 16#000545# => Wide_Wide_Character'Val (16#000575#), when 16#001E5E# => Wide_Wide_Character'Val (16#001E5F#), when 16#001F5F# => Wide_Wide_Character'Val (16#001F57#), when 16#002161# => Wide_Wide_Character'Val (16#002171#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_41 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000041# => Wide_Wide_Character'Val (16#000061#), when 16#000243# => Wide_Wide_Character'Val (16#000180#), when 16#000544# => Wide_Wide_Character'Val (16#000574#), when 16#002160# => Wide_Wide_Character'Val (16#002170#), when 16#002C6D# => Wide_Wide_Character'Val (16#000251#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_42 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000042# => Wide_Wide_Character'Val (16#000062#), when 16#000143# => Wide_Wide_Character'Val (16#000144#), when 16#000547# => Wide_Wide_Character'Val (16#000577#), when 16#001E5C# => Wide_Wide_Character'Val (16#001E5D#), when 16#001F5D# => Wide_Wide_Character'Val (16#001F55#), when 16#002163# => Wide_Wide_Character'Val (16#002173#), when 16#002C6E# => Wide_Wide_Character'Val (16#000271#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_43 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000043# => Wide_Wide_Character'Val (16#000063#), when 16#000241# => Wide_Wide_Character'Val (16#000242#), when 16#000546# => Wide_Wide_Character'Val (16#000576#), when 16#002162# => Wide_Wide_Character'Val (16#002172#), when 16#002C6F# => Wide_Wide_Character'Val (16#000250#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_44 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000044# => Wide_Wide_Character'Val (16#000064#), when 16#000145# => Wide_Wide_Character'Val (16#000146#), when 16#000246# => Wide_Wide_Character'Val (16#000247#), when 16#000541# => Wide_Wide_Character'Val (16#000571#), when 16#001E5A# => Wide_Wide_Character'Val (16#001E5B#), when 16#001F5B# => Wide_Wide_Character'Val (16#001F53#), when 16#002165# => Wide_Wide_Character'Val (16#002175#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_45 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000045# => Wide_Wide_Character'Val (16#000065#), when 16#000540# => Wide_Wide_Character'Val (16#000570#), when 16#002164# => Wide_Wide_Character'Val (16#002174#), when 16#002C69# => Wide_Wide_Character'Val (16#002C6A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_46 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000046# => Wide_Wide_Character'Val (16#000066#), when 16#000147# => Wide_Wide_Character'Val (16#000148#), when 16#000244# => Wide_Wide_Character'Val (16#000289#), when 16#000345# => Wide_Wide_Character'Val (16#0003B9#), when 16#000543# => Wide_Wide_Character'Val (16#000573#), when 16#001E58# => Wide_Wide_Character'Val (16#001E59#), when 16#001F59# => Wide_Wide_Character'Val (16#001F51#), when 16#002167# => Wide_Wide_Character'Val (16#002177#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_47 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000047# => Wide_Wide_Character'Val (16#000067#), when 16#000245# => Wide_Wide_Character'Val (16#00028C#), when 16#000542# => Wide_Wide_Character'Val (16#000572#), when 16#002166# => Wide_Wide_Character'Val (16#002176#), when 16#002C6B# => Wide_Wide_Character'Val (16#002C6C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_48 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000048# => Wide_Wide_Character'Val (16#000068#), when 16#00024A# => Wide_Wide_Character'Val (16#00024B#), when 16#00054D# => Wide_Wide_Character'Val (16#00057D#), when 16#001E56# => Wide_Wide_Character'Val (16#001E57#), when 16#002169# => Wide_Wide_Character'Val (16#002179#), when 16#002C64# => Wide_Wide_Character'Val (16#00027D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_49 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000049# => Wide_Wide_Character'Val (16#000069#), when 16#00054C# => Wide_Wide_Character'Val (16#00057C#), when 16#002168# => Wide_Wide_Character'Val (16#002178#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_4A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00004A# => Wide_Wide_Character'Val (16#00006A#), when 16#000248# => Wide_Wide_Character'Val (16#000249#), when 16#00054F# => Wide_Wide_Character'Val (16#00057F#), when 16#001E54# => Wide_Wide_Character'Val (16#001E55#), when 16#00216B# => Wide_Wide_Character'Val (16#00217B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_4B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00004B# => Wide_Wide_Character'Val (16#00006B#), when 16#00014A# => Wide_Wide_Character'Val (16#00014B#), when 16#00054E# => Wide_Wide_Character'Val (16#00057E#), when 16#00216A# => Wide_Wide_Character'Val (16#00217A#), when 16#002C67# => Wide_Wide_Character'Val (16#002C68#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_4C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00004C# => Wide_Wide_Character'Val (16#00006C#), when 16#00024E# => Wide_Wide_Character'Val (16#00024F#), when 16#000549# => Wide_Wide_Character'Val (16#000579#), when 16#001E52# => Wide_Wide_Character'Val (16#001E53#), when 16#00216D# => Wide_Wide_Character'Val (16#00217D#), when 16#002C60# => Wide_Wide_Character'Val (16#002C61#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_4D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00004D# => Wide_Wide_Character'Val (16#00006D#), when 16#00014C# => Wide_Wide_Character'Val (16#00014D#), when 16#000548# => Wide_Wide_Character'Val (16#000578#), when 16#00216C# => Wide_Wide_Character'Val (16#00217C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_4E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00004E# => Wide_Wide_Character'Val (16#00006E#), when 16#00024C# => Wide_Wide_Character'Val (16#00024D#), when 16#00054B# => Wide_Wide_Character'Val (16#00057B#), when 16#001E50# => Wide_Wide_Character'Val (16#001E51#), when 16#00216F# => Wide_Wide_Character'Val (16#00217F#), when 16#002C62# => Wide_Wide_Character'Val (16#00026B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_4F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00004F# => Wide_Wide_Character'Val (16#00006F#), when 16#00014E# => Wide_Wide_Character'Val (16#00014F#), when 16#00054A# => Wide_Wide_Character'Val (16#00057A#), when 16#00216E# => Wide_Wide_Character'Val (16#00217E#), when 16#002C63# => Wide_Wide_Character'Val (16#001D7D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_50 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000050# => Wide_Wide_Character'Val (16#000070#), when 16#000555# => Wide_Wide_Character'Val (16#000585#), when 16#001E4E# => Wide_Wide_Character'Val (16#001E4F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_51 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000051# => Wide_Wide_Character'Val (16#000071#), when 16#000150# => Wide_Wide_Character'Val (16#000151#), when 16#000554# => Wide_Wide_Character'Val (16#000584#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_52 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000052# => Wide_Wide_Character'Val (16#000072#), when 16#001E4C# => Wide_Wide_Character'Val (16#001E4D#), when 16#001F4D# => Wide_Wide_Character'Val (16#001F45#), when 16#002C7E# => Wide_Wide_Character'Val (16#00023F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_53 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000053# => Wide_Wide_Character'Val (16#000073#), when 16#000152# => Wide_Wide_Character'Val (16#000153#), when 16#000556# => Wide_Wide_Character'Val (16#000586#), when 16#001F4C# => Wide_Wide_Character'Val (16#001F44#), when 16#002C7F# => Wide_Wide_Character'Val (16#000240#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_54 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000054# => Wide_Wide_Character'Val (16#000074#), when 16#000551# => Wide_Wide_Character'Val (16#000581#), when 16#001E4A# => Wide_Wide_Character'Val (16#001E4B#), when 16#001F4B# => Wide_Wide_Character'Val (16#001F43#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_55 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000055# => Wide_Wide_Character'Val (16#000075#), when 16#000154# => Wide_Wide_Character'Val (16#000155#), when 16#000550# => Wide_Wide_Character'Val (16#000580#), when 16#001F4A# => Wide_Wide_Character'Val (16#001F42#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_56 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000056# => Wide_Wide_Character'Val (16#000076#), when 16#000553# => Wide_Wide_Character'Val (16#000583#), when 16#001E48# => Wide_Wide_Character'Val (16#001E49#), when 16#001F49# => Wide_Wide_Character'Val (16#001F41#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_57 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000057# => Wide_Wide_Character'Val (16#000077#), when 16#000156# => Wide_Wide_Character'Val (16#000157#), when 16#000552# => Wide_Wide_Character'Val (16#000582#), when 16#001F48# => Wide_Wide_Character'Val (16#001F40#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_58 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000058# => Wide_Wide_Character'Val (16#000078#), when 16#001E46# => Wide_Wide_Character'Val (16#001E47#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_59 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000059# => Wide_Wide_Character'Val (16#000079#), when 16#000158# => Wide_Wide_Character'Val (16#000159#), when 16#002C75# => Wide_Wide_Character'Val (16#002C76#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_5A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00005A# => Wide_Wide_Character'Val (16#00007A#), when 16#001E44# => Wide_Wide_Character'Val (16#001E45#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_5B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00015A# => Wide_Wide_Character'Val (16#00015B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_5C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#001E42# => Wide_Wide_Character'Val (16#001E43#), when 16#002C70# => Wide_Wide_Character'Val (16#000252#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_5D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00015C# => Wide_Wide_Character'Val (16#00015D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_5E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#001E40# => Wide_Wide_Character'Val (16#001E41#), when 16#002C72# => Wide_Wide_Character'Val (16#002C73#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_5F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00015E# => Wide_Wide_Character'Val (16#00015F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_60 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000464# => Wide_Wide_Character'Val (16#000465#), when 16#001E7E# => Wide_Wide_Character'Val (16#001E7F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_61 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000160# => Wide_Wide_Character'Val (16#000161#), when 16#00A7C6# => Wide_Wide_Character'Val (16#001D8E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_62 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000466# => Wide_Wide_Character'Val (16#000467#), when 16#001E7C# => Wide_Wide_Character'Val (16#001E7D#), when 16#00A7C5# => Wide_Wide_Character'Val (16#000282#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_63 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000162# => Wide_Wide_Character'Val (16#000163#), when 16#00A7C4# => Wide_Wide_Character'Val (16#00A794#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_64 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000460# => Wide_Wide_Character'Val (16#000461#), when 16#001E7A# => Wide_Wide_Character'Val (16#001E7B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_65 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000164# => Wide_Wide_Character'Val (16#000165#), when 16#00A7C2# => Wide_Wide_Character'Val (16#00A7C3#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_66 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000462# => Wide_Wide_Character'Val (16#000463#), when 16#001E78# => Wide_Wide_Character'Val (16#001E79#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_67 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000166# => Wide_Wide_Character'Val (16#000167#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_68 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00046C# => Wide_Wide_Character'Val (16#00046D#), when 16#001E76# => Wide_Wide_Character'Val (16#001E77#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_69 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000168# => Wide_Wide_Character'Val (16#000169#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_6A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00046E# => Wide_Wide_Character'Val (16#00046F#), when 16#001E74# => Wide_Wide_Character'Val (16#001E75#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_6B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00016A# => Wide_Wide_Character'Val (16#00016B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_6C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000468# => Wide_Wide_Character'Val (16#000469#), when 16#001E72# => Wide_Wide_Character'Val (16#001E73#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_6D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00016C# => Wide_Wide_Character'Val (16#00016D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_6E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00046A# => Wide_Wide_Character'Val (16#00046B#), when 16#001E70# => Wide_Wide_Character'Val (16#001E71#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_6F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00016E# => Wide_Wide_Character'Val (16#00016F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_70 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000474# => Wide_Wide_Character'Val (16#000475#), when 16#001E6E# => Wide_Wide_Character'Val (16#001E6F#), when 16#001F6F# => Wide_Wide_Character'Val (16#001F67#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_71 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000170# => Wide_Wide_Character'Val (16#000171#), when 16#000372# => Wide_Wide_Character'Val (16#000373#), when 16#001F6E# => Wide_Wide_Character'Val (16#001F66#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_72 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000476# => Wide_Wide_Character'Val (16#000477#), when 16#001E6C# => Wide_Wide_Character'Val (16#001E6D#), when 16#001F6D# => Wide_Wide_Character'Val (16#001F65#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_73 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000172# => Wide_Wide_Character'Val (16#000173#), when 16#000370# => Wide_Wide_Character'Val (16#000371#), when 16#001F6C# => Wide_Wide_Character'Val (16#001F64#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_74 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000470# => Wide_Wide_Character'Val (16#000471#), when 16#001E6A# => Wide_Wide_Character'Val (16#001E6B#), when 16#001F6B# => Wide_Wide_Character'Val (16#001F63#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_75 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000174# => Wide_Wide_Character'Val (16#000175#), when 16#000376# => Wide_Wide_Character'Val (16#000377#), when 16#001F6A# => Wide_Wide_Character'Val (16#001F62#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_76 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000472# => Wide_Wide_Character'Val (16#000473#), when 16#001E68# => Wide_Wide_Character'Val (16#001E69#), when 16#001F69# => Wide_Wide_Character'Val (16#001F61#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_77 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000176# => Wide_Wide_Character'Val (16#000177#), when 16#001F68# => Wide_Wide_Character'Val (16#001F60#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_78 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000179# => Wide_Wide_Character'Val (16#00017A#), when 16#00047C# => Wide_Wide_Character'Val (16#00047D#), when 16#001E66# => Wide_Wide_Character'Val (16#001E67#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_79 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000178# => Wide_Wide_Character'Val (16#0000FF#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_7A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00017B# => Wide_Wide_Character'Val (16#00017C#), when 16#00047E# => Wide_Wide_Character'Val (16#00047F#), when 16#001E64# => Wide_Wide_Character'Val (16#001E65#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_7B (C: Codepoint) return Wide_Wide_Character is (Wide_Wide_Character'Val (C)) with Inline; function Bucket_7C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00017D# => Wide_Wide_Character'Val (16#00017E#), when 16#00037F# => Wide_Wide_Character'Val (16#0003F3#), when 16#000478# => Wide_Wide_Character'Val (16#000479#), when 16#001E62# => Wide_Wide_Character'Val (16#001E63#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_7D (C: Codepoint) return Wide_Wide_Character is (Wide_Wide_Character'Val (C)) with Inline; function Bucket_7E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00017F# => Wide_Wide_Character'Val (16#000073#), when 16#00047A# => Wide_Wide_Character'Val (16#00047B#), when 16#001E60# => Wide_Wide_Character'Val (16#001E61#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_7F (C: Codepoint) return Wide_Wide_Character is (Wide_Wide_Character'Val (C)) with Inline; function Bucket_80 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000181# => Wide_Wide_Character'Val (16#000253#), when 16#001C9C# => Wide_Wide_Character'Val (16#0010DC#), when 16#001E9E# => Wide_Wide_Character'Val (16#0000DF#), when 16#001F9F# => Wide_Wide_Character'Val (16#001F97#), when 16#002CAC# => Wide_Wide_Character'Val (16#002CAD#), when 16#010C8D# => Wide_Wide_Character'Val (16#010CCD#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_81 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#001C9D# => Wide_Wide_Character'Val (16#0010DD#), when 16#001F9E# => Wide_Wide_Character'Val (16#001F96#), when 16#00A726# => Wide_Wide_Character'Val (16#00A727#), when 16#010C8C# => Wide_Wide_Character'Val (16#010CCC#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_82 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#001C9E# => Wide_Wide_Character'Val (16#0010DE#), when 16#001F9D# => Wide_Wide_Character'Val (16#001F95#), when 16#002CAE# => Wide_Wide_Character'Val (16#002CAF#), when 16#010C8F# => Wide_Wide_Character'Val (16#010CCF#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_83 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000182# => Wide_Wide_Character'Val (16#000183#), when 16#001C9F# => Wide_Wide_Character'Val (16#0010DF#), when 16#001F9C# => Wide_Wide_Character'Val (16#001F94#), when 16#00A724# => Wide_Wide_Character'Val (16#00A725#), when 16#010C8E# => Wide_Wide_Character'Val (16#010CCE#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_84 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000480# => Wide_Wide_Character'Val (16#000481#), when 16#001C98# => Wide_Wide_Character'Val (16#0010D8#), when 16#001F9B# => Wide_Wide_Character'Val (16#001F93#), when 16#002CA8# => Wide_Wide_Character'Val (16#002CA9#), when 16#010C89# => Wide_Wide_Character'Val (16#010CC9#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_85 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000184# => Wide_Wide_Character'Val (16#000185#), when 16#000386# => Wide_Wide_Character'Val (16#0003AC#), when 16#001C99# => Wide_Wide_Character'Val (16#0010D9#), when 16#001E9B# => Wide_Wide_Character'Val (16#001E61#), when 16#001F9A# => Wide_Wide_Character'Val (16#001F92#), when 16#00A722# => Wide_Wide_Character'Val (16#00A723#), when 16#010C88# => Wide_Wide_Character'Val (16#010CC8#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_86 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000187# => Wide_Wide_Character'Val (16#000188#), when 16#001C9A# => Wide_Wide_Character'Val (16#0010DA#), when 16#001F99# => Wide_Wide_Character'Val (16#001F91#), when 16#002CAA# => Wide_Wide_Character'Val (16#002CAB#), when 16#010C8B# => Wide_Wide_Character'Val (16#010CCB#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_87 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000186# => Wide_Wide_Character'Val (16#000254#), when 16#001C9B# => Wide_Wide_Character'Val (16#0010DB#), when 16#001F98# => Wide_Wide_Character'Val (16#001F90#), when 16#010C8A# => Wide_Wide_Character'Val (16#010CCA#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_88 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000189# => Wide_Wide_Character'Val (16#000256#), when 16#00048C# => Wide_Wide_Character'Val (16#00048D#), when 16#001C94# => Wide_Wide_Character'Val (16#0010D4#), when 16#002CA4# => Wide_Wide_Character'Val (16#002CA5#), when 16#010C85# => Wide_Wide_Character'Val (16#010CC5#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_89 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00038A# => Wide_Wide_Character'Val (16#0003AF#), when 16#001C95# => Wide_Wide_Character'Val (16#0010D5#), when 16#00A72E# => Wide_Wide_Character'Val (16#00A72F#), when 16#010C84# => Wide_Wide_Character'Val (16#010CC4#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_8A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00018B# => Wide_Wide_Character'Val (16#00018C#), when 16#000389# => Wide_Wide_Character'Val (16#0003AE#), when 16#00048E# => Wide_Wide_Character'Val (16#00048F#), when 16#001C96# => Wide_Wide_Character'Val (16#0010D6#), when 16#001E94# => Wide_Wide_Character'Val (16#001E95#), when 16#002CA6# => Wide_Wide_Character'Val (16#002CA7#), when 16#010C87# => Wide_Wide_Character'Val (16#010CC7#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_8B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00018A# => Wide_Wide_Character'Val (16#000257#), when 16#000388# => Wide_Wide_Character'Val (16#0003AD#), when 16#001C97# => Wide_Wide_Character'Val (16#0010D7#), when 16#00A72C# => Wide_Wide_Character'Val (16#00A72D#), when 16#010C86# => Wide_Wide_Character'Val (16#010CC6#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_8C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00038F# => Wide_Wide_Character'Val (16#0003CE#), when 16#001C90# => Wide_Wide_Character'Val (16#0010D0#), when 16#001E92# => Wide_Wide_Character'Val (16#001E93#), when 16#002CA0# => Wide_Wide_Character'Val (16#002CA1#), when 16#010C81# => Wide_Wide_Character'Val (16#010CC1#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_8D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00038E# => Wide_Wide_Character'Val (16#0003CD#), when 16#001C91# => Wide_Wide_Character'Val (16#0010D1#), when 16#00A72A# => Wide_Wide_Character'Val (16#00A72B#), when 16#010C80# => Wide_Wide_Character'Val (16#010CC0#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_8E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00018F# => Wide_Wide_Character'Val (16#000259#), when 16#00048A# => Wide_Wide_Character'Val (16#00048B#), when 16#001C92# => Wide_Wide_Character'Val (16#0010D2#), when 16#001E90# => Wide_Wide_Character'Val (16#001E91#), when 16#002CA2# => Wide_Wide_Character'Val (16#002CA3#), when 16#010C83# => Wide_Wide_Character'Val (16#010CC3#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_8F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00018E# => Wide_Wide_Character'Val (16#0001DD#), when 16#00038C# => Wide_Wide_Character'Val (16#0003CC#), when 16#001C93# => Wide_Wide_Character'Val (16#0010D3#), when 16#00A728# => Wide_Wide_Character'Val (16#00A729#), when 16#010C82# => Wide_Wide_Character'Val (16#010CC2#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_90 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000191# => Wide_Wide_Character'Val (16#000192#), when 16#000393# => Wide_Wide_Character'Val (16#0003B3#), when 16#000494# => Wide_Wide_Character'Val (16#000495#), when 16#001E8E# => Wide_Wide_Character'Val (16#001E8F#), when 16#001F8F# => Wide_Wide_Character'Val (16#001F87#), when 16#002CBC# => Wide_Wide_Character'Val (16#002CBD#), when 16#010C9D# => Wide_Wide_Character'Val (16#010CDD#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_91 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000190# => Wide_Wide_Character'Val (16#00025B#), when 16#000392# => Wide_Wide_Character'Val (16#0003B2#), when 16#001F8E# => Wide_Wide_Character'Val (16#001F86#), when 16#00A736# => Wide_Wide_Character'Val (16#00A737#), when 16#010C9C# => Wide_Wide_Character'Val (16#010CDC#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_92 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000193# => Wide_Wide_Character'Val (16#000260#), when 16#000391# => Wide_Wide_Character'Val (16#0003B1#), when 16#000496# => Wide_Wide_Character'Val (16#000497#), when 16#001E8C# => Wide_Wide_Character'Val (16#001E8D#), when 16#001F8D# => Wide_Wide_Character'Val (16#001F85#), when 16#0024B6# => Wide_Wide_Character'Val (16#0024D0#), when 16#002CBE# => Wide_Wide_Character'Val (16#002CBF#), when 16#010C9F# => Wide_Wide_Character'Val (16#010CDF#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_93 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#001F8C# => Wide_Wide_Character'Val (16#001F84#), when 16#0024B7# => Wide_Wide_Character'Val (16#0024D1#), when 16#00A734# => Wide_Wide_Character'Val (16#00A735#), when 16#010C9E# => Wide_Wide_Character'Val (16#010CDE#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_94 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000397# => Wide_Wide_Character'Val (16#0003B7#), when 16#000490# => Wide_Wide_Character'Val (16#000491#), when 16#001C88# => Wide_Wide_Character'Val (16#00A64B#), when 16#001E8A# => Wide_Wide_Character'Val (16#001E8B#), when 16#001F8B# => Wide_Wide_Character'Val (16#001F83#), when 16#002CB8# => Wide_Wide_Character'Val (16#002CB9#), when 16#010C99# => Wide_Wide_Character'Val (16#010CD9#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_95 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000194# => Wide_Wide_Character'Val (16#000263#), when 16#000396# => Wide_Wide_Character'Val (16#0003B6#), when 16#001F8A# => Wide_Wide_Character'Val (16#001F82#), when 16#00A732# => Wide_Wide_Character'Val (16#00A733#), when 16#010C98# => Wide_Wide_Character'Val (16#010CD8#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_96 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000197# => Wide_Wide_Character'Val (16#000268#), when 16#000395# => Wide_Wide_Character'Val (16#0003B5#), when 16#000492# => Wide_Wide_Character'Val (16#000493#), when 16#001E88# => Wide_Wide_Character'Val (16#001E89#), when 16#001F89# => Wide_Wide_Character'Val (16#001F81#), when 16#002CBA# => Wide_Wide_Character'Val (16#002CBB#), when 16#010C9B# => Wide_Wide_Character'Val (16#010CDB#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_97 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000196# => Wide_Wide_Character'Val (16#000269#), when 16#000394# => Wide_Wide_Character'Val (16#0003B4#), when 16#001F88# => Wide_Wide_Character'Val (16#001F80#), when 16#010C9A# => Wide_Wide_Character'Val (16#010CDA#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_98 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00039B# => Wide_Wide_Character'Val (16#0003BB#), when 16#00049C# => Wide_Wide_Character'Val (16#00049D#), when 16#001C84# => Wide_Wide_Character'Val (16#000442#), when 16#001E86# => Wide_Wide_Character'Val (16#001E87#), when 16#0024BC# => Wide_Wide_Character'Val (16#0024D6#), when 16#002CB4# => Wide_Wide_Character'Val (16#002CB5#), when 16#010C95# => Wide_Wide_Character'Val (16#010CD5#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_99 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000198# => Wide_Wide_Character'Val (16#000199#), when 16#00039A# => Wide_Wide_Character'Val (16#0003BA#), when 16#001C85# => Wide_Wide_Character'Val (16#000442#), when 16#0024BD# => Wide_Wide_Character'Val (16#0024D7#), when 16#00A73E# => Wide_Wide_Character'Val (16#00A73F#), when 16#010C94# => Wide_Wide_Character'Val (16#010CD4#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_9A (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000399# => Wide_Wide_Character'Val (16#0003B9#), when 16#00049E# => Wide_Wide_Character'Val (16#00049F#), when 16#001C86# => Wide_Wide_Character'Val (16#00044A#), when 16#001E84# => Wide_Wide_Character'Val (16#001E85#), when 16#0024BE# => Wide_Wide_Character'Val (16#0024D8#), when 16#002CB6# => Wide_Wide_Character'Val (16#002CB7#), when 16#010C97# => Wide_Wide_Character'Val (16#010CD7#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_9B (C: Codepoint) return Wide_Wide_Character is (case C is when 16#000398# => Wide_Wide_Character'Val (16#0003B8#), when 16#001C87# => Wide_Wide_Character'Val (16#000463#), when 16#0024BF# => Wide_Wide_Character'Val (16#0024D9#), when 16#00A73C# => Wide_Wide_Character'Val (16#00A73D#), when 16#010C96# => Wide_Wide_Character'Val (16#010CD6#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_9C (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00019D# => Wide_Wide_Character'Val (16#000272#), when 16#00039F# => Wide_Wide_Character'Val (16#0003BF#), when 16#000498# => Wide_Wide_Character'Val (16#000499#), when 16#001C80# => Wide_Wide_Character'Val (16#000432#), when 16#001E82# => Wide_Wide_Character'Val (16#001E83#), when 16#0024B8# => Wide_Wide_Character'Val (16#0024D2#), when 16#002CB0# => Wide_Wide_Character'Val (16#002CB1#), when 16#010C91# => Wide_Wide_Character'Val (16#010CD1#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_9D (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00019C# => Wide_Wide_Character'Val (16#00026F#), when 16#00039E# => Wide_Wide_Character'Val (16#0003BE#), when 16#001C81# => Wide_Wide_Character'Val (16#000434#), when 16#0024B9# => Wide_Wide_Character'Val (16#0024D3#), when 16#00A73A# => Wide_Wide_Character'Val (16#00A73B#), when 16#010C90# => Wide_Wide_Character'Val (16#010CD0#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_9E (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00019F# => Wide_Wide_Character'Val (16#000275#), when 16#00039D# => Wide_Wide_Character'Val (16#0003BD#), when 16#00049A# => Wide_Wide_Character'Val (16#00049B#), when 16#001C82# => Wide_Wide_Character'Val (16#00043E#), when 16#001E80# => Wide_Wide_Character'Val (16#001E81#), when 16#0024BA# => Wide_Wide_Character'Val (16#0024D4#), when 16#002CB2# => Wide_Wide_Character'Val (16#002CB3#), when 16#010C93# => Wide_Wide_Character'Val (16#010CD3#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_9F (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00039C# => Wide_Wide_Character'Val (16#0003BC#), when 16#001C83# => Wide_Wide_Character'Val (16#000441#), when 16#0024BB# => Wide_Wide_Character'Val (16#0024D5#), when 16#00A738# => Wide_Wide_Character'Val (16#00A739#), when 16#010C92# => Wide_Wide_Character'Val (16#010CD2#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A0 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003A3# => Wide_Wide_Character'Val (16#0003C3#), when 16#0004A4# => Wide_Wide_Character'Val (16#0004A5#), when 16#0010B0# => Wide_Wide_Character'Val (16#002D10#), when 16#001EBE# => Wide_Wide_Character'Val (16#001EBF#), when 16#002C8C# => Wide_Wide_Character'Val (16#002C8D#), when 16#010CAD# => Wide_Wide_Character'Val (16#010CED#), when 16#0118B9# => Wide_Wide_Character'Val (16#0118D9#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A1 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001A0# => Wide_Wide_Character'Val (16#0001A1#), when 16#0010B1# => Wide_Wide_Character'Val (16#002D11#), when 16#001CBD# => Wide_Wide_Character'Val (16#0010FD#), when 16#001FBE# => Wide_Wide_Character'Val (16#0003B9#), when 16#010CAC# => Wide_Wide_Character'Val (16#010CEC#), when 16#0118B8# => Wide_Wide_Character'Val (16#0118D8#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A2 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003A1# => Wide_Wide_Character'Val (16#0003C1#), when 16#0004A6# => Wide_Wide_Character'Val (16#0004A7#), when 16#0010B2# => Wide_Wide_Character'Val (16#002D12#), when 16#001CBE# => Wide_Wide_Character'Val (16#0010FE#), when 16#001EBC# => Wide_Wide_Character'Val (16#001EBD#), when 16#002183# => Wide_Wide_Character'Val (16#002184#), when 16#002C8E# => Wide_Wide_Character'Val (16#002C8F#), when 16#010CAF# => Wide_Wide_Character'Val (16#010CEF#), when 16#0118BB# => Wide_Wide_Character'Val (16#0118DB#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A3 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001A2# => Wide_Wide_Character'Val (16#0001A3#), when 16#0003A0# => Wide_Wide_Character'Val (16#0003C0#), when 16#0010B3# => Wide_Wide_Character'Val (16#002D13#), when 16#001CBF# => Wide_Wide_Character'Val (16#0010FF#), when 16#001FBC# => Wide_Wide_Character'Val (16#001FB3#), when 16#010CAE# => Wide_Wide_Character'Val (16#010CEE#), when 16#0118BA# => Wide_Wide_Character'Val (16#0118DA#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A4 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003A7# => Wide_Wide_Character'Val (16#0003C7#), when 16#0004A0# => Wide_Wide_Character'Val (16#0004A1#), when 16#0010B4# => Wide_Wide_Character'Val (16#002D14#), when 16#001CB8# => Wide_Wide_Character'Val (16#0010F8#), when 16#001EBA# => Wide_Wide_Character'Val (16#001EBB#), when 16#001FBB# => Wide_Wide_Character'Val (16#001F71#), when 16#002C88# => Wide_Wide_Character'Val (16#002C89#), when 16#010CA9# => Wide_Wide_Character'Val (16#010CE9#), when 16#0118BD# => Wide_Wide_Character'Val (16#0118DD#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A5 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001A4# => Wide_Wide_Character'Val (16#0001A5#), when 16#0003A6# => Wide_Wide_Character'Val (16#0003C6#), when 16#0010B5# => Wide_Wide_Character'Val (16#002D15#), when 16#001CB9# => Wide_Wide_Character'Val (16#0010F9#), when 16#001FBA# => Wide_Wide_Character'Val (16#001F70#), when 16#010CA8# => Wide_Wide_Character'Val (16#010CE8#), when 16#0118BC# => Wide_Wide_Character'Val (16#0118DC#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A6 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001A7# => Wide_Wide_Character'Val (16#0001A8#), when 16#0003A5# => Wide_Wide_Character'Val (16#0003C5#), when 16#0004A2# => Wide_Wide_Character'Val (16#0004A3#), when 16#0010B6# => Wide_Wide_Character'Val (16#002D16#), when 16#001CBA# => Wide_Wide_Character'Val (16#0010FA#), when 16#001EB8# => Wide_Wide_Character'Val (16#001EB9#), when 16#001FB9# => Wide_Wide_Character'Val (16#001FB1#), when 16#002C8A# => Wide_Wide_Character'Val (16#002C8B#), when 16#010CAB# => Wide_Wide_Character'Val (16#010CEB#), when 16#0118BF# => Wide_Wide_Character'Val (16#0118DF#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A7 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001A6# => Wide_Wide_Character'Val (16#000280#), when 16#0003A4# => Wide_Wide_Character'Val (16#0003C4#), when 16#0010B7# => Wide_Wide_Character'Val (16#002D17#), when 16#001FB8# => Wide_Wide_Character'Val (16#001FB0#), when 16#010CAA# => Wide_Wide_Character'Val (16#010CEA#), when 16#0118BE# => Wide_Wide_Character'Val (16#0118DE#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A8 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001A9# => Wide_Wide_Character'Val (16#000283#), when 16#0003AB# => Wide_Wide_Character'Val (16#0003CB#), when 16#0004AC# => Wide_Wide_Character'Val (16#0004AD#), when 16#0010B8# => Wide_Wide_Character'Val (16#002D18#), when 16#001CB4# => Wide_Wide_Character'Val (16#0010F4#), when 16#001EB6# => Wide_Wide_Character'Val (16#001EB7#), when 16#002C84# => Wide_Wide_Character'Val (16#002C85#), when 16#010CA5# => Wide_Wide_Character'Val (16#010CE5#), when 16#0118B1# => Wide_Wide_Character'Val (16#0118D1#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_A9 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003AA# => Wide_Wide_Character'Val (16#0003CA#), when 16#0010B9# => Wide_Wide_Character'Val (16#002D19#), when 16#001CB5# => Wide_Wide_Character'Val (16#0010F5#), when 16#010CA4# => Wide_Wide_Character'Val (16#010CE4#), when 16#0118B0# => Wide_Wide_Character'Val (16#0118D0#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_AA (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003A9# => Wide_Wide_Character'Val (16#0003C9#), when 16#0004AE# => Wide_Wide_Character'Val (16#0004AF#), when 16#0010BA# => Wide_Wide_Character'Val (16#002D1A#), when 16#001CB6# => Wide_Wide_Character'Val (16#0010F6#), when 16#001EB4# => Wide_Wide_Character'Val (16#001EB5#), when 16#002C86# => Wide_Wide_Character'Val (16#002C87#), when 16#010CA7# => Wide_Wide_Character'Val (16#010CE7#), when 16#0118B3# => Wide_Wide_Character'Val (16#0118D3#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_AB (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003A8# => Wide_Wide_Character'Val (16#0003C8#), when 16#0010BB# => Wide_Wide_Character'Val (16#002D1B#), when 16#001CB7# => Wide_Wide_Character'Val (16#0010F7#), when 16#010CA6# => Wide_Wide_Character'Val (16#010CE6#), when 16#0118B2# => Wide_Wide_Character'Val (16#0118D2#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_AC (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004A8# => Wide_Wide_Character'Val (16#0004A9#), when 16#0010BC# => Wide_Wide_Character'Val (16#002D1C#), when 16#001CB0# => Wide_Wide_Character'Val (16#0010F0#), when 16#001EB2# => Wide_Wide_Character'Val (16#001EB3#), when 16#002C80# => Wide_Wide_Character'Val (16#002C81#), when 16#010CA1# => Wide_Wide_Character'Val (16#010CE1#), when 16#0118B5# => Wide_Wide_Character'Val (16#0118D5#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_AD (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001AC# => Wide_Wide_Character'Val (16#0001AD#), when 16#0010BD# => Wide_Wide_Character'Val (16#002D1D#), when 16#001CB1# => Wide_Wide_Character'Val (16#0010F1#), when 16#010CA0# => Wide_Wide_Character'Val (16#010CE0#), when 16#0118B4# => Wide_Wide_Character'Val (16#0118D4#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_AE (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001AF# => Wide_Wide_Character'Val (16#0001B0#), when 16#0004AA# => Wide_Wide_Character'Val (16#0004AB#), when 16#0010BE# => Wide_Wide_Character'Val (16#002D1E#), when 16#001CB2# => Wide_Wide_Character'Val (16#0010F2#), when 16#001EB0# => Wide_Wide_Character'Val (16#001EB1#), when 16#002C82# => Wide_Wide_Character'Val (16#002C83#), when 16#010CA3# => Wide_Wide_Character'Val (16#010CE3#), when 16#0118B7# => Wide_Wide_Character'Val (16#0118D7#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_AF (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001AE# => Wide_Wide_Character'Val (16#000288#), when 16#0010BF# => Wide_Wide_Character'Val (16#002D1F#), when 16#001CB3# => Wide_Wide_Character'Val (16#0010F3#), when 16#010CA2# => Wide_Wide_Character'Val (16#010CE2#), when 16#0118B6# => Wide_Wide_Character'Val (16#0118D6#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B0 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001B1# => Wide_Wide_Character'Val (16#00028A#), when 16#0004B4# => Wide_Wide_Character'Val (16#0004B5#), when 16#0010A0# => Wide_Wide_Character'Val (16#002D00#), when 16#001CAC# => Wide_Wide_Character'Val (16#0010EC#), when 16#001EAE# => Wide_Wide_Character'Val (16#001EAF#), when 16#001FAF# => Wide_Wide_Character'Val (16#001FA7#), when 16#002C9C# => Wide_Wide_Character'Val (16#002C9D#), when 16#0104B5# => Wide_Wide_Character'Val (16#0104DD#), when 16#0118A9# => Wide_Wide_Character'Val (16#0118C9#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B1 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0010A1# => Wide_Wide_Character'Val (16#002D01#), when 16#001CAD# => Wide_Wide_Character'Val (16#0010ED#), when 16#001FAE# => Wide_Wide_Character'Val (16#001FA6#), when 16#0104B4# => Wide_Wide_Character'Val (16#0104DC#), when 16#0118A8# => Wide_Wide_Character'Val (16#0118C8#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B2 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001B3# => Wide_Wide_Character'Val (16#0001B4#), when 16#0004B6# => Wide_Wide_Character'Val (16#0004B7#), when 16#0010A2# => Wide_Wide_Character'Val (16#002D02#), when 16#001CAE# => Wide_Wide_Character'Val (16#0010EE#), when 16#001EAC# => Wide_Wide_Character'Val (16#001EAD#), when 16#001FAD# => Wide_Wide_Character'Val (16#001FA5#), when 16#002C9E# => Wide_Wide_Character'Val (16#002C9F#), when 16#0104B7# => Wide_Wide_Character'Val (16#0104DF#), when 16#0118AB# => Wide_Wide_Character'Val (16#0118CB#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B3 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001B2# => Wide_Wide_Character'Val (16#00028B#), when 16#0010A3# => Wide_Wide_Character'Val (16#002D03#), when 16#001CAF# => Wide_Wide_Character'Val (16#0010EF#), when 16#001FAC# => Wide_Wide_Character'Val (16#001FA4#), when 16#0104B6# => Wide_Wide_Character'Val (16#0104DE#), when 16#0118AA# => Wide_Wide_Character'Val (16#0118CA#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B4 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001B5# => Wide_Wide_Character'Val (16#0001B6#), when 16#0004B0# => Wide_Wide_Character'Val (16#0004B1#), when 16#0010A4# => Wide_Wide_Character'Val (16#002D04#), when 16#001CA8# => Wide_Wide_Character'Val (16#0010E8#), when 16#001EAA# => Wide_Wide_Character'Val (16#001EAB#), when 16#001FAB# => Wide_Wide_Character'Val (16#001FA3#), when 16#002C98# => Wide_Wide_Character'Val (16#002C99#), when 16#0104B1# => Wide_Wide_Character'Val (16#0104D9#), when 16#0118AD# => Wide_Wide_Character'Val (16#0118CD#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B5 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000B5# => Wide_Wide_Character'Val (16#0003BC#), when 16#0010A5# => Wide_Wide_Character'Val (16#002D05#), when 16#001CA9# => Wide_Wide_Character'Val (16#0010E9#), when 16#001FAA# => Wide_Wide_Character'Val (16#001FA2#), when 16#0104B0# => Wide_Wide_Character'Val (16#0104D8#), when 16#0118AC# => Wide_Wide_Character'Val (16#0118CC#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B6 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001B7# => Wide_Wide_Character'Val (16#000292#), when 16#0004B2# => Wide_Wide_Character'Val (16#0004B3#), when 16#0010A6# => Wide_Wide_Character'Val (16#002D06#), when 16#001CAA# => Wide_Wide_Character'Val (16#0010EA#), when 16#001EA8# => Wide_Wide_Character'Val (16#001EA9#), when 16#001FA9# => Wide_Wide_Character'Val (16#001FA1#), when 16#002C9A# => Wide_Wide_Character'Val (16#002C9B#), when 16#0104B3# => Wide_Wide_Character'Val (16#0104DB#), when 16#0118AF# => Wide_Wide_Character'Val (16#0118CF#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B7 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0010A7# => Wide_Wide_Character'Val (16#002D07#), when 16#001CAB# => Wide_Wide_Character'Val (16#0010EB#), when 16#001FA8# => Wide_Wide_Character'Val (16#001FA0#), when 16#0104B2# => Wide_Wide_Character'Val (16#0104DA#), when 16#0118AE# => Wide_Wide_Character'Val (16#0118CE#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B8 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004BC# => Wide_Wide_Character'Val (16#0004BD#), when 16#0010A8# => Wide_Wide_Character'Val (16#002D08#), when 16#001CA4# => Wide_Wide_Character'Val (16#0010E4#), when 16#001EA6# => Wide_Wide_Character'Val (16#001EA7#), when 16#002C94# => Wide_Wide_Character'Val (16#002C95#), when 16#0104BD# => Wide_Wide_Character'Val (16#0104E5#), when 16#0118A1# => Wide_Wide_Character'Val (16#0118C1#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_B9 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001B8# => Wide_Wide_Character'Val (16#0001B9#), when 16#0010A9# => Wide_Wide_Character'Val (16#002D09#), when 16#001CA5# => Wide_Wide_Character'Val (16#0010E5#), when 16#0104BC# => Wide_Wide_Character'Val (16#0104E4#), when 16#0118A0# => Wide_Wide_Character'Val (16#0118C0#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_BA (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004BE# => Wide_Wide_Character'Val (16#0004BF#), when 16#0010AA# => Wide_Wide_Character'Val (16#002D0A#), when 16#001CA6# => Wide_Wide_Character'Val (16#0010E6#), when 16#001EA4# => Wide_Wide_Character'Val (16#001EA5#), when 16#002C96# => Wide_Wide_Character'Val (16#002C97#), when 16#0104BF# => Wide_Wide_Character'Val (16#0104E7#), when 16#0118A3# => Wide_Wide_Character'Val (16#0118C3#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_BB (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0010AB# => Wide_Wide_Character'Val (16#002D0B#), when 16#001CA7# => Wide_Wide_Character'Val (16#0010E7#), when 16#0104BE# => Wide_Wide_Character'Val (16#0104E6#), when 16#0118A2# => Wide_Wide_Character'Val (16#0118C2#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_BC (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004B8# => Wide_Wide_Character'Val (16#0004B9#), when 16#0010AC# => Wide_Wide_Character'Val (16#002D0C#), when 16#001CA0# => Wide_Wide_Character'Val (16#0010E0#), when 16#001EA2# => Wide_Wide_Character'Val (16#001EA3#), when 16#002C90# => Wide_Wide_Character'Val (16#002C91#), when 16#0104B9# => Wide_Wide_Character'Val (16#0104E1#), when 16#010CB1# => Wide_Wide_Character'Val (16#010CF1#), when 16#0118A5# => Wide_Wide_Character'Val (16#0118C5#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_BD (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001BC# => Wide_Wide_Character'Val (16#0001BD#), when 16#0010AD# => Wide_Wide_Character'Val (16#002D0D#), when 16#001CA1# => Wide_Wide_Character'Val (16#0010E1#), when 16#0104B8# => Wide_Wide_Character'Val (16#0104E0#), when 16#010CB0# => Wide_Wide_Character'Val (16#010CF0#), when 16#0118A4# => Wide_Wide_Character'Val (16#0118C4#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_BE (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004BA# => Wide_Wide_Character'Val (16#0004BB#), when 16#0010AE# => Wide_Wide_Character'Val (16#002D0E#), when 16#001CA2# => Wide_Wide_Character'Val (16#0010E2#), when 16#001EA0# => Wide_Wide_Character'Val (16#001EA1#), when 16#002C92# => Wide_Wide_Character'Val (16#002C93#), when 16#0104BB# => Wide_Wide_Character'Val (16#0104E3#), when 16#0118A7# => Wide_Wide_Character'Val (16#0118C7#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_BF (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0010AF# => Wide_Wide_Character'Val (16#002D0F#), when 16#001CA3# => Wide_Wide_Character'Val (16#0010E3#), when 16#0104BA# => Wide_Wide_Character'Val (16#0104E2#), when 16#010CB2# => Wide_Wide_Character'Val (16#010CF2#), when 16#0118A6# => Wide_Wide_Character'Val (16#0118C6#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C0 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C0# => Wide_Wide_Character'Val (16#0000E0#), when 16#001EDE# => Wide_Wide_Character'Val (16#001EDF#), when 16#00A666# => Wide_Wide_Character'Val (16#00A667#), when 16#0104C5# => Wide_Wide_Character'Val (16#0104ED#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C1 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C1# => Wide_Wide_Character'Val (16#0000E1#), when 16#0003C2# => Wide_Wide_Character'Val (16#0003C3#), when 16#0004C5# => Wide_Wide_Character'Val (16#0004C6#), when 16#002CED# => Wide_Wide_Character'Val (16#002CEE#), when 16#00A766# => Wide_Wide_Character'Val (16#00A767#), when 16#0104C4# => Wide_Wide_Character'Val (16#0104EC#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C2 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C2# => Wide_Wide_Character'Val (16#0000E2#), when 16#001EDC# => Wide_Wide_Character'Val (16#001EDD#), when 16#00A664# => Wide_Wide_Character'Val (16#00A665#), when 16#0104C7# => Wide_Wide_Character'Val (16#0104EF#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C3 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C3# => Wide_Wide_Character'Val (16#0000E3#), when 16#0004C7# => Wide_Wide_Character'Val (16#0004C8#), when 16#00A764# => Wide_Wide_Character'Val (16#00A765#), when 16#0104C6# => Wide_Wide_Character'Val (16#0104EE#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C4 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C4# => Wide_Wide_Character'Val (16#0000E4#), when 16#0001C5# => Wide_Wide_Character'Val (16#0001C6#), when 16#0004C0# => Wide_Wide_Character'Val (16#0004CF#), when 16#001EDA# => Wide_Wide_Character'Val (16#001EDB#), when 16#001FDB# => Wide_Wide_Character'Val (16#001F77#), when 16#00A662# => Wide_Wide_Character'Val (16#00A663#), when 16#0104C1# => Wide_Wide_Character'Val (16#0104E9#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C5 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C5# => Wide_Wide_Character'Val (16#0000E5#), when 16#0001C4# => Wide_Wide_Character'Val (16#0001C6#), when 16#0004C1# => Wide_Wide_Character'Val (16#0004C2#), when 16#001FDA# => Wide_Wide_Character'Val (16#001F76#), when 16#00A762# => Wide_Wide_Character'Val (16#00A763#), when 16#00FF3A# => Wide_Wide_Character'Val (16#00FF5A#), when 16#0104C0# => Wide_Wide_Character'Val (16#0104E8#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C6 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C6# => Wide_Wide_Character'Val (16#0000E6#), when 16#0001C7# => Wide_Wide_Character'Val (16#0001C9#), when 16#001ED8# => Wide_Wide_Character'Val (16#001ED9#), when 16#001FD9# => Wide_Wide_Character'Val (16#001FD1#), when 16#00A660# => Wide_Wide_Character'Val (16#00A661#), when 16#00FF39# => Wide_Wide_Character'Val (16#00FF59#), when 16#0104C3# => Wide_Wide_Character'Val (16#0104EB#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C7 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C7# => Wide_Wide_Character'Val (16#0000E7#), when 16#0004C3# => Wide_Wide_Character'Val (16#0004C4#), when 16#001FD8# => Wide_Wide_Character'Val (16#001FD0#), when 16#002CEB# => Wide_Wide_Character'Val (16#002CEC#), when 16#00A760# => Wide_Wide_Character'Val (16#00A761#), when 16#00FF38# => Wide_Wide_Character'Val (16#00FF58#), when 16#0104C2# => Wide_Wide_Character'Val (16#0104EA#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C8 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C8# => Wide_Wide_Character'Val (16#0000E8#), when 16#001ED6# => Wide_Wide_Character'Val (16#001ED7#), when 16#00FF37# => Wide_Wide_Character'Val (16#00FF57#), when 16#0104CD# => Wide_Wide_Character'Val (16#0104F5#), when 16#01E920# => Wide_Wide_Character'Val (16#01E942#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_C9 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000C9# => Wide_Wide_Character'Val (16#0000E9#), when 16#0001C8# => Wide_Wide_Character'Val (16#0001C9#), when 16#0004CD# => Wide_Wide_Character'Val (16#0004CE#), when 16#00A76E# => Wide_Wide_Character'Val (16#00A76F#), when 16#00FF36# => Wide_Wide_Character'Val (16#00FF56#), when 16#0104CC# => Wide_Wide_Character'Val (16#0104F4#), when 16#01E921# => Wide_Wide_Character'Val (16#01E943#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_CA (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000CA# => Wide_Wide_Character'Val (16#0000EA#), when 16#0001CB# => Wide_Wide_Character'Val (16#0001CC#), when 16#001ED4# => Wide_Wide_Character'Val (16#001ED5#), when 16#00A66C# => Wide_Wide_Character'Val (16#00A66D#), when 16#00FF35# => Wide_Wide_Character'Val (16#00FF55#), when 16#0104CF# => Wide_Wide_Character'Val (16#0104F7#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_CB (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000CB# => Wide_Wide_Character'Val (16#0000EB#), when 16#0001CA# => Wide_Wide_Character'Val (16#0001CC#), when 16#00A76C# => Wide_Wide_Character'Val (16#00A76D#), when 16#00FF34# => Wide_Wide_Character'Val (16#00FF54#), when 16#0104CE# => Wide_Wide_Character'Val (16#0104F6#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_CC (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000CC# => Wide_Wide_Character'Val (16#0000EC#), when 16#0001CD# => Wide_Wide_Character'Val (16#0001CE#), when 16#0003CF# => Wide_Wide_Character'Val (16#0003D7#), when 16#001ED2# => Wide_Wide_Character'Val (16#001ED3#), when 16#002CE0# => Wide_Wide_Character'Val (16#002CE1#), when 16#00A66A# => Wide_Wide_Character'Val (16#00A66B#), when 16#00FF33# => Wide_Wide_Character'Val (16#00FF53#), when 16#0104C9# => Wide_Wide_Character'Val (16#0104F1#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_CD (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000CD# => Wide_Wide_Character'Val (16#0000ED#), when 16#0004C9# => Wide_Wide_Character'Val (16#0004CA#), when 16#00A76A# => Wide_Wide_Character'Val (16#00A76B#), when 16#00FF32# => Wide_Wide_Character'Val (16#00FF52#), when 16#0104C8# => Wide_Wide_Character'Val (16#0104F0#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_CE (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000CE# => Wide_Wide_Character'Val (16#0000EE#), when 16#0001CF# => Wide_Wide_Character'Val (16#0001D0#), when 16#001ED0# => Wide_Wide_Character'Val (16#001ED1#), when 16#002CE2# => Wide_Wide_Character'Val (16#002CE3#), when 16#00A668# => Wide_Wide_Character'Val (16#00A669#), when 16#00FF31# => Wide_Wide_Character'Val (16#00FF51#), when 16#0104CB# => Wide_Wide_Character'Val (16#0104F3#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_CF (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000CF# => Wide_Wide_Character'Val (16#0000EF#), when 16#0004CB# => Wide_Wide_Character'Val (16#0004CC#), when 16#00A768# => Wide_Wide_Character'Val (16#00A769#), when 16#00FF30# => Wide_Wide_Character'Val (16#00FF50#), when 16#0104CA# => Wide_Wide_Character'Val (16#0104F2#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D0 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D0# => Wide_Wide_Character'Val (16#0000F0#), when 16#0001D1# => Wide_Wide_Character'Val (16#0001D2#), when 16#0004D4# => Wide_Wide_Character'Val (16#0004D5#), when 16#0010C0# => Wide_Wide_Character'Val (16#002D20#), when 16#001ECE# => Wide_Wide_Character'Val (16#001ECF#), when 16#00AB7B# => Wide_Wide_Character'Val (16#0013AB#), when 16#00FF2F# => Wide_Wide_Character'Val (16#00FF4F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D1 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D1# => Wide_Wide_Character'Val (16#0000F1#), when 16#0010C1# => Wide_Wide_Character'Val (16#002D21#), when 16#00AB7A# => Wide_Wide_Character'Val (16#0013AA#), when 16#00FF2E# => Wide_Wide_Character'Val (16#00FF4E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D2 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D2# => Wide_Wide_Character'Val (16#0000F2#), when 16#0001D3# => Wide_Wide_Character'Val (16#0001D4#), when 16#0003D1# => Wide_Wide_Character'Val (16#0003B8#), when 16#0004D6# => Wide_Wide_Character'Val (16#0004D7#), when 16#0010C2# => Wide_Wide_Character'Val (16#002D22#), when 16#001ECC# => Wide_Wide_Character'Val (16#001ECD#), when 16#00AB79# => Wide_Wide_Character'Val (16#0013A9#), when 16#00FF2D# => Wide_Wide_Character'Val (16#00FF4D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D3 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D3# => Wide_Wide_Character'Val (16#0000F3#), when 16#0003D0# => Wide_Wide_Character'Val (16#0003B2#), when 16#0010C3# => Wide_Wide_Character'Val (16#002D23#), when 16#001FCC# => Wide_Wide_Character'Val (16#001FC3#), when 16#00AB78# => Wide_Wide_Character'Val (16#0013A8#), when 16#00FF2C# => Wide_Wide_Character'Val (16#00FF4C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D4 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D4# => Wide_Wide_Character'Val (16#0000F4#), when 16#0001D5# => Wide_Wide_Character'Val (16#0001D6#), when 16#0004D0# => Wide_Wide_Character'Val (16#0004D1#), when 16#0010C4# => Wide_Wide_Character'Val (16#002D24#), when 16#001ECA# => Wide_Wide_Character'Val (16#001ECB#), when 16#001FCB# => Wide_Wide_Character'Val (16#001F75#), when 16#00AB7F# => Wide_Wide_Character'Val (16#0013AF#), when 16#00FF2B# => Wide_Wide_Character'Val (16#00FF4B#), when 16#0104D1# => Wide_Wide_Character'Val (16#0104F9#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D5 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D5# => Wide_Wide_Character'Val (16#0000F5#), when 16#0003D6# => Wide_Wide_Character'Val (16#0003C0#), when 16#0010C5# => Wide_Wide_Character'Val (16#002D25#), when 16#001FCA# => Wide_Wide_Character'Val (16#001F74#), when 16#00AB7E# => Wide_Wide_Character'Val (16#0013AE#), when 16#00FF2A# => Wide_Wide_Character'Val (16#00FF4A#), when 16#0104D0# => Wide_Wide_Character'Val (16#0104F8#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D6 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D6# => Wide_Wide_Character'Val (16#0000F6#), when 16#0001D7# => Wide_Wide_Character'Val (16#0001D8#), when 16#0003D5# => Wide_Wide_Character'Val (16#0003C6#), when 16#0004D2# => Wide_Wide_Character'Val (16#0004D3#), when 16#001EC8# => Wide_Wide_Character'Val (16#001EC9#), when 16#001FC9# => Wide_Wide_Character'Val (16#001F73#), when 16#00AB7D# => Wide_Wide_Character'Val (16#0013AD#), when 16#00FF29# => Wide_Wide_Character'Val (16#00FF49#), when 16#0104D3# => Wide_Wide_Character'Val (16#0104FB#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D7 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0010C7# => Wide_Wide_Character'Val (16#002D27#), when 16#001FC8# => Wide_Wide_Character'Val (16#001F72#), when 16#00AB7C# => Wide_Wide_Character'Val (16#0013AC#), when 16#00FF28# => Wide_Wide_Character'Val (16#00FF48#), when 16#0104D2# => Wide_Wide_Character'Val (16#0104FA#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D8 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D8# => Wide_Wide_Character'Val (16#0000F8#), when 16#0001D9# => Wide_Wide_Character'Val (16#0001DA#), when 16#0004DC# => Wide_Wide_Character'Val (16#0004DD#), when 16#001EC6# => Wide_Wide_Character'Val (16#001EC7#), when 16#00AB73# => Wide_Wide_Character'Val (16#0013A3#), when 16#00FF27# => Wide_Wide_Character'Val (16#00FF47#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_D9 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000D9# => Wide_Wide_Character'Val (16#0000F9#), when 16#0003DA# => Wide_Wide_Character'Val (16#0003DB#), when 16#00A77E# => Wide_Wide_Character'Val (16#00A77F#), when 16#00AB72# => Wide_Wide_Character'Val (16#0013A2#), when 16#00FF26# => Wide_Wide_Character'Val (16#00FF46#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_DA (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000DA# => Wide_Wide_Character'Val (16#0000FA#), when 16#0001DB# => Wide_Wide_Character'Val (16#0001DC#), when 16#0004DE# => Wide_Wide_Character'Val (16#0004DF#), when 16#001EC4# => Wide_Wide_Character'Val (16#001EC5#), when 16#00A77D# => Wide_Wide_Character'Val (16#001D79#), when 16#00AB71# => Wide_Wide_Character'Val (16#0013A1#), when 16#00FF25# => Wide_Wide_Character'Val (16#00FF45#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_DB (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000DB# => Wide_Wide_Character'Val (16#0000FB#), when 16#0003D8# => Wide_Wide_Character'Val (16#0003D9#), when 16#00AB70# => Wide_Wide_Character'Val (16#0013A0#), when 16#00FF24# => Wide_Wide_Character'Val (16#00FF44#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_DC (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000DC# => Wide_Wide_Character'Val (16#0000FC#), when 16#0004D8# => Wide_Wide_Character'Val (16#0004D9#), when 16#001EC2# => Wide_Wide_Character'Val (16#001EC3#), when 16#00A77B# => Wide_Wide_Character'Val (16#00A77C#), when 16#00AB77# => Wide_Wide_Character'Val (16#0013A7#), when 16#00FF23# => Wide_Wide_Character'Val (16#00FF43#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_DD (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000DD# => Wide_Wide_Character'Val (16#0000FD#), when 16#0003DE# => Wide_Wide_Character'Val (16#0003DF#), when 16#0010CD# => Wide_Wide_Character'Val (16#002D2D#), when 16#00AB76# => Wide_Wide_Character'Val (16#0013A6#), when 16#00FF22# => Wide_Wide_Character'Val (16#00FF42#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_DE (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0000DE# => Wide_Wide_Character'Val (16#0000FE#), when 16#0004DA# => Wide_Wide_Character'Val (16#0004DB#), when 16#001EC0# => Wide_Wide_Character'Val (16#001EC1#), when 16#002CF2# => Wide_Wide_Character'Val (16#002CF3#), when 16#00A779# => Wide_Wide_Character'Val (16#00A77A#), when 16#00AB75# => Wide_Wide_Character'Val (16#0013A5#), when 16#00FF21# => Wide_Wide_Character'Val (16#00FF41#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_DF (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001DE# => Wide_Wide_Character'Val (16#0001DF#), when 16#0003DC# => Wide_Wide_Character'Val (16#0003DD#), when 16#00AB74# => Wide_Wide_Character'Val (16#0013A4#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E0 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004E4# => Wide_Wide_Character'Val (16#0004E5#), when 16#001EFE# => Wide_Wide_Character'Val (16#001EFF#), when 16#0024C4# => Wide_Wide_Character'Val (16#0024DE#), when 16#002CCC# => Wide_Wide_Character'Val (16#002CCD#), when 16#00A646# => Wide_Wide_Character'Val (16#00A647#), when 16#01E908# => Wide_Wide_Character'Val (16#01E92A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E1 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001E0# => Wide_Wide_Character'Val (16#0001E1#), when 16#0003E2# => Wide_Wide_Character'Val (16#0003E3#), when 16#0024C5# => Wide_Wide_Character'Val (16#0024DF#), when 16#00A746# => Wide_Wide_Character'Val (16#00A747#), when 16#01E909# => Wide_Wide_Character'Val (16#01E92B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E2 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004E6# => Wide_Wide_Character'Val (16#0004E7#), when 16#001EFC# => Wide_Wide_Character'Val (16#001EFD#), when 16#0024C6# => Wide_Wide_Character'Val (16#0024E0#), when 16#002CCE# => Wide_Wide_Character'Val (16#002CCF#), when 16#00A644# => Wide_Wide_Character'Val (16#00A645#), when 16#01E90A# => Wide_Wide_Character'Val (16#01E92C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E3 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001E2# => Wide_Wide_Character'Val (16#0001E3#), when 16#0003E0# => Wide_Wide_Character'Val (16#0003E1#), when 16#001FFC# => Wide_Wide_Character'Val (16#001FF3#), when 16#0024C7# => Wide_Wide_Character'Val (16#0024E1#), when 16#00A744# => Wide_Wide_Character'Val (16#00A745#), when 16#01E90B# => Wide_Wide_Character'Val (16#01E92D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E4 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004E0# => Wide_Wide_Character'Val (16#0004E1#), when 16#001EFA# => Wide_Wide_Character'Val (16#001EFB#), when 16#001FFB# => Wide_Wide_Character'Val (16#001F7D#), when 16#0024C0# => Wide_Wide_Character'Val (16#0024DA#), when 16#002CC8# => Wide_Wide_Character'Val (16#002CC9#), when 16#00A642# => Wide_Wide_Character'Val (16#00A643#), when 16#01E90C# => Wide_Wide_Character'Val (16#01E92E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E5 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001E4# => Wide_Wide_Character'Val (16#0001E5#), when 16#0003E6# => Wide_Wide_Character'Val (16#0003E7#), when 16#001FFA# => Wide_Wide_Character'Val (16#001F7C#), when 16#0024C1# => Wide_Wide_Character'Val (16#0024DB#), when 16#00A742# => Wide_Wide_Character'Val (16#00A743#), when 16#01E90D# => Wide_Wide_Character'Val (16#01E92F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E6 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004E2# => Wide_Wide_Character'Val (16#0004E3#), when 16#001EF8# => Wide_Wide_Character'Val (16#001EF9#), when 16#001FF9# => Wide_Wide_Character'Val (16#001F79#), when 16#0024C2# => Wide_Wide_Character'Val (16#0024DC#), when 16#002CCA# => Wide_Wide_Character'Val (16#002CCB#), when 16#00A640# => Wide_Wide_Character'Val (16#00A641#), when 16#01E90E# => Wide_Wide_Character'Val (16#01E930#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E7 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001E6# => Wide_Wide_Character'Val (16#0001E7#), when 16#0003E4# => Wide_Wide_Character'Val (16#0003E5#), when 16#001FF8# => Wide_Wide_Character'Val (16#001F78#), when 16#0024C3# => Wide_Wide_Character'Val (16#0024DD#), when 16#00A740# => Wide_Wide_Character'Val (16#00A741#), when 16#01E90F# => Wide_Wide_Character'Val (16#01E931#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E8 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004EC# => Wide_Wide_Character'Val (16#0004ED#), when 16#0013FB# => Wide_Wide_Character'Val (16#0013F3#), when 16#001EF6# => Wide_Wide_Character'Val (16#001EF7#), when 16#0024CC# => Wide_Wide_Character'Val (16#0024E6#), when 16#002CC4# => Wide_Wide_Character'Val (16#002CC5#), when 16#00A64E# => Wide_Wide_Character'Val (16#00A64F#), when 16#01E900# => Wide_Wide_Character'Val (16#01E922#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_E9 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001E8# => Wide_Wide_Character'Val (16#0001E9#), when 16#0003EA# => Wide_Wide_Character'Val (16#0003EB#), when 16#0013FA# => Wide_Wide_Character'Val (16#0013F2#), when 16#0024CD# => Wide_Wide_Character'Val (16#0024E7#), when 16#00A74E# => Wide_Wide_Character'Val (16#00A74F#), when 16#01E901# => Wide_Wide_Character'Val (16#01E923#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_EA (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004EE# => Wide_Wide_Character'Val (16#0004EF#), when 16#0013F9# => Wide_Wide_Character'Val (16#0013F1#), when 16#001EF4# => Wide_Wide_Character'Val (16#001EF5#), when 16#0024CE# => Wide_Wide_Character'Val (16#0024E8#), when 16#002CC6# => Wide_Wide_Character'Val (16#002CC7#), when 16#00A64C# => Wide_Wide_Character'Val (16#00A64D#), when 16#01E902# => Wide_Wide_Character'Val (16#01E924#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_EB (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001EA# => Wide_Wide_Character'Val (16#0001EB#), when 16#0003E8# => Wide_Wide_Character'Val (16#0003E9#), when 16#0013F8# => Wide_Wide_Character'Val (16#0013F0#), when 16#0024CF# => Wide_Wide_Character'Val (16#0024E9#), when 16#00A74C# => Wide_Wide_Character'Val (16#00A74D#), when 16#01E903# => Wide_Wide_Character'Val (16#01E925#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_EC (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004E8# => Wide_Wide_Character'Val (16#0004E9#), when 16#001EF2# => Wide_Wide_Character'Val (16#001EF3#), when 16#0024C8# => Wide_Wide_Character'Val (16#0024E2#), when 16#002CC0# => Wide_Wide_Character'Val (16#002CC1#), when 16#00A64A# => Wide_Wide_Character'Val (16#00A64B#), when 16#01E904# => Wide_Wide_Character'Val (16#01E926#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_ED (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001EC# => Wide_Wide_Character'Val (16#0001ED#), when 16#0003EE# => Wide_Wide_Character'Val (16#0003EF#), when 16#0024C9# => Wide_Wide_Character'Val (16#0024E3#), when 16#00A74A# => Wide_Wide_Character'Val (16#00A74B#), when 16#01E905# => Wide_Wide_Character'Val (16#01E927#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_EE (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004EA# => Wide_Wide_Character'Val (16#0004EB#), when 16#0013FD# => Wide_Wide_Character'Val (16#0013F5#), when 16#001EF0# => Wide_Wide_Character'Val (16#001EF1#), when 16#0024CA# => Wide_Wide_Character'Val (16#0024E4#), when 16#002CC2# => Wide_Wide_Character'Val (16#002CC3#), when 16#00A648# => Wide_Wide_Character'Val (16#00A649#), when 16#01E906# => Wide_Wide_Character'Val (16#01E928#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_EF (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001EE# => Wide_Wide_Character'Val (16#0001EF#), when 16#0003EC# => Wide_Wide_Character'Val (16#0003ED#), when 16#0013FC# => Wide_Wide_Character'Val (16#0013F4#), when 16#0024CB# => Wide_Wide_Character'Val (16#0024E5#), when 16#00A748# => Wide_Wide_Character'Val (16#00A749#), when 16#01E907# => Wide_Wide_Character'Val (16#01E929#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F0 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001F1# => Wide_Wide_Character'Val (16#0001F3#), when 16#0004F4# => Wide_Wide_Character'Val (16#0004F5#), when 16#001EEE# => Wide_Wide_Character'Val (16#001EEF#), when 16#002CDC# => Wide_Wide_Character'Val (16#002CDD#), when 16#00A656# => Wide_Wide_Character'Val (16#00A657#), when 16#01E918# => Wide_Wide_Character'Val (16#01E93A#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F1 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#00A756# => Wide_Wide_Character'Val (16#00A757#), when 16#01E919# => Wide_Wide_Character'Val (16#01E93B#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F2 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003F1# => Wide_Wide_Character'Val (16#0003C1#), when 16#0004F6# => Wide_Wide_Character'Val (16#0004F7#), when 16#001EEC# => Wide_Wide_Character'Val (16#001EED#), when 16#002CDE# => Wide_Wide_Character'Val (16#002CDF#), when 16#00A654# => Wide_Wide_Character'Val (16#00A655#), when 16#01E91A# => Wide_Wide_Character'Val (16#01E93C#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F3 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001F2# => Wide_Wide_Character'Val (16#0001F3#), when 16#0003F0# => Wide_Wide_Character'Val (16#0003BA#), when 16#001FEC# => Wide_Wide_Character'Val (16#001FE5#), when 16#00A754# => Wide_Wide_Character'Val (16#00A755#), when 16#01E91B# => Wide_Wide_Character'Val (16#01E93D#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F4 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003F7# => Wide_Wide_Character'Val (16#0003F8#), when 16#0004F0# => Wide_Wide_Character'Val (16#0004F1#), when 16#001EEA# => Wide_Wide_Character'Val (16#001EEB#), when 16#001FEB# => Wide_Wide_Character'Val (16#001F7B#), when 16#002CD8# => Wide_Wide_Character'Val (16#002CD9#), when 16#00A652# => Wide_Wide_Character'Val (16#00A653#), when 16#01E91C# => Wide_Wide_Character'Val (16#01E93E#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F5 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001F4# => Wide_Wide_Character'Val (16#0001F5#), when 16#001FEA# => Wide_Wide_Character'Val (16#001F7A#), when 16#00A752# => Wide_Wide_Character'Val (16#00A753#), when 16#01E91D# => Wide_Wide_Character'Val (16#01E93F#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F6 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001F7# => Wide_Wide_Character'Val (16#0001BF#), when 16#0003F5# => Wide_Wide_Character'Val (16#0003B5#), when 16#0004F2# => Wide_Wide_Character'Val (16#0004F3#), when 16#001EE8# => Wide_Wide_Character'Val (16#001EE9#), when 16#001FE9# => Wide_Wide_Character'Val (16#001FE1#), when 16#002CDA# => Wide_Wide_Character'Val (16#002CDB#), when 16#00A650# => Wide_Wide_Character'Val (16#00A651#), when 16#01E91E# => Wide_Wide_Character'Val (16#01E940#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F7 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001F6# => Wide_Wide_Character'Val (16#000195#), when 16#0003F4# => Wide_Wide_Character'Val (16#0003B8#), when 16#001FE8# => Wide_Wide_Character'Val (16#001FE0#), when 16#00A750# => Wide_Wide_Character'Val (16#00A751#), when 16#01E91F# => Wide_Wide_Character'Val (16#01E941#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F8 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0004FC# => Wide_Wide_Character'Val (16#0004FD#), when 16#001EE6# => Wide_Wide_Character'Val (16#001EE7#), when 16#002CD4# => Wide_Wide_Character'Val (16#002CD5#), when 16#00A65E# => Wide_Wide_Character'Val (16#00A65F#), when 16#01E910# => Wide_Wide_Character'Val (16#01E932#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_F9 (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001F8# => Wide_Wide_Character'Val (16#0001F9#), when 16#0003FA# => Wide_Wide_Character'Val (16#0003FB#), when 16#00A75E# => Wide_Wide_Character'Val (16#00A75F#), when 16#01E911# => Wide_Wide_Character'Val (16#01E933#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_FA (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003F9# => Wide_Wide_Character'Val (16#0003F2#), when 16#0004FE# => Wide_Wide_Character'Val (16#0004FF#), when 16#001EE4# => Wide_Wide_Character'Val (16#001EE5#), when 16#002CD6# => Wide_Wide_Character'Val (16#002CD7#), when 16#00A65C# => Wide_Wide_Character'Val (16#00A65D#), when 16#01E912# => Wide_Wide_Character'Val (16#01E934#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_FB (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001FA# => Wide_Wide_Character'Val (16#0001FB#), when 16#00A75C# => Wide_Wide_Character'Val (16#00A75D#), when 16#01E913# => Wide_Wide_Character'Val (16#01E935#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_FC (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003FF# => Wide_Wide_Character'Val (16#00037D#), when 16#0004F8# => Wide_Wide_Character'Val (16#0004F9#), when 16#001EE2# => Wide_Wide_Character'Val (16#001EE3#), when 16#002CD0# => Wide_Wide_Character'Val (16#002CD1#), when 16#00A65A# => Wide_Wide_Character'Val (16#00A65B#), when 16#01E914# => Wide_Wide_Character'Val (16#01E936#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_FD (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001FC# => Wide_Wide_Character'Val (16#0001FD#), when 16#0003FE# => Wide_Wide_Character'Val (16#00037C#), when 16#00A75A# => Wide_Wide_Character'Val (16#00A75B#), when 16#01E915# => Wide_Wide_Character'Val (16#01E937#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_FE (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0003FD# => Wide_Wide_Character'Val (16#00037B#), when 16#0004FA# => Wide_Wide_Character'Val (16#0004FB#), when 16#001EE0# => Wide_Wide_Character'Val (16#001EE1#), when 16#002CD2# => Wide_Wide_Character'Val (16#002CD3#), when 16#00A658# => Wide_Wide_Character'Val (16#00A659#), when 16#01E916# => Wide_Wide_Character'Val (16#01E938#), when others => Wide_Wide_Character'Val (C)) with Inline; function Bucket_FF (C: Codepoint) return Wide_Wide_Character is (case C is when 16#0001FE# => Wide_Wide_Character'Val (16#0001FF#), when 16#00A758# => Wide_Wide_Character'Val (16#00A759#), when 16#01E917# => Wide_Wide_Character'Val (16#01E939#), when others => Wide_Wide_Character'Val (C)) with Inline; begin -- This shouldn't happen.. if Wide_Wide_Character'Pos(C) > 16#10FFFF# then return C; end if; declare CP: constant Codepoint := Codepoint (Wide_Wide_Character'Pos (C)); K: constant Key_Hash := Hash (CP); begin case K is when 16#00# => return Bucket_00 (CP); when 16#01# => return Bucket_01 (CP); when 16#02# => return Bucket_02 (CP); when 16#03# => return Bucket_03 (CP); when 16#04# => return Bucket_04 (CP); when 16#05# => return Bucket_05 (CP); when 16#06# => return Bucket_06 (CP); when 16#07# => return Bucket_07 (CP); when 16#08# => return Bucket_08 (CP); when 16#09# => return Bucket_09 (CP); when 16#0A# => return Bucket_0A (CP); when 16#0B# => return Bucket_0B (CP); when 16#0C# => return Bucket_0C (CP); when 16#0D# => return Bucket_0D (CP); when 16#0E# => return Bucket_0E (CP); when 16#0F# => return Bucket_0F (CP); when 16#10# => return Bucket_10 (CP); when 16#11# => return Bucket_11 (CP); when 16#12# => return Bucket_12 (CP); when 16#13# => return Bucket_13 (CP); when 16#14# => return Bucket_14 (CP); when 16#15# => return Bucket_15 (CP); when 16#16# => return Bucket_16 (CP); when 16#17# => return Bucket_17 (CP); when 16#18# => return Bucket_18 (CP); when 16#19# => return Bucket_19 (CP); when 16#1A# => return Bucket_1A (CP); when 16#1B# => return Bucket_1B (CP); when 16#1C# => return Bucket_1C (CP); when 16#1D# => return Bucket_1D (CP); when 16#1E# => return Bucket_1E (CP); when 16#1F# => return Bucket_1F (CP); when 16#20# => return Bucket_20 (CP); when 16#21# => return Bucket_21 (CP); when 16#22# => return Bucket_22 (CP); when 16#23# => return Bucket_23 (CP); when 16#24# => return Bucket_24 (CP); when 16#25# => return Bucket_25 (CP); when 16#26# => return Bucket_26 (CP); when 16#27# => return Bucket_27 (CP); when 16#28# => return Bucket_28 (CP); when 16#29# => return Bucket_29 (CP); when 16#2A# => return Bucket_2A (CP); when 16#2B# => return Bucket_2B (CP); when 16#2C# => return Bucket_2C (CP); when 16#2D# => return Bucket_2D (CP); when 16#2E# => return Bucket_2E (CP); when 16#2F# => return Bucket_2F (CP); when 16#30# => return Bucket_30 (CP); when 16#31# => return Bucket_31 (CP); when 16#32# => return Bucket_32 (CP); when 16#33# => return Bucket_33 (CP); when 16#34# => return Bucket_34 (CP); when 16#35# => return Bucket_35 (CP); when 16#36# => return Bucket_36 (CP); when 16#37# => return Bucket_37 (CP); when 16#38# => return Bucket_38 (CP); when 16#39# => return Bucket_39 (CP); when 16#3A# => return Bucket_3A (CP); when 16#3B# => return Bucket_3B (CP); when 16#3C# => return Bucket_3C (CP); when 16#3D# => return Bucket_3D (CP); when 16#3E# => return Bucket_3E (CP); when 16#3F# => return Bucket_3F (CP); when 16#40# => return Bucket_40 (CP); when 16#41# => return Bucket_41 (CP); when 16#42# => return Bucket_42 (CP); when 16#43# => return Bucket_43 (CP); when 16#44# => return Bucket_44 (CP); when 16#45# => return Bucket_45 (CP); when 16#46# => return Bucket_46 (CP); when 16#47# => return Bucket_47 (CP); when 16#48# => return Bucket_48 (CP); when 16#49# => return Bucket_49 (CP); when 16#4A# => return Bucket_4A (CP); when 16#4B# => return Bucket_4B (CP); when 16#4C# => return Bucket_4C (CP); when 16#4D# => return Bucket_4D (CP); when 16#4E# => return Bucket_4E (CP); when 16#4F# => return Bucket_4F (CP); when 16#50# => return Bucket_50 (CP); when 16#51# => return Bucket_51 (CP); when 16#52# => return Bucket_52 (CP); when 16#53# => return Bucket_53 (CP); when 16#54# => return Bucket_54 (CP); when 16#55# => return Bucket_55 (CP); when 16#56# => return Bucket_56 (CP); when 16#57# => return Bucket_57 (CP); when 16#58# => return Bucket_58 (CP); when 16#59# => return Bucket_59 (CP); when 16#5A# => return Bucket_5A (CP); when 16#5B# => return Bucket_5B (CP); when 16#5C# => return Bucket_5C (CP); when 16#5D# => return Bucket_5D (CP); when 16#5E# => return Bucket_5E (CP); when 16#5F# => return Bucket_5F (CP); when 16#60# => return Bucket_60 (CP); when 16#61# => return Bucket_61 (CP); when 16#62# => return Bucket_62 (CP); when 16#63# => return Bucket_63 (CP); when 16#64# => return Bucket_64 (CP); when 16#65# => return Bucket_65 (CP); when 16#66# => return Bucket_66 (CP); when 16#67# => return Bucket_67 (CP); when 16#68# => return Bucket_68 (CP); when 16#69# => return Bucket_69 (CP); when 16#6A# => return Bucket_6A (CP); when 16#6B# => return Bucket_6B (CP); when 16#6C# => return Bucket_6C (CP); when 16#6D# => return Bucket_6D (CP); when 16#6E# => return Bucket_6E (CP); when 16#6F# => return Bucket_6F (CP); when 16#70# => return Bucket_70 (CP); when 16#71# => return Bucket_71 (CP); when 16#72# => return Bucket_72 (CP); when 16#73# => return Bucket_73 (CP); when 16#74# => return Bucket_74 (CP); when 16#75# => return Bucket_75 (CP); when 16#76# => return Bucket_76 (CP); when 16#77# => return Bucket_77 (CP); when 16#78# => return Bucket_78 (CP); when 16#79# => return Bucket_79 (CP); when 16#7A# => return Bucket_7A (CP); when 16#7B# => return Bucket_7B (CP); when 16#7C# => return Bucket_7C (CP); when 16#7D# => return Bucket_7D (CP); when 16#7E# => return Bucket_7E (CP); when 16#7F# => return Bucket_7F (CP); when 16#80# => return Bucket_80 (CP); when 16#81# => return Bucket_81 (CP); when 16#82# => return Bucket_82 (CP); when 16#83# => return Bucket_83 (CP); when 16#84# => return Bucket_84 (CP); when 16#85# => return Bucket_85 (CP); when 16#86# => return Bucket_86 (CP); when 16#87# => return Bucket_87 (CP); when 16#88# => return Bucket_88 (CP); when 16#89# => return Bucket_89 (CP); when 16#8A# => return Bucket_8A (CP); when 16#8B# => return Bucket_8B (CP); when 16#8C# => return Bucket_8C (CP); when 16#8D# => return Bucket_8D (CP); when 16#8E# => return Bucket_8E (CP); when 16#8F# => return Bucket_8F (CP); when 16#90# => return Bucket_90 (CP); when 16#91# => return Bucket_91 (CP); when 16#92# => return Bucket_92 (CP); when 16#93# => return Bucket_93 (CP); when 16#94# => return Bucket_94 (CP); when 16#95# => return Bucket_95 (CP); when 16#96# => return Bucket_96 (CP); when 16#97# => return Bucket_97 (CP); when 16#98# => return Bucket_98 (CP); when 16#99# => return Bucket_99 (CP); when 16#9A# => return Bucket_9A (CP); when 16#9B# => return Bucket_9B (CP); when 16#9C# => return Bucket_9C (CP); when 16#9D# => return Bucket_9D (CP); when 16#9E# => return Bucket_9E (CP); when 16#9F# => return Bucket_9F (CP); when 16#A0# => return Bucket_A0 (CP); when 16#A1# => return Bucket_A1 (CP); when 16#A2# => return Bucket_A2 (CP); when 16#A3# => return Bucket_A3 (CP); when 16#A4# => return Bucket_A4 (CP); when 16#A5# => return Bucket_A5 (CP); when 16#A6# => return Bucket_A6 (CP); when 16#A7# => return Bucket_A7 (CP); when 16#A8# => return Bucket_A8 (CP); when 16#A9# => return Bucket_A9 (CP); when 16#AA# => return Bucket_AA (CP); when 16#AB# => return Bucket_AB (CP); when 16#AC# => return Bucket_AC (CP); when 16#AD# => return Bucket_AD (CP); when 16#AE# => return Bucket_AE (CP); when 16#AF# => return Bucket_AF (CP); when 16#B0# => return Bucket_B0 (CP); when 16#B1# => return Bucket_B1 (CP); when 16#B2# => return Bucket_B2 (CP); when 16#B3# => return Bucket_B3 (CP); when 16#B4# => return Bucket_B4 (CP); when 16#B5# => return Bucket_B5 (CP); when 16#B6# => return Bucket_B6 (CP); when 16#B7# => return Bucket_B7 (CP); when 16#B8# => return Bucket_B8 (CP); when 16#B9# => return Bucket_B9 (CP); when 16#BA# => return Bucket_BA (CP); when 16#BB# => return Bucket_BB (CP); when 16#BC# => return Bucket_BC (CP); when 16#BD# => return Bucket_BD (CP); when 16#BE# => return Bucket_BE (CP); when 16#BF# => return Bucket_BF (CP); when 16#C0# => return Bucket_C0 (CP); when 16#C1# => return Bucket_C1 (CP); when 16#C2# => return Bucket_C2 (CP); when 16#C3# => return Bucket_C3 (CP); when 16#C4# => return Bucket_C4 (CP); when 16#C5# => return Bucket_C5 (CP); when 16#C6# => return Bucket_C6 (CP); when 16#C7# => return Bucket_C7 (CP); when 16#C8# => return Bucket_C8 (CP); when 16#C9# => return Bucket_C9 (CP); when 16#CA# => return Bucket_CA (CP); when 16#CB# => return Bucket_CB (CP); when 16#CC# => return Bucket_CC (CP); when 16#CD# => return Bucket_CD (CP); when 16#CE# => return Bucket_CE (CP); when 16#CF# => return Bucket_CF (CP); when 16#D0# => return Bucket_D0 (CP); when 16#D1# => return Bucket_D1 (CP); when 16#D2# => return Bucket_D2 (CP); when 16#D3# => return Bucket_D3 (CP); when 16#D4# => return Bucket_D4 (CP); when 16#D5# => return Bucket_D5 (CP); when 16#D6# => return Bucket_D6 (CP); when 16#D7# => return Bucket_D7 (CP); when 16#D8# => return Bucket_D8 (CP); when 16#D9# => return Bucket_D9 (CP); when 16#DA# => return Bucket_DA (CP); when 16#DB# => return Bucket_DB (CP); when 16#DC# => return Bucket_DC (CP); when 16#DD# => return Bucket_DD (CP); when 16#DE# => return Bucket_DE (CP); when 16#DF# => return Bucket_DF (CP); when 16#E0# => return Bucket_E0 (CP); when 16#E1# => return Bucket_E1 (CP); when 16#E2# => return Bucket_E2 (CP); when 16#E3# => return Bucket_E3 (CP); when 16#E4# => return Bucket_E4 (CP); when 16#E5# => return Bucket_E5 (CP); when 16#E6# => return Bucket_E6 (CP); when 16#E7# => return Bucket_E7 (CP); when 16#E8# => return Bucket_E8 (CP); when 16#E9# => return Bucket_E9 (CP); when 16#EA# => return Bucket_EA (CP); when 16#EB# => return Bucket_EB (CP); when 16#EC# => return Bucket_EC (CP); when 16#ED# => return Bucket_ED (CP); when 16#EE# => return Bucket_EE (CP); when 16#EF# => return Bucket_EF (CP); when 16#F0# => return Bucket_F0 (CP); when 16#F1# => return Bucket_F1 (CP); when 16#F2# => return Bucket_F2 (CP); when 16#F3# => return Bucket_F3 (CP); when 16#F4# => return Bucket_F4 (CP); when 16#F5# => return Bucket_F5 (CP); when 16#F6# => return Bucket_F6 (CP); when 16#F7# => return Bucket_F7 (CP); when 16#F8# => return Bucket_F8 (CP); when 16#F9# => return Bucket_F9 (CP); when 16#FA# => return Bucket_FA (CP); when 16#FB# => return Bucket_FB (CP); when 16#FC# => return Bucket_FC (CP); when 16#FD# => return Bucket_FD (CP); when 16#FE# => return Bucket_FE (CP); when 16#FF# => return Bucket_FF (CP); end case; end; end Unicode.Case_Folding.Simple;
with Text_IO; use Text_IO; with Ada.Numerics.Generic_Elementary_Functions; with Extended_Real; with Extended_Real.Elementary_Functions; with Extended_Real.IO; procedure e_real_demo_1 is type Real is digits 15; package mth is new Ada.Numerics.Generic_Elementary_Functions(Real); use mth; package ext is new Extended_Real (Real); use ext; package fnc is new Ext.Elementary_Functions (Sqrt, Log, Exp, Arcsin); use fnc; package rio is new Text_IO.Float_IO (Real); use rio; package iio is new Text_IO.Integer_IO (E_Integer); use iio; package eio is new Ext.IO; use eio; Ten : constant E_Real:= +10.0; Last : Natural; Y : E_Real; Blank_Str : constant String(1..1024) := (others => ' '); Number_String : String(1..1024) := (others => ' '); Seventy_Digits : constant String(1..74) := "1.234567890123456789012345678901234567890123456789012345678901234567890E-1"; Radix : constant Real := E_Real_Machine_Radix; Z1, Z2 : E_Real; -- Attempt to make Junk constants of order one with non-zero's all over. Junk1 : constant E_Real := One / (+3.0); Junk2 : constant E_Real := (+17.0) / (+19.0); Test_Vector_Seed : Real; No_Decimal_Digits : constant := Desired_Decimal_Digit_Precision; ----------- -- Pause -- ----------- procedure Pause (s0,s1,s2,s3,s4,s5,s6,s7,s8,s9 : string := "") is Continue : Character := ' '; begin new_line; if S0 /= "" then put_line (S0); end if; if S1 /= "" then put_line (S1); end if; if S2 /= "" then put_line (S2); end if; if S3 /= "" then put_line (S3); end if; if S4 /= "" then put_line (S4); end if; if S5 /= "" then put_line (S5); end if; if S6 /= "" then put_line (S6); end if; if S7 /= "" then put_line (S7); end if; if S8 /= "" then put_line (S8); end if; if S9 /= "" then put_line (S9); end if; new_line; begin put ("Type a character to continue: "); get_immediate (Continue); exception when others => null; end; end Pause; ---------------------------------- -- Print_Extended_Real_Settings -- ---------------------------------- procedure Print_Extended_Real_Settings is Bits_In_Radix : constant := Desired_No_Of_Bits_In_Radix; begin new_line(1); put (" Desired_Decimal_Digit_Precision ="); put (Integer'Image(Desired_Decimal_Digit_Precision)); new_line(1); new_line(1); put ("Number of decimal digits of precision requested: "); put (Integer'Image(Desired_Decimal_Digit_Precision)); new_line(1); put ("Number of digits in use (including 2 guard digits): "); put (e_Integer'Image(e_Real_Machine_Mantissa)); new_line(1); put ("These digits are not decimal; they have Radix: 2**("); put (e_Integer'Image(Bits_In_Radix)); put(")"); new_line(1); put ("In other words, each of these digits is in range: 0 .. 2**("); put (e_Integer'Image(Bits_In_Radix)); put(")"); put (" - 1."); new_line(1); put ("Number of decimal digits per actual digit is approx: 9"); new_line(2); put("Guard digits (digits of extra precision) are appended to the end of"); new_line(1); put("each number. There are always 2 guard digits. This adds up to 18"); new_line(1); put("decimal digits of extra precision. The arithmetic operators, (""*"","); new_line(1); put("""/"", ""+"" etc) usually produce results that are correct to all"); new_line(1); put("digits except the final (guard) digit."); new_line(2); put("If a number is correct to all digits except the final (guard) digit,"); new_line(1); put("expect errors of the order:"); new_line(2); put(e_Real_Image (e_Real_Model_Epsilon / (One+One)**Bits_In_Radix, aft => 10)); new_line(2); put("If you lose 2 digits of accuracy (i.e. both guard digits) instead"); new_line(1); put("of 1 (as in the above case) then you lose another 9 decimal digits"); new_line(1); put("of accuracy. In this case expect errors of the order:"); new_line(2); put(e_Real_Image (e_Real_Model_Epsilon, aft => 10)); new_line(2); put("In most large floating pt. calculations you lose both guard digits"); new_line(1); put("at the minimum. The best precision you can expect is given by"); new_line(1); put("the 2nd number above."); new_line(1); if e_Real_Machine_Mantissa > 7 then new_line(2); put ("PRESENTLY USING:"); put (e_Integer'Image(e_Real_Machine_Mantissa)); put (" DIGITS."); new_line(1); put ("Parts of this demo don't work great with more than 7 digits."); end if; Pause; end Print_Extended_Real_Settings; procedure Test_Rem (Test_Vector_Seed : Real) is Difference, Max_Err : E_Real; Z1, Z2 : E_Real := Zero; Z4 : E_Real; No_of_Trials : constant Integer := 20_000; begin for I in 1 .. No_of_Trials loop Z1 := Z1 + Junk1; Z2 := Z2 + (+Test_Vector_Seed) * Junk2; -- try to reproduce Z1: Z4 := Remainder (Z1, Z2) + Z2 * Unbiased_Rounding (Z1 / Z2); -- Z4 should equal Z1. Difference := Abs (One - Z1 / Z4); --put (Make_Real (Z3 / Z2)); put (Make_Real (Z4 / Z2)); New_Line; -- These quantities should always be in range [-0.5..0.5] if Difference > Max_Err then Max_Err := Difference; end if; end loop; put ("Result = "); put (e_Real_Image (Max_Err)); new_line; end Test_Rem; ----------------------------- -- Test_Digit_Mult_and_Div -- ----------------------------- procedure Test_Digit_Mult_and_Div (Test_Vector_Seed : Real) is Difference, Max_Err : E_Real; -- init to 0 essential Delta_Digit : constant Real := 50_000.0; Real_Digit : Real := Radix + Delta_Digit - 1.0; Digit1 : e_Digit; Z1, Z2 : E_Real := Zero; No_of_Trials : constant Integer := 20_000; begin Z1 := (+Test_Vector_Seed) * Junk1; for I in 1 .. No_of_Trials loop Real_Digit := Real_Digit - Delta_Digit; Digit1 := Make_e_Digit (Real_Digit); Z2 := Digit1 * (Z1 / Digit1); Difference := Abs (One - Z2 / Z1); if Difference > Max_Err then Max_Err := Difference; end if; end loop; put ("Result = "); --put (e_Real_Image (Max_Err); put (e_Real_Image (Max_Err, Aft => Integer'Min (No_Decimal_Digits, 50))); new_line; end Test_Digit_Mult_and_Div; ----------------------- -- Test_Mult_and_Add -- ----------------------- -- uses Newton's method to calculate 1/(X). Square and invert to -- compare with X; square and multiply with with X to compare w. 1.0. procedure Test_Mult_and_Add (Test_Vector_Seed : Real) is Difference, Max_Err : E_Real; No_of_Trials : constant Integer := 20_000; function Inverse (X : E_Real) return E_Real is X_isqr : E_Real; Iterations : constant Integer := 24; X_start : constant Real := 1.0 / Make_Real(X); begin X_isqr := Make_Extended (X_Start); for I in 1..Iterations loop X_isqr := X_isqr + (One - X * X_isqr) * X_isqr; end loop; return X_isqr; end Inverse; begin Z1 := Zero; for I in 1..No_of_Trials loop Z1 := Z1 + (+Test_Vector_Seed) * Junk1; Z2 := Inverse (Z1); Difference := Abs (One - Z1 * Z2); if Difference > Max_Err then Max_Err := Difference; end if; end loop; put ("Result = "); put (e_Real_Image (Max_Err)); new_line; end Test_Mult_and_Add; ----------------------- -- Test_Mult_and_Div -- ----------------------- procedure Test_Mult_And_Div (Test_Vector_Seed : Real) is Difference, Max_Err : E_Real; No_of_Trials : constant Integer := 20_000; begin for I in 1 .. No_of_Trials loop Z1 := Z1 + Junk2 * (+Test_Vector_Seed); Z2 := (Z1 * (One / Z1)); --Z2 := (Z1 / Z1); Difference := Abs (One - Z2); if Difference > Max_Err then Max_Err := Difference; end if; end loop; put ("Result = "); put (e_Real_Image (Max_Err)); new_line; end Test_Mult_And_Div; ------------------------ -- Test_Make_Extended -- ------------------------ procedure Test_Make_Extended (Test_Vector_Seed : Real) is Max : Real; Difference : Real; Junk1, Junk2 : Real; No_of_Trials : constant Integer := 20_000; begin Junk1 := 0.0; Max := 0.0; for I in 1 .. No_of_Trials loop Junk1 := Junk1 + Test_Vector_Seed; Junk2 := Make_Real (Make_Extended (Junk1)); Difference := Junk2 - Junk1; IF Abs(Difference) > Max THEN Max := Difference; END IF; end loop; put ("Max error in (X - Make_Real (Make_Extended(X))) = "); put (Max); new_line; end Test_Make_Extended; begin Print_Extended_Real_Settings; new_line(2); put ("Next step: consider the following 70 digit number:"); new_line(2); put (" " & Seventy_Digits); new_line(1); pause ( "The 70 digit number printed above will be translated to binary,", "(e_Real) then translated back to text and printed just below."); E_Real_Val (Seventy_Digits, Y, Last); new_line; put (E_Real_Image (Y)); new_line(1); pause ( "The 1st number at the top is correctly reproduced (usually) a few digits", "beyond the advertized precision. Beyond that a few more wrong digits", "are retained. The point at which the correct digits stop and the wrong", "start varies, so it is usually best to keep them all for best accuracy." ); new_line(1); --pause ("You can round away a guard digit by calling function Machine(X):"); --new_line; --put (E_Real_Image (Machine (Y))); --new_line(1); new_line(1); new_line(1); pause ( "Usually you don't want to print all these digits, so use for example,", "E_Real_Image (X, Aft => 15) to print 15 digits after the decimal.", "This is not rounded to 15 digits. It just truncates the string.", "Also, the min value for Aft is 12. It will always print at least 12." ); new_line(1); E_Real_Val (Seventy_Digits, Y, Last); new_line; put (E_Real_Image (Y, Aft => 15)); new_line(1); --procedure E_Real_Val (X : in String; -- Result: out E_Real; -- Last : out Natural); Pause ("More of the same."); new_line(1); Number_String := (others => ' '); Number_String(1..50) := "12345678901234567890123456789012345678901234567890"; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..52) := " 12345678901234567890123456789012345678901234567890"; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..53) := "12345678901234567890123456789012345678901234567890 "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..54) := "12345678901234567890123456789012345678901234567890. "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..54) := "123456789012345678901234.56789012345678901234567890 "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..56) := " .12345678901234567890123456789012345678901234567890 "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..59) := "00000.12345678901234567890123456789012345678901234567890 "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..55) := "+.12345678901234567890123456789012345678901234567890 "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..55) := "-.12345678901234567890123456789012345678901234567890 "; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..58) := "-.12345678901234567890123456789012345678901234567890e-0111"; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..57) := "-.12345678901234567890123456789012345678901234567890E0111"; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line(1); Number_String := (others => ' '); Number_String(1..59) := ".1234567890123456789012345678901234567890123456789e99999999"; new_line; put (" "); put (Number_String(1..60)); new_line; put (" Translating this string to binary and back to text, I get:"); E_Real_Val (Number_String, Y, Last); new_line; put (" " & E_Real_Image (Y)); new_line; pause ("Print a few numbers:"); new_line; put ("One:"); new_line; put (E_Real_Image (One)); new_line; put ("10**400:"); new_line; put (E_Real_Image (Ten**400)); new_line; put ("10**-400:"); new_line; put (E_Real_Image (Ten**(-400))); new_line; put ("10**-2899:"); new_line; put (E_Real_Image (Zero + Ten**(-2899))); new_line; put ("E_Real_Model_Epsilon:"); new_line; put (E_Real_Image (E_Real_Model_Epsilon)); new_line; put ("E_Real_Model_Epsilon + 10**-600:"); new_line; put (E_Real_Image (E_Real_Model_Epsilon + Ten**(-600))); new_line; put ("1 + E_Real_Model_Epsilon:"); new_line; put (E_Real_Image (E_Real_Model_Epsilon + One)); new_line; put ("1 + E_Real_Machine_Epsilon:"); new_line; put (E_Real_Image (E_Real_Machine_Epsilon + One)); new_line; put ("0.0:"); new_line; put (E_Real_Image (Zero)); new_line; new_line(1); pause (" The following tests the 2 functions: Make_Extended and Make_Real.", " These 2 routines translate between ordinary 15 decimal digit floats", " (Real) and extended precision floats (e_Real). Numbers in the ordinary", " floating point type (Real) are transformed into extended precision floats", " (e_Real) by calls to Make_Extended. e_Real's are transformed back to", " Real's (with a loss of precision) by calls to Make_Real. Below we print:", " ", " Result := X - Make_Real (Make_Extended(X))", " ", " 2_000 values of X are used each test, and max Abs(Result) is printed."); new_line; Test_Vector_Seed := 1.2345678912345678E-4; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed + 1.2345678912345678E-4; Test_Make_Extended (Test_Vector_Seed); end loop; Test_Vector_Seed := 1.2345678912345678E+4; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed * 1.2345678912345678E+4; Test_Make_Extended (Test_Vector_Seed); end loop; Test_Vector_Seed := 1.234567891234567891E+31; Test_Make_Extended (Test_Vector_Seed); Test_Vector_Seed := 1.234567891234567891E+8; Test_Make_Extended (Test_Vector_Seed); Test_Vector_Seed := 1.234567891234567891E-8; Test_Make_Extended (Test_Vector_Seed); Test_Vector_Seed := 1.234567891234567891E-31; Test_Make_Extended (Test_Vector_Seed); new_line(1); pause (" Some tests of ""+"" and ""*"". The following is calculated: ", " ", " Result := One - X * Reciprocal (X)", " ", " where Reciprocal (X) = 1/X is obtained from Newton's method.", " 2_000 values of X are used each test, and max Abs(Result) is printed."); new_line; Test_Vector_Seed := 1.2345678912345678E+31; Test_Mult_and_Add (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E+8; Test_Mult_and_Add (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-8; Test_Mult_and_Add (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-31; Test_Mult_and_Add (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-14; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed + 1.2345678912345678E-4; Test_Mult_and_Add (Test_Vector_Seed); end loop; Test_Vector_Seed := 1.2345678912345678E+14; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed * 1.2345678912345678E+4; Test_Mult_and_Add (Test_Vector_Seed); end loop; pause ( "Notice that the error is usually much smaller than you might expect", "from the number of decimal digits requested. For simple operations", "like ""*"", ""+"", and ""/"" the first of the 2 guard digits is usually,", "calculated correctly, (and that's an extra 9 decimal digits of precision.", "In fact 2 guard digits (18 decimal digits) are always used. The 2nd", "guard digits is for safety, and so that Sqrt's etc are of similar accuracy", "to operations like ""*""."); new_line(1); new_line(1); pause (" Some tests of ""*"" and ""/"". The following is calculated:", " ", " Result := One - X * (One / X)", " ", " 2_000 values of X are used each test, and max Abs(Result) is printed."); new_line; Test_Vector_Seed := 1.2345678912345678E-4; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed + 1.2345678912345678E-4; Test_Mult_and_Div (Test_Vector_Seed); end loop; Test_Vector_Seed := 1.2345678912345678E+4; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed * 1.2345678912345678E+4; Test_Mult_and_Div (Test_Vector_Seed); end loop; Test_Vector_Seed := 1.2345678912345678E+31; Test_Mult_And_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E+8; Test_Mult_And_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-8; Test_Mult_And_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-31; Test_Mult_And_Div (Test_Vector_Seed); new_line; pause (" Some tests of operations between e_Digit types and e_Real types.", " e_Digits are special e_Reals that are small and efficient.", " X is an e_Real and D is an e_Digit. The following is calculated:", " ", " Result := One - (D * (X / D)) / X)", " ", " 2_000 values of D are used each test, and max Abs(Result) is printed."); new_line(2); Test_Vector_Seed := 1.2345678912345678E+61; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E+28; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E+27; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E+26; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E+4; for I in 1..10 loop Test_Vector_Seed := Test_Vector_Seed * 1.2345678912345678E+4; Test_Digit_Mult_and_Div (Test_Vector_Seed); end loop; Test_Vector_Seed := 1.2345678912345678E-4; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-7; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-18; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-28; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-31; Test_Digit_Mult_and_Div (Test_Vector_Seed); Test_Vector_Seed := 1.2345678912345678E-91; Test_Digit_Mult_and_Div (Test_Vector_Seed); new_line; pause (" Some simple tests of the exponentiation operator ""**"":"); new_line; Z1 := (Make_Extended (7.2345)) ** (-277); put (Make_Real(Z1)); put(" should be: "); put (7.2345**(-277)); new_line; Z1 := (Make_Extended (7.2345)) ** 277; put (Make_Real(Z1)); put(" should be: "); put (7.2345**277); new_line; Z1 := (Make_Extended (1.2345)) ** 177; put (Make_Real(Z1)); put(" should be: "); put (1.2345**177); new_line; Z1 := (One + One + One) ** 97; put (Make_Real(Z1)); put(" should be: "); put (3.0**97); new_line; Z1 := (One + One) ** 67; put (Make_Real(Z1)); put(" should be: "); put (2.0**67); new_line; Z1 := (One + One) ** (-67); put (Make_Real(Z1)); put(" should be: "); put (2.0**(-67)); new_line; Z1 := (One + One) ** (0); put (Make_Real(Z1)); put(" should be: "); put (2.0**(0)); new_line(1); new_line; pause (" A test of Round_Away_Smallest_Guard_Digit and e_Real_Machine_Epsilon:"); new_line; Z1 := (One + e_Real_Machine_Epsilon) - One; Z1 := Z1 / e_Real_Machine_Epsilon; put(" should be 1.0:"); put (Make_Real(Z1)); new_line; Z1 := Machine (One + e_Real_Machine_Epsilon) - One; put(" should be 0.0:"); put (Make_Real(Z1)); new_line; Z2 := Make_Extended(0.99999999999999); Z1 := Machine (Z2 + e_Real_Machine_Epsilon) - Z2; Z1 := Z1 / e_Real_Machine_Epsilon; put(" should be 1.0:"); put (Make_Real(Z1)); new_line; loop begin new_line(2); put ("Enter a number: "); Number_String := Blank_Str; --get_line (Number_String, LengthStr); get_Line (Number_String, Last); E_Real_Val (Number_String, Y, Last); new_line; put ("I read this as: "); new_line; put (E_Real_Image (Y)); exit; exception when others => put_line("Some error. Try again."); end; end loop; end;
package body Kafka.Topic is function Create_Topic_Handle(Handle : Handle_Type; Topic : String; Config : Topic_Config_Type) return Topic_Type is C_Topic : chars_ptr := New_String(Topic); Topic_Handle : Topic_Type; begin Topic_Handle := rd_kafka_topic_new(Handle, C_Topic, Config); Free(C_Topic); return Topic_Handle; end; function Create_Topic_Handle(Handle : Handle_Type; Topic : String) return Topic_Type is begin return Create_Topic_Handle(Handle, Topic, Topic_Config_Type(System.Null_Address)); end; function Get_Name(Topic : Topic_Type) return String is begin return Interfaces.C.Strings.Value(rd_kafka_topic_name(Topic)); end; end Kafka.Topic;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . I N D E F I N I T E _ H O L D E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2013-2019, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- ------------------------------------------------------------------------------ -- This is an optimized version of Indefinite_Holders using copy-on-write. -- It is used on platforms that support atomic built-ins. private with Ada.Finalization; private with Ada.Streams; private with System.Atomic_Counters; generic type Element_Type (<>) is private; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Indefinite_Holders is pragma Annotate (CodePeer, Skip_Analysis); pragma Preelaborate (Indefinite_Holders); pragma Remote_Types (Indefinite_Holders); type Holder is tagged private; pragma Preelaborable_Initialization (Holder); Empty_Holder : constant Holder; function "=" (Left, Right : Holder) return Boolean; function To_Holder (New_Item : Element_Type) return Holder; function Is_Empty (Container : Holder) return Boolean; procedure Clear (Container : in out Holder); function Element (Container : Holder) return Element_Type; procedure Replace_Element (Container : in out Holder; New_Item : Element_Type); procedure Query_Element (Container : Holder; Process : not null access procedure (Element : Element_Type)); procedure Update_Element (Container : in out Holder; Process : not null access procedure (Element : in out Element_Type)); type Constant_Reference_Type (Element : not null access constant Element_Type) is private with Implicit_Dereference => Element; type Reference_Type (Element : not null access Element_Type) is private with Implicit_Dereference => Element; function Constant_Reference (Container : aliased Holder) return Constant_Reference_Type; pragma Inline (Constant_Reference); function Reference (Container : aliased in out Holder) return Reference_Type; pragma Inline (Reference); procedure Assign (Target : in out Holder; Source : Holder); function Copy (Source : Holder) return Holder; procedure Move (Target : in out Holder; Source : in out Holder); private use Ada.Finalization; use Ada.Streams; type Element_Access is access all Element_Type; type Holder_Access is access all Holder; type Shared_Holder is record Counter : System.Atomic_Counters.Atomic_Counter; Element : Element_Access; end record; type Shared_Holder_Access is access all Shared_Holder; procedure Reference (Item : not null Shared_Holder_Access); -- Increment reference counter procedure Unreference (Item : not null Shared_Holder_Access); -- Decrement reference counter, deallocate Item when counter goes to zero procedure Read (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Container : out Holder); procedure Write (Stream : not null access Ada.Streams.Root_Stream_Type'Class; Container : Holder); type Holder is new Ada.Finalization.Controlled with record Reference : Shared_Holder_Access; Busy : Natural := 0; end record; for Holder'Read use Read; for Holder'Write use Write; overriding procedure Adjust (Container : in out Holder); overriding procedure Finalize (Container : in out Holder); type Reference_Control_Type is new Controlled with record Container : Holder_Access; end record; overriding procedure Adjust (Control : in out Reference_Control_Type); pragma Inline (Adjust); overriding procedure Finalize (Control : in out Reference_Control_Type); pragma Inline (Finalize); type Constant_Reference_Type (Element : not null access constant Element_Type) is record Control : Reference_Control_Type := raise Program_Error with "uninitialized reference"; -- The RM says, "The default initialization of an object of -- type Constant_Reference_Type or Reference_Type propagates -- Program_Error." end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type); for Constant_Reference_Type'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type); for Constant_Reference_Type'Read use Read; type Reference_Type (Element : not null access Element_Type) is record Control : Reference_Control_Type := raise Program_Error with "uninitialized reference"; -- The RM says, "The default initialization of an object of -- type Constant_Reference_Type or Reference_Type propagates -- Program_Error." end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type); for Reference_Type'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type); for Reference_Type'Read use Read; Empty_Holder : constant Holder := (Controlled with null, 0); end Ada.Containers.Indefinite_Holders;
------------------------------------------------------------------------------ -- -- -- SPARK LIBRARY COMPONENTS -- -- -- -- S P A R K . T E S T _ A R R A Y _ L E M M A S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2016, AdaCore -- -- -- -- SPARK 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. SPARK 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/>. -- -- -- ------------------------------------------------------------------------------ package SPARK.Test_Array_Lemmas with SPARK_Mode is pragma Warnings (Off, "postcondition does not check the outcome of calling"); type Index_Type is range 1 .. 10; type Arr_Int_Constrained is array (Index_Type) of Integer; type Arr_Float_Constrained is array (Index_Type) of Float; procedure Test_Transitive_Order_Int (Arr : Arr_Int_Constrained) with Global => null, Pre => (for all I in Index_Type'First + 1 .. Index_Type'Last => (Arr (I - 1) < Arr (I))), Post => (for all I in Arr'Range => (for all J in Arr'Range => (if I < J then Arr (I) < Arr (J)))); procedure Test_Transitive_Order_Float (Arr : Arr_Float_Constrained) with Global => null, Pre => (for all I in Index_Type'First + 1 .. Index_Type'Last => (Arr (I - 1) < Arr (I))), Post => (for all I in Arr'Range => (for all J in Arr'Range => (if I < J then Arr (I) < Arr (J)))); type Arr_Int_Unconstrained is array (Integer range <>) of Integer; type Arr_Float_Unconstrained is array (Integer range <>) of Float; procedure Test_Transitive_Order_Int (Arr : Arr_Int_Unconstrained) with Global => null, Pre => (for all I in Arr'First + 1 .. Arr'Last => (Arr (I - 1) < Arr (I))), Post => (for all I in Arr'Range => (for all J in Arr'Range => (if I < J then Arr (I) < Arr (J)))); procedure Test_Transitive_Order_Float (Arr : Arr_Float_Unconstrained) with Global => null, Pre => (for all I in Arr'First + 1 .. Arr'Last => (Arr (I - 1) < Arr (I))), Post => (for all I in Arr'Range => (for all J in Arr'Range => (if I < J then Arr (I) < Arr (J)))); end SPARK.Test_Array_Lemmas;
-- Abstract : -- -- see spec -- -- Copyright (C) 2014 - 2019 All Rights Reserved. -- -- The WisiToken package is free software; you can redistribute it -- and/or modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, or -- (at your option) any later version. This library is distributed in -- the hope that it will be useful, but WITHOUT ANY WARRANTY; without -- even the implied warranty of MERCHAN- TABILITY 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. pragma License (Modified_GPL); package body WisiToken.Parse.LR.Parser_Lists is function Parser_Stack_Image (Stack : in Parser_Stacks.Stack; Descriptor : in WisiToken.Descriptor; Tree : in Syntax_Trees.Tree; Depth : in SAL.Base_Peek_Type := 0) return String is use all type SAL.Base_Peek_Type; use Ada.Strings.Unbounded; Last : constant SAL.Base_Peek_Type := (if Depth = 0 then Stack.Depth else SAL.Base_Peek_Type'Min (Depth, Stack.Depth)); Result : Unbounded_String := +"("; begin for I in 1 .. Last loop declare use all type WisiToken.Syntax_Trees.Node_Index; Item : Parser_Stack_Item renames Stack.Peek (I); begin Result := Result & ((if Item.State = Unknown_State then " " else Trimmed_Image (Item.State)) & " :" & (if I = Stack.Depth then "" else (if Item.Token = Syntax_Trees.Invalid_Node_Index -- From recover fast-forward then "" else Tree.Image (Item.Token, Descriptor) & ", "))); end; end loop; return To_String (Result & ")"); end Parser_Stack_Image; function New_List (Shared_Tree : in Syntax_Trees.Base_Tree_Access) return List is First_Parser_Label : constant := 0; Parser : Parser_State := (Label => First_Parser_Label, others => <>); begin Parser.Tree.Initialize (Shared_Tree, Flush => True); return Result : List do Result.Parser_Label := First_Parser_Label; Result.Elements.Append (Parser); end return; end New_List; function Last_Label (List : in Parser_Lists.List) return Natural is begin return List.Parser_Label; end Last_Label; function Count (List : in Parser_Lists.List) return SAL.Base_Peek_Type is begin return List.Elements.Length; end Count; function First (List : aliased in out Parser_Lists.List'Class) return Cursor is begin return (Elements => List.Elements'Access, Ptr => List.Elements.First); end First; procedure Next (Cursor : in out Parser_Lists.Cursor) is begin Parser_State_Lists.Next (Cursor.Ptr); end Next; function Is_Done (Cursor : in Parser_Lists.Cursor) return Boolean is use Parser_State_Lists; begin return Cursor.Ptr = No_Element; end Is_Done; function Active_Parser_Count (Cursor : in Parser_Lists.Cursor) return SAL.Base_Peek_Type is begin return Cursor.Elements.Length; end Active_Parser_Count; function Label (Cursor : in Parser_Lists.Cursor) return Natural is begin return Parser_State_Lists.Constant_Reference (Cursor.Ptr).Label; end Label; function Total_Recover_Cost (Cursor : in Parser_Lists.Cursor) return Integer is Result : Integer := 0; begin for Error of Parser_State_Lists.Constant_Reference (Cursor.Ptr).Errors loop Result := Error.Recover.Cost; end loop; return Result; end Total_Recover_Cost; function Max_Recover_Ops_Length (Cursor : in Parser_Lists.Cursor) return Ada.Containers.Count_Type is use Ada.Containers; Result : Count_Type := 0; Errors : Parse_Error_Lists.List renames Parser_State_Lists.Constant_Reference (Cursor.Ptr).Errors; begin for Error of Errors loop if Error.Recover.Ops.Length > Result then Result := Error.Recover.Ops.Length; end if; end loop; return Result; end Max_Recover_Ops_Length; function Min_Recover_Cost (Cursor : in Parser_Lists.Cursor) return Integer is Result : Integer := Integer'Last; Errors : Parse_Error_Lists.List renames Parser_State_Lists.Constant_Reference (Cursor.Ptr).Errors; begin for Error of Errors loop if Error.Recover.Cost < Result then Result := Error.Recover.Cost; end if; end loop; return Result; end Min_Recover_Cost; procedure Set_Verb (Cursor : in Parser_Lists.Cursor; Verb : in All_Parse_Action_Verbs) is begin Parser_State_Lists.Reference (Cursor.Ptr).Verb := Verb; end Set_Verb; function Verb (Cursor : in Parser_Lists.Cursor) return All_Parse_Action_Verbs is begin return Parser_State_Lists.Constant_Reference (Cursor.Ptr).Verb; end Verb; procedure Terminate_Parser (Parsers : in out List; Current : in out Cursor'Class; Message : in String; Trace : in out WisiToken.Trace'Class; Terminals : in Base_Token_Arrays.Vector) is use all type SAL.Base_Peek_Type; State : Parser_State renames Parser_State_Lists.Constant_Reference (Current.Ptr).Element.all; begin if Trace_Parse > Outline then Trace.Put_Line (Integer'Image (Current.Label) & ": terminate (" & Trimmed_Image (Integer (Parsers.Count) - 1) & " active)" & ": " & Message & Image (State.Tree.Min_Terminal_Index (State.Current_Token), Terminals, Trace.Descriptor.all)); end if; Current.Free; if Parsers.Count = 1 then Parsers.First.State_Ref.Tree.Flush; end if; end Terminate_Parser; procedure Duplicate_State (Parsers : in out List; Current : in out Cursor'Class; Trace : in out WisiToken.Trace'Class; Terminals : in Base_Token_Arrays.Vector) is use all type SAL.Base_Peek_Type; use all type Ada.Containers.Count_Type; function Compare (Stack_1 : in Parser_Stacks.Stack; Tree_1 : in Syntax_Trees.Tree; Stack_2 : in Parser_Stacks.Stack; Tree_2 : in Syntax_Trees.Tree) return Boolean is begin if Stack_1.Depth /= Stack_2.Depth then return False; else for I in reverse 1 .. Stack_1.Depth - 1 loop -- Assume they differ near the top; no point in comparing bottom -- item. The syntax trees will differ even if the tokens on the stack -- are the same, so compare the tokens. declare Item_1 : Parser_Stack_Item renames Stack_1 (I); Item_2 : Parser_Stack_Item renames Stack_2 (I); begin if Item_1.State /= Item_2.State then return False; else if not Syntax_Trees.Same_Token (Tree_1, Item_1.Token, Tree_2, Item_2.Token) then return False; end if; end if; end; end loop; return True; end if; end Compare; Other : Cursor := Parsers.First; begin loop exit when Other.Is_Done; declare Other_Parser : Parser_State renames Other.State_Ref; begin if Other.Label /= Current.Label and then Other.Verb /= Error and then Compare (Other_Parser.Stack, Other_Parser.Tree, Current.State_Ref.Stack, Current.State_Ref.Tree) then exit; end if; end; Other.Next; end loop; if not Other.Is_Done then -- Both have the same number of errors, otherwise one would have been -- terminated earlier. if Other.Total_Recover_Cost = Current.Total_Recover_Cost then if Other.Max_Recover_Ops_Length = Current.Max_Recover_Ops_Length then Parsers.Terminate_Parser (Other, "duplicate state: random", Trace, Terminals); else if Other.Max_Recover_Ops_Length > Current.Max_Recover_Ops_Length then null; else Other := Cursor (Current); Current.Next; end if; Parsers.Terminate_Parser (Other, "duplicate state: ops length", Trace, Terminals); end if; else if Other.Total_Recover_Cost > Current.Total_Recover_Cost then null; else Other := Cursor (Current); Current.Next; end if; Parsers.Terminate_Parser (Other, "duplicate state: cost", Trace, Terminals); end if; end if; end Duplicate_State; function State_Ref (Position : in Cursor) return State_Reference is begin return (Element => Parser_State_Lists.Constant_Reference (Position.Ptr).Element); end State_Ref; function First_State_Ref (List : in Parser_Lists.List'Class) return State_Reference is begin return (Element => Parser_State_Lists.Constant_Reference (List.Elements.First).Element); end First_State_Ref; function First_Constant_State_Ref (List : in Parser_Lists.List'Class) return Constant_State_Reference is begin return (Element => Parser_State_Lists.Constant_Reference (List.Elements.First).Element); end First_Constant_State_Ref; procedure Put_Top_10 (Trace : in out WisiToken.Trace'Class; Cursor : in Parser_Lists.Cursor) is Parser_State : Parser_Lists.Parser_State renames Parser_State_Lists.Constant_Reference (Cursor.Ptr); begin Trace.Put (Natural'Image (Parser_State.Label) & " stack: "); Trace.Put_Line (Image (Parser_State.Stack, Trace.Descriptor.all, Parser_State.Tree, Depth => 10)); end Put_Top_10; procedure Prepend_Copy (List : in out Parser_Lists.List; Cursor : in Parser_Lists.Cursor'Class) is New_Item : Parser_State; begin List.Parser_Label := List.Parser_Label + 1; declare Item : Parser_State renames Parser_State_Lists.Reference (Cursor.Ptr).Element.all; -- We can't do 'Prepend' in the scope of this 'renames'; -- that would be tampering with cursors. begin Item.Tree.Set_Flush_False; -- We specify all items individually, rather copy Item and then -- override a few, to avoid copying large items like Recover. -- We copy Recover.Enqueue_Count .. Check_Count for unit tests. New_Item := (Shared_Token => Item.Shared_Token, Recover_Insert_Delete => Item.Recover_Insert_Delete, Prev_Deleted => Item.Prev_Deleted, Current_Token => Item.Current_Token, Inc_Shared_Token => Item.Inc_Shared_Token, Stack => Item.Stack, Tree => Item.Tree, Recover => (Enqueue_Count => Item.Recover.Enqueue_Count, Config_Full_Count => Item.Recover.Config_Full_Count, Check_Count => Item.Recover.Check_Count, others => <>), Resume_Active => Item.Resume_Active, Resume_Token_Goal => Item.Resume_Token_Goal, Conflict_During_Resume => Item.Conflict_During_Resume, Zombie_Token_Count => 0, Errors => Item.Errors, Label => List.Parser_Label, Verb => Item.Verb); end; List.Elements.Prepend (New_Item); end Prepend_Copy; procedure Free (Cursor : in out Parser_Lists.Cursor'Class) is Temp : Parser_State_Lists.Cursor := Cursor.Ptr; begin Parser_State_Lists.Next (Cursor.Ptr); Parser_State_Lists.Delete (Cursor.Elements.all, Temp); end Free; ---------- -- stuff for iterators function To_Cursor (Ptr : in Parser_Node_Access) return Cursor is begin return (Ptr.Elements, Ptr.Ptr); end To_Cursor; function Constant_Reference (Container : aliased in List'Class; Position : in Parser_Node_Access) return Constant_Reference_Type is pragma Unreferenced (Container); begin return (Element => Parser_State_Lists.Constant_Reference (Position.Ptr).Element); end Constant_Reference; function Reference (Container : aliased in out List'Class; Position : in Parser_Node_Access) return State_Reference is pragma Unreferenced (Container); begin return (Element => Parser_State_Lists.Reference (Position.Ptr).Element); end Reference; function Persistent_State_Ref (Position : in Parser_Node_Access) return State_Access is begin return State_Access (Parser_State_Lists.Persistent_Ref (Position.Ptr)); end Persistent_State_Ref; type List_Access is access all List; type Iterator is new Iterator_Interfaces.Forward_Iterator with record Container : List_Access; end record; overriding function First (Object : Iterator) return Parser_Node_Access; overriding function Next (Object : in Iterator; Position : in Parser_Node_Access) return Parser_Node_Access; overriding function First (Object : Iterator) return Parser_Node_Access is begin return (Elements => Object.Container.Elements'Access, Ptr => Object.Container.Elements.First); end First; overriding function Next (Object : in Iterator; Position : in Parser_Node_Access) return Parser_Node_Access is pragma Unreferenced (Object); begin return (Position.Elements, Parser_State_Lists.Next (Position.Ptr)); end Next; function Iterate (Container : aliased in out List) return Iterator_Interfaces.Forward_Iterator'Class is begin return Iterator'(Container => Container'Access); end Iterate; function Has_Element (Iterator : in Parser_Node_Access) return Boolean is begin return Parser_State_Lists.Has_Element (Iterator.Ptr); end Has_Element; function Label (Iterator : in Parser_State) return Natural is begin return Iterator.Label; end Label; function Verb (Iterator : in Parser_State) return All_Parse_Action_Verbs is begin return Iterator.Verb; end Verb; procedure Set_Verb (Iterator : in out Parser_State; Verb : in All_Parse_Action_Verbs) is begin Iterator.Verb := Verb; end Set_Verb; end WisiToken.Parse.LR.Parser_Lists;
-- Copyright (c) 2021 Devin Hill -- zlib License -- see LICENSE for details. with GBA.Display.Backgrounds.Refs; package GBA.Refs is subtype BG_Ref is GBA.Display.Backgrounds.Refs.BG_Ref; subtype Reg_BG_Ref is GBA.Display.Backgrounds.Refs.Reg_BG_Ref; subtype Aff_BG_Ref is GBA.Display.Backgrounds.Refs.Aff_BG_Ref; end GBA.Refs;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- G N A T . H E A P _ S O R T _ G -- -- -- -- S p e c -- -- -- -- Copyright (C) 1995-2020, AdaCore -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Heapsort generic package using formal procedures -- This package provides a generic heapsort routine that can be used with -- different types of data. -- See also GNAT.Heap_Sort, a version that works with subprogram access -- parameters, allowing code sharing. The generic version is slightly more -- efficient but does not allow code sharing and has an interface that is -- more awkward to use. -- There is also GNAT.Heap_Sort_A, which is now considered obsolete, but -- was an older version working with subprogram parameters. This version -- is retained for backwards compatibility with old versions of GNAT. -- This heapsort algorithm uses approximately N*log(N) compares in the -- worst case and is in place with no additional storage required. See -- the body for exact details of the algorithm used. generic -- The data to be sorted is assumed to be indexed by integer values from -- 1 to N, where N is the number of items to be sorted. In addition, the -- index value zero is used for a temporary location used during the sort. with procedure Move (From : Natural; To : Natural); -- A procedure that moves the data item with index value From to the data -- item with index value To (the old value in To being lost). An index -- value of zero is used for moves from and to a single temporary location. -- For best efficiency, this routine should be marked as inlined. with function Lt (Op1, Op2 : Natural) return Boolean; -- A function that compares two items and returns True if the item with -- index Op1 is less than the item with Index Op2, and False if the Op1 -- item is greater than the Op2 item. If the two items are equal, then -- it does not matter whether True or False is returned (it is slightly -- more efficient to return False). For best efficiency, this routine -- should be marked as inlined. -- Note on use of temporary location -- There are two ways of providing for the index value zero to represent -- a temporary value. Either an extra location can be allocated at the -- start of the array, or alternatively the Move and Lt subprograms can -- test for the case of zero and treat it specially. In any case it is -- desirable to specify the two subprograms as inlined and the tests for -- zero will in this case be resolved at instantiation time. package GNAT.Heap_Sort_G is pragma Pure; procedure Sort (N : Natural); -- This procedures sorts items in the range from 1 to N into ascending -- order making calls to Lt to do required comparisons, and Move to move -- items around. Note that, as described above, both Move and Lt use a -- single temporary location with index value zero. This sort is not -- stable, i.e. the order of equal elements in the input is not preserved. end GNAT.Heap_Sort_G;
-------------------------------------------------------------------------------- -- MIT License -- -- Copyright (c) 2020 Zane Myers -- -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- -- The above copyright notice and this permission notice shall be included in all -- copies or substantial portions of the Software. -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -- SOFTWARE. -------------------------------------------------------------------------------- with Vulkan.Math.GenFMatrix; with Vulkan.Math.Vec2; use Vulkan.Math.GenFMatrix; use Vulkan.Math.Vec2; -------------------------------------------------------------------------------- --< @group Vulkan Math Basic Types -------------------------------------------------------------------------------- --< @summary --< This package provides a single precision floating point matrix with 3 rows --< and 2 columns. -------------------------------------------------------------------------------- package Vulkan.Math.Mat4x2 is pragma Preelaborate; pragma Pure; --< A 4x2 matrix of single-precision floating point numbers. subtype Vkm_Mat4x2 is Vkm_Mat( last_row_index => 3, last_column_index => 1); ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Mat4x2 type. --< --< @description --< Construct a 4x2 matrix with each component set to 0.0 --< --< @return --< A 4x2 matrix. ---------------------------------------------------------------------------- function Make_Mat4x2 return Vkm_Mat4x2 is (GFM.Make_GenMatrix(cN => 1, rN => 3)) with Inline; ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Mat4x2 type. --< --< @description --< Construct a 4x2 matrix with each component set to a different value. --< --< | value1 value4 | --< | value2 value5 | --< | value3 value6 | --< --< @param value1 --< The first value to set for the matrix. --< --< @param value2 --< The second value to set for the matrix. --< --< @param value3 --< The third value to set for the matrix. --< --< @param value4 --< The fourth value to set for the matrix. --< --< @param value5 --< The fifth value to set for the matrix. --< --< @param value6 --< The sixth value to set for the matrix. --< --< @return --< A 4x2 matrix. ---------------------------------------------------------------------------- function Make_Mat4x2 ( value1, value2, value3, value4, value5, value6, value7, value8 : in Vkm_Float) return Vkm_Mat4x2 is (GFM.Make_GenMatrix( cN => 1, rN => 3, c0r0_val => value1, c0r1_val => value3, c0r2_val => value5, c0r3_val => value7, c1r0_val => value2, c1r1_val => value4, c1r2_val => value6, c1r3_val => value8)) with Inline; ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Mat4x2 type. --< --< @description --< Construct a 4x2 matrix with each row set to the value of a 2 dimmensional --< vector. --< --< @param value1 --< The first value to set for the matrix. --< --< @param value2 --< The second value to set for the matrix. --< --< @param value3 --< The third value to set for the matrix. --< --< @return --< A 4x2 matrix. ---------------------------------------------------------------------------- function Make_Mat4x2 ( value1, value2, value3, value4 : in Vkm_Vec2) return Vkm_Mat4x2 is (GFM.Make_GenMatrix( cN => 1, rN => 3, c0r0_val => value1.x, c0r1_val => value2.x, c0r2_val => value3.x, c0r3_val => value4.x, c1r0_val => value1.y, c1r1_val => value2.y, c1r2_val => value3.y, c1r3_val => value4.y)) with Inline; ---------------------------------------------------------------------------- --< @summary --< Constructor for Vkm_Mat4x2 type. --< --< @description --< Construct a 4x2 matrix using values from an existing matrix. --< --< If the provided matrix has dimmensions that are not the same as this --< matrix, the corresponding element in the 4x4 identity matrix is used for --< out of bounds accesses. --< --< @param value1 --< The submatrix to extract values from. --< --< @return --< A 4x2 matrix. ---------------------------------------------------------------------------- function Make_Mat4x2 ( value1 : in Vkm_Mat) return Vkm_Mat4x2 is (GFM.Make_GenMatrix( cN => 1, rN => 3, c0r0_val => value1.c0r0, c0r1_val => value1.c0r1, c0r2_val => value1.c0r2, c0r3_val => value1.c0r3, c1r0_val => value1.c1r0, c1r1_val => value1.c1r1, c1r2_val => value1.c1r2, c1r3_val => value1.c1r3)) with Inline; end Vulkan.Math.Mat4x2;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Clauses.Hash is new AMF.Elements.Generic_Hash (UML_Clause, UML_Clause_Access);
-- BinToAsc_Suite.Base85_Tests -- Unit tests for BinToAsc -- Copyright (c) 2015, James Humphry - see LICENSE file for details with AUnit; use AUnit; with AUnit.Test_Cases; use AUnit.Test_Cases; with ASCII85; with BinToAsc_Suite.Utils; package BinToAsc_Suite.Base85_Tests is type Base85_Test is new Test_Cases.Test_Case with null record; procedure Register_Tests (T: in out Base85_Test); function Name (T : Base85_Test) return Test_String; procedure Set_Up (T : in out Base85_Test); procedure Check_Z85_Symmetry is new BinToAsc_Suite.Utils.Check_Symmetry(BToA => ASCII85.BToA, Codec_To_String => ASCII85.Z85.Base85_To_String, Codec_To_Bin => ASCII85.Z85.Base85_To_Bin); procedure Check_Z85_Length is new BinToAsc_Suite.Utils.Check_Length(BToA => ASCII85.BToA, Codec_To_String => ASCII85.Z85.Base85_To_String, Codec_To_Bin => ASCII85.Z85.Base85_To_Bin); procedure Check_Z85_Test_Vector (T : in out Test_Cases.Test_Case'Class); procedure Check_Z85_Test_Vector_By_Char (T : in out Test_Cases.Test_Case'Class); procedure Check_Z85_Junk_Rejection (T : in out Test_Cases.Test_Case'Class); procedure Check_Z85_High_Group (T : in out Test_Cases.Test_Case'Class); procedure Check_Z85_Length_Rejection (T : in out Test_Cases.Test_Case'Class); end BinToAsc_Suite.Base85_Tests;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ P R A G -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2016, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Casing; use Casing; with Checks; use Checks; with Debug; use Debug; with Einfo; use Einfo; with Errout; use Errout; with Exp_Ch11; use Exp_Ch11; with Exp_Util; use Exp_Util; with Expander; use Expander; with Inline; use Inline; with Namet; use Namet; with Nlists; use Nlists; with Nmake; use Nmake; with Opt; use Opt; with Restrict; use Restrict; with Rident; use Rident; with Rtsfind; use Rtsfind; with Sem; use Sem; with Sem_Ch8; use Sem_Ch8; with Sem_Util; use Sem_Util; with Sinfo; use Sinfo; with Sinput; use Sinput; with Snames; use Snames; with Stringt; use Stringt; with Stand; use Stand; with Tbuild; use Tbuild; with Uintp; use Uintp; with Validsw; use Validsw; package body Exp_Prag is ----------------------- -- Local Subprograms -- ----------------------- function Arg1 (N : Node_Id) return Node_Id; function Arg2 (N : Node_Id) return Node_Id; function Arg3 (N : Node_Id) return Node_Id; -- Obtain specified pragma argument expression procedure Expand_Pragma_Abort_Defer (N : Node_Id); procedure Expand_Pragma_Check (N : Node_Id); procedure Expand_Pragma_Common_Object (N : Node_Id); procedure Expand_Pragma_Import_Or_Interface (N : Node_Id); procedure Expand_Pragma_Inspection_Point (N : Node_Id); procedure Expand_Pragma_Interrupt_Priority (N : Node_Id); procedure Expand_Pragma_Loop_Variant (N : Node_Id); procedure Expand_Pragma_Psect_Object (N : Node_Id); procedure Expand_Pragma_Relative_Deadline (N : Node_Id); procedure Expand_Pragma_Suppress_Initialization (N : Node_Id); procedure Undo_Initialization (Def_Id : Entity_Id; N : Node_Id); -- This procedure is used to undo initialization already done for Def_Id, -- which is always an E_Variable, in response to the occurrence of the -- pragma N, a pragma Interface, Import, or Suppress_Initialization. In all -- these cases we want no initialization to occur, but we have already done -- the initialization by the time we see the pragma, so we have to undo it. ---------- -- Arg1 -- ---------- function Arg1 (N : Node_Id) return Node_Id is Arg : constant Node_Id := First (Pragma_Argument_Associations (N)); begin if Present (Arg) and then Nkind (Arg) = N_Pragma_Argument_Association then return Expression (Arg); else return Arg; end if; end Arg1; ---------- -- Arg2 -- ---------- function Arg2 (N : Node_Id) return Node_Id is Arg1 : constant Node_Id := First (Pragma_Argument_Associations (N)); begin if No (Arg1) then return Empty; else declare Arg : constant Node_Id := Next (Arg1); begin if Present (Arg) and then Nkind (Arg) = N_Pragma_Argument_Association then return Expression (Arg); else return Arg; end if; end; end if; end Arg2; ---------- -- Arg3 -- ---------- function Arg3 (N : Node_Id) return Node_Id is Arg1 : constant Node_Id := First (Pragma_Argument_Associations (N)); begin if No (Arg1) then return Empty; else declare Arg : Node_Id := Next (Arg1); begin if No (Arg) then return Empty; else Next (Arg); if Present (Arg) and then Nkind (Arg) = N_Pragma_Argument_Association then return Expression (Arg); else return Arg; end if; end if; end; end if; end Arg3; --------------------- -- Expand_N_Pragma -- --------------------- procedure Expand_N_Pragma (N : Node_Id) is Pname : constant Name_Id := Pragma_Name (N); begin -- Rewrite pragma ignored by Ignore_Pragma to null statement, so that -- the back end or the expander here does not get overenthusiastic and -- start processing such a pragma! if Get_Name_Table_Boolean3 (Pname) then Rewrite (N, Make_Null_Statement (Sloc (N))); return; end if; case Get_Pragma_Id (Pname) is -- Pragmas requiring special expander action when Pragma_Abort_Defer => Expand_Pragma_Abort_Defer (N); when Pragma_Check => Expand_Pragma_Check (N); when Pragma_Common_Object => Expand_Pragma_Common_Object (N); when Pragma_Import => Expand_Pragma_Import_Or_Interface (N); when Pragma_Inspection_Point => Expand_Pragma_Inspection_Point (N); when Pragma_Interface => Expand_Pragma_Import_Or_Interface (N); when Pragma_Interrupt_Priority => Expand_Pragma_Interrupt_Priority (N); when Pragma_Loop_Variant => Expand_Pragma_Loop_Variant (N); when Pragma_Psect_Object => Expand_Pragma_Psect_Object (N); when Pragma_Relative_Deadline => Expand_Pragma_Relative_Deadline (N); when Pragma_Suppress_Initialization => Expand_Pragma_Suppress_Initialization (N); -- All other pragmas need no expander action (includes -- Unknown_Pragma). when others => null; end case; end Expand_N_Pragma; ------------------------------- -- Expand_Pragma_Abort_Defer -- ------------------------------- -- An Abort_Defer pragma appears as the first statement in a handled -- statement sequence (right after the begin). It defers aborts for -- the entire statement sequence, but not for any declarations or -- handlers (if any) associated with this statement sequence. -- The transformation is to transform -- pragma Abort_Defer; -- statements; -- into -- begin -- Abort_Defer.all; -- statements -- exception -- when all others => -- Abort_Undefer.all; -- raise; -- at end -- Abort_Undefer_Direct; -- end; procedure Expand_Pragma_Abort_Defer (N : Node_Id) is begin -- Abort_Defer has no useful effect if Abort's are not allowed if not Abort_Allowed then return; end if; -- Normal case where abort is possible declare Loc : constant Source_Ptr := Sloc (N); Stm : Node_Id; Stms : List_Id; HSS : Node_Id; Blk : constant Entity_Id := New_Internal_Entity (E_Block, Current_Scope, Sloc (N), 'B'); AUD : constant Entity_Id := RTE (RE_Abort_Undefer_Direct); begin Stms := New_List (Build_Runtime_Call (Loc, RE_Abort_Defer)); loop Stm := Remove_Next (N); exit when No (Stm); Append (Stm, Stms); end loop; HSS := Make_Handled_Sequence_Of_Statements (Loc, Statements => Stms, At_End_Proc => New_Occurrence_Of (AUD, Loc)); -- Present the Abort_Undefer_Direct function to the backend so that -- it can inline the call to the function. Add_Inlined_Body (AUD, N); Rewrite (N, Make_Block_Statement (Loc, Handled_Statement_Sequence => HSS)); Set_Scope (Blk, Current_Scope); Set_Etype (Blk, Standard_Void_Type); Set_Identifier (N, New_Occurrence_Of (Blk, Sloc (N))); Expand_At_End_Handler (HSS, Blk); Analyze (N); end; end Expand_Pragma_Abort_Defer; -------------------------- -- Expand_Pragma_Check -- -------------------------- procedure Expand_Pragma_Check (N : Node_Id) is Cond : constant Node_Id := Arg2 (N); Nam : constant Name_Id := Chars (Arg1 (N)); Msg : Node_Id; Loc : constant Source_Ptr := Sloc (First_Node (Cond)); -- Source location used in the case of a failed assertion: point to the -- failing condition, not Loc. Note that the source location of the -- expression is not usually the best choice here, because it points to -- the location of the topmost tree node, which may be an operator in -- the middle of the source text of the expression. For example, it gets -- located on the last AND keyword in a chain of boolean expressiond -- AND'ed together. It is best to put the message on the first character -- of the condition, which is the effect of the First_Node call here. -- This source location is used to build the default exception message, -- and also as the sloc of the call to the runtime subprogram raising -- Assert_Failure, so that coverage analysis tools can relate the -- call to the failed check. begin -- Nothing to do if pragma is ignored if Is_Ignored (N) then return; end if; -- Since this check is active, rewrite the pragma into a corresponding -- if statement, and then analyze the statement. -- The normal case expansion transforms: -- pragma Check (name, condition [,message]); -- into -- if not condition then -- System.Assertions.Raise_Assert_Failure (Str); -- end if; -- where Str is the message if one is present, or the default of -- name failed at file:line if no message is given (the "name failed -- at" is omitted for name = Assertion, since it is redundant, given -- that the name of the exception is Assert_Failure.) -- Also, instead of "XXX failed at", we generate slightly -- different messages for some of the contract assertions (see -- code below for details). -- An alternative expansion is used when the No_Exception_Propagation -- restriction is active and there is a local Assert_Failure handler. -- This is not a common combination of circumstances, but it occurs in -- the context of Aunit and the zero footprint profile. In this case we -- generate: -- if not condition then -- raise Assert_Failure; -- end if; -- This will then be transformed into a goto, and the local handler will -- be able to handle the assert error (which would not be the case if a -- call is made to the Raise_Assert_Failure procedure). -- We also generate the direct raise if the Suppress_Exception_Locations -- is active, since we don't want to generate messages in this case. -- Note that the reason we do not always generate a direct raise is that -- the form in which the procedure is called allows for more efficient -- breakpointing of assertion errors. -- Generate the appropriate if statement. Note that we consider this to -- be an explicit conditional in the source, not an implicit if, so we -- do not call Make_Implicit_If_Statement. -- Case where we generate a direct raise if ((Debug_Flag_Dot_G or else Restriction_Active (No_Exception_Propagation)) and then Present (Find_Local_Handler (RTE (RE_Assert_Failure), N))) or else (Opt.Exception_Locations_Suppressed and then No (Arg3 (N))) then Rewrite (N, Make_If_Statement (Loc, Condition => Make_Op_Not (Loc, Right_Opnd => Cond), Then_Statements => New_List ( Make_Raise_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Assert_Failure), Loc))))); -- Case where we call the procedure else -- If we have a message given, use it if Present (Arg3 (N)) then Msg := Get_Pragma_Arg (Arg3 (N)); -- Here we have no string, so prepare one else declare Loc_Str : constant String := Build_Location_String (Loc); begin Name_Len := 0; -- For Assert, we just use the location if Nam = Name_Assert then null; -- For predicate, we generate the string "predicate failed at -- yyy". We prefer all lower case for predicate. elsif Nam = Name_Predicate then Add_Str_To_Name_Buffer ("predicate failed at "); -- For special case of Precondition/Postcondition the string is -- "failed xx from yy" where xx is precondition/postcondition -- in all lower case. The reason for this different wording is -- that the failure is not at the point of occurrence of the -- pragma, unlike the other Check cases. elsif Nam_In (Nam, Name_Precondition, Name_Postcondition) then Get_Name_String (Nam); Insert_Str_In_Name_Buffer ("failed ", 1); Add_Str_To_Name_Buffer (" from "); -- For special case of Invariant, the string is "failed -- invariant from yy", to be consistent with the string that is -- generated for the aspect case (the code later on checks for -- this specific string to modify it in some cases, so this is -- functionally important). elsif Nam = Name_Invariant then Add_Str_To_Name_Buffer ("failed invariant from "); -- For all other checks, the string is "xxx failed at yyy" -- where xxx is the check name with current source file casing. else Get_Name_String (Nam); Set_Casing (Identifier_Casing (Current_Source_File)); Add_Str_To_Name_Buffer (" failed at "); end if; -- In all cases, add location string Add_Str_To_Name_Buffer (Loc_Str); -- Build the message Msg := Make_String_Literal (Loc, Name_Buffer (1 .. Name_Len)); end; end if; -- Now rewrite as an if statement Rewrite (N, Make_If_Statement (Loc, Condition => Make_Op_Not (Loc, Right_Opnd => Cond), Then_Statements => New_List ( Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Assert_Failure), Loc), Parameter_Associations => New_List (Relocate_Node (Msg)))))); end if; Analyze (N); -- If new condition is always false, give a warning if Warn_On_Assertion_Failure and then Nkind (N) = N_Procedure_Call_Statement and then Is_RTE (Entity (Name (N)), RE_Raise_Assert_Failure) then -- If original condition was a Standard.False, we assume that this is -- indeed intended to raise assert error and no warning is required. if Is_Entity_Name (Original_Node (Cond)) and then Entity (Original_Node (Cond)) = Standard_False then null; elsif Nam = Name_Assert then Error_Msg_N ("?A?assertion will fail at run time", N); else Error_Msg_N ("?A?check will fail at run time", N); end if; end if; end Expand_Pragma_Check; --------------------------------- -- Expand_Pragma_Common_Object -- --------------------------------- -- Use a machine attribute to replicate semantic effect in DEC Ada -- pragma Machine_Attribute (intern_name, "common_object", extern_name); -- For now we do nothing with the size attribute ??? -- Note: Psect_Object shares this processing procedure Expand_Pragma_Common_Object (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Internal : constant Node_Id := Arg1 (N); External : constant Node_Id := Arg2 (N); Psect : Node_Id; -- Psect value upper cased as string literal Iloc : constant Source_Ptr := Sloc (Internal); Eloc : constant Source_Ptr := Sloc (External); Ploc : Source_Ptr; begin -- Acquire Psect value and fold to upper case if Present (External) then if Nkind (External) = N_String_Literal then String_To_Name_Buffer (Strval (External)); else Get_Name_String (Chars (External)); end if; Set_All_Upper_Case; Psect := Make_String_Literal (Eloc, Strval => String_From_Name_Buffer); else Get_Name_String (Chars (Internal)); Set_All_Upper_Case; Psect := Make_String_Literal (Iloc, Strval => String_From_Name_Buffer); end if; Ploc := Sloc (Psect); -- Insert the pragma Insert_After_And_Analyze (N, Make_Pragma (Loc, Chars => Name_Machine_Attribute, Pragma_Argument_Associations => New_List ( Make_Pragma_Argument_Association (Iloc, Expression => New_Copy_Tree (Internal)), Make_Pragma_Argument_Association (Eloc, Expression => Make_String_Literal (Sloc => Ploc, Strval => "common_object")), Make_Pragma_Argument_Association (Ploc, Expression => New_Copy_Tree (Psect))))); end Expand_Pragma_Common_Object; ---------------------------------- -- Expand_Pragma_Contract_Cases -- ---------------------------------- -- Pragma Contract_Cases is expanded in the following manner: -- subprogram S is -- Count : Natural := 0; -- Flag_1 : Boolean := False; -- . . . -- Flag_N : Boolean := False; -- Flag_N+1 : Boolean := False; -- when "others" present -- Pref_1 : ...; -- . . . -- Pref_M : ...; -- <preconditions (if any)> -- -- Evaluate all case guards -- if Case_Guard_1 then -- Flag_1 := True; -- Count := Count + 1; -- end if; -- . . . -- if Case_Guard_N then -- Flag_N := True; -- Count := Count + 1; -- end if; -- -- Emit errors depending on the number of case guards that -- -- evaluated to True. -- if Count = 0 then -- raise Assertion_Error with "xxx contract cases incomplete"; -- <or> -- Flag_N+1 := True; -- when "others" present -- elsif Count > 1 then -- declare -- Str0 : constant String := -- "contract cases overlap for subprogram ABC"; -- Str1 : constant String := -- (if Flag_1 then -- Str0 & "case guard at xxx evaluates to True" -- else Str0); -- StrN : constant String := -- (if Flag_N then -- StrN-1 & "case guard at xxx evaluates to True" -- else StrN-1); -- begin -- raise Assertion_Error with StrN; -- end; -- end if; -- -- Evaluate all attribute 'Old prefixes found in the selected -- -- consequence. -- if Flag_1 then -- Pref_1 := <prefix of 'Old found in Consequence_1> -- . . . -- elsif Flag_N then -- Pref_M := <prefix of 'Old found in Consequence_N> -- end if; -- procedure _Postconditions is -- begin -- <postconditions (if any)> -- if Flag_1 and then not Consequence_1 then -- raise Assertion_Error with "failed contract case at xxx"; -- end if; -- . . . -- if Flag_N[+1] and then not Consequence_N[+1] then -- raise Assertion_Error with "failed contract case at xxx"; -- end if; -- end _Postconditions; -- begin -- . . . -- end S; procedure Expand_Pragma_Contract_Cases (CCs : Node_Id; Subp_Id : Entity_Id; Decls : List_Id; Stmts : in out List_Id) is Loc : constant Source_Ptr := Sloc (CCs); procedure Case_Guard_Error (Decls : List_Id; Flag : Entity_Id; Error_Loc : Source_Ptr; Msg : in out Entity_Id); -- Given a declarative list Decls, status flag Flag, the location of the -- error and a string Msg, construct the following check: -- Msg : constant String := -- (if Flag then -- Msg & "case guard at Error_Loc evaluates to True" -- else Msg); -- The resulting code is added to Decls procedure Consequence_Error (Checks : in out Node_Id; Flag : Entity_Id; Conseq : Node_Id); -- Given an if statement Checks, status flag Flag and a consequence -- Conseq, construct the following check: -- [els]if Flag and then not Conseq then -- raise Assertion_Error -- with "failed contract case at Sloc (Conseq)"; -- [end if;] -- The resulting code is added to Checks function Declaration_Of (Id : Entity_Id) return Node_Id; -- Given the entity Id of a boolean flag, generate: -- Id : Boolean := False; procedure Expand_Attributes_In_Consequence (Decls : List_Id; Evals : in out Node_Id; Flag : Entity_Id; Conseq : Node_Id); -- Perform specialized expansion of all attribute 'Old references found -- in consequence Conseq such that at runtime only prefixes coming from -- the selected consequence are evaluated. Similarly expand attribute -- 'Result references by replacing them with identifier _result which -- resolves to the sole formal parameter of procedure _Postconditions. -- Any temporaries generated in the process are added to declarations -- Decls. Evals is a complex if statement tasked with the evaluation of -- all prefixes coming from a single selected consequence. Flag is the -- corresponding case guard flag. Conseq is the consequence expression. function Increment (Id : Entity_Id) return Node_Id; -- Given the entity Id of a numerical variable, generate: -- Id := Id + 1; function Set (Id : Entity_Id) return Node_Id; -- Given the entity Id of a boolean variable, generate: -- Id := True; ---------------------- -- Case_Guard_Error -- ---------------------- procedure Case_Guard_Error (Decls : List_Id; Flag : Entity_Id; Error_Loc : Source_Ptr; Msg : in out Entity_Id) is New_Line : constant Character := Character'Val (10); New_Msg : constant Entity_Id := Make_Temporary (Loc, 'S'); begin Start_String; Store_String_Char (New_Line); Store_String_Chars (" case guard at "); Store_String_Chars (Build_Location_String (Error_Loc)); Store_String_Chars (" evaluates to True"); -- Generate: -- New_Msg : constant String := -- (if Flag then -- Msg & "case guard at Error_Loc evaluates to True" -- else Msg); Append_To (Decls, Make_Object_Declaration (Loc, Defining_Identifier => New_Msg, Constant_Present => True, Object_Definition => New_Occurrence_Of (Standard_String, Loc), Expression => Make_If_Expression (Loc, Expressions => New_List ( New_Occurrence_Of (Flag, Loc), Make_Op_Concat (Loc, Left_Opnd => New_Occurrence_Of (Msg, Loc), Right_Opnd => Make_String_Literal (Loc, End_String)), New_Occurrence_Of (Msg, Loc))))); Msg := New_Msg; end Case_Guard_Error; ----------------------- -- Consequence_Error -- ----------------------- procedure Consequence_Error (Checks : in out Node_Id; Flag : Entity_Id; Conseq : Node_Id) is Cond : Node_Id; Error : Node_Id; begin -- Generate: -- Flag and then not Conseq Cond := Make_And_Then (Loc, Left_Opnd => New_Occurrence_Of (Flag, Loc), Right_Opnd => Make_Op_Not (Loc, Right_Opnd => Relocate_Node (Conseq))); -- Generate: -- raise Assertion_Error -- with "failed contract case at Sloc (Conseq)"; Start_String; Store_String_Chars ("failed contract case at "); Store_String_Chars (Build_Location_String (Sloc (Conseq))); Error := Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Assert_Failure), Loc), Parameter_Associations => New_List ( Make_String_Literal (Loc, End_String))); if No (Checks) then Checks := Make_Implicit_If_Statement (CCs, Condition => Cond, Then_Statements => New_List (Error)); else if No (Elsif_Parts (Checks)) then Set_Elsif_Parts (Checks, New_List); end if; Append_To (Elsif_Parts (Checks), Make_Elsif_Part (Loc, Condition => Cond, Then_Statements => New_List (Error))); end if; end Consequence_Error; -------------------- -- Declaration_Of -- -------------------- function Declaration_Of (Id : Entity_Id) return Node_Id is begin return Make_Object_Declaration (Loc, Defining_Identifier => Id, Object_Definition => New_Occurrence_Of (Standard_Boolean, Loc), Expression => New_Occurrence_Of (Standard_False, Loc)); end Declaration_Of; -------------------------------------- -- Expand_Attributes_In_Consequence -- -------------------------------------- procedure Expand_Attributes_In_Consequence (Decls : List_Id; Evals : in out Node_Id; Flag : Entity_Id; Conseq : Node_Id) is Eval_Stmts : List_Id := No_List; -- The evaluation sequence expressed as assignment statements of all -- prefixes of attribute 'Old found in the current consequence. function Expand_Attributes (N : Node_Id) return Traverse_Result; -- Determine whether an arbitrary node denotes attribute 'Old or -- 'Result and if it does, perform all expansion-related actions. ----------------------- -- Expand_Attributes -- ----------------------- function Expand_Attributes (N : Node_Id) return Traverse_Result is Decl : Node_Id; Pref : Node_Id; Temp : Entity_Id; begin -- Attribute 'Old if Nkind (N) = N_Attribute_Reference and then Attribute_Name (N) = Name_Old then Pref := Prefix (N); Temp := Make_Temporary (Loc, 'T', Pref); Set_Etype (Temp, Etype (Pref)); -- Generate a temporary to capture the value of the prefix: -- Temp : <Pref type>; Decl := Make_Object_Declaration (Loc, Defining_Identifier => Temp, Object_Definition => New_Occurrence_Of (Etype (Pref), Loc)); -- Place that temporary at the beginning of declarations, to -- prevent anomalies in the GNATprove flow-analysis pass in -- the precondition procedure that follows. Prepend_To (Decls, Decl); -- If the type is unconstrained, the prefix provides its -- value and constraint, so add it to declaration. if not Is_Constrained (Etype (Pref)) and then Is_Entity_Name (Pref) then Set_Expression (Decl, Pref); Analyze (Decl); -- Otherwise add an assignment statement to temporary using -- prefix as RHS. else Analyze (Decl); if No (Eval_Stmts) then Eval_Stmts := New_List; end if; Append_To (Eval_Stmts, Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Temp, Loc), Expression => Pref)); end if; -- Ensure that the prefix is valid if Validity_Checks_On and then Validity_Check_Operands then Ensure_Valid (Pref); end if; -- Replace the original attribute 'Old by a reference to the -- generated temporary. Rewrite (N, New_Occurrence_Of (Temp, Loc)); -- Attribute 'Result elsif Is_Attribute_Result (N) then Rewrite (N, Make_Identifier (Loc, Name_uResult)); end if; return OK; end Expand_Attributes; procedure Expand_Attributes_In is new Traverse_Proc (Expand_Attributes); -- Start of processing for Expand_Attributes_In_Consequence begin -- Inspect the consequence and expand any attribute 'Old and 'Result -- references found within. Expand_Attributes_In (Conseq); -- The consequence does not contain any attribute 'Old references if No (Eval_Stmts) then return; end if; -- Augment the machinery to trigger the evaluation of all prefixes -- found in the step above. If Eval is empty, then this is the first -- consequence to yield expansion of 'Old. Generate: -- if Flag then -- <evaluation statements> -- end if; if No (Evals) then Evals := Make_Implicit_If_Statement (CCs, Condition => New_Occurrence_Of (Flag, Loc), Then_Statements => Eval_Stmts); -- Otherwise generate: -- elsif Flag then -- <evaluation statements> -- end if; else if No (Elsif_Parts (Evals)) then Set_Elsif_Parts (Evals, New_List); end if; Append_To (Elsif_Parts (Evals), Make_Elsif_Part (Loc, Condition => New_Occurrence_Of (Flag, Loc), Then_Statements => Eval_Stmts)); end if; end Expand_Attributes_In_Consequence; --------------- -- Increment -- --------------- function Increment (Id : Entity_Id) return Node_Id is begin return Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Id, Loc), Expression => Make_Op_Add (Loc, Left_Opnd => New_Occurrence_Of (Id, Loc), Right_Opnd => Make_Integer_Literal (Loc, 1))); end Increment; --------- -- Set -- --------- function Set (Id : Entity_Id) return Node_Id is begin return Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Id, Loc), Expression => New_Occurrence_Of (Standard_True, Loc)); end Set; -- Local variables Aggr : constant Node_Id := Expression (First (Pragma_Argument_Associations (CCs))); Case_Guard : Node_Id; CG_Checks : Node_Id; CG_Stmts : List_Id; Conseq : Node_Id; Conseq_Checks : Node_Id := Empty; Count : Entity_Id; Count_Decl : Node_Id; Error_Decls : List_Id; Flag : Entity_Id; Flag_Decl : Node_Id; If_Stmt : Node_Id; Msg_Str : Entity_Id; Multiple_PCs : Boolean; Old_Evals : Node_Id := Empty; Others_Decl : Node_Id; Others_Flag : Entity_Id := Empty; Post_Case : Node_Id; -- Start of processing for Expand_Pragma_Contract_Cases begin -- Do nothing if pragma is not enabled. If pragma is disabled, it has -- already been rewritten as a Null statement. if Is_Ignored (CCs) then return; -- Guard against malformed contract cases elsif Nkind (Aggr) /= N_Aggregate then return; end if; -- The expansion of contract cases is quite distributed as it produces -- various statements to evaluate the case guards and consequences. To -- preserve the original context, set the Is_Assertion_Expr flag. This -- aids the Ghost legality checks when verifying the placement of a -- reference to a Ghost entity. In_Assertion_Expr := In_Assertion_Expr + 1; Multiple_PCs := List_Length (Component_Associations (Aggr)) > 1; -- Create the counter which tracks the number of case guards that -- evaluate to True. -- Count : Natural := 0; Count := Make_Temporary (Loc, 'C'); Count_Decl := Make_Object_Declaration (Loc, Defining_Identifier => Count, Object_Definition => New_Occurrence_Of (Standard_Natural, Loc), Expression => Make_Integer_Literal (Loc, 0)); Prepend_To (Decls, Count_Decl); Analyze (Count_Decl); -- Create the base error message for multiple overlapping case guards -- Msg_Str : constant String := -- "contract cases overlap for subprogram Subp_Id"; if Multiple_PCs then Msg_Str := Make_Temporary (Loc, 'S'); Start_String; Store_String_Chars ("contract cases overlap for subprogram "); Store_String_Chars (Get_Name_String (Chars (Subp_Id))); Error_Decls := New_List ( Make_Object_Declaration (Loc, Defining_Identifier => Msg_Str, Constant_Present => True, Object_Definition => New_Occurrence_Of (Standard_String, Loc), Expression => Make_String_Literal (Loc, End_String))); end if; -- Process individual post cases Post_Case := First (Component_Associations (Aggr)); while Present (Post_Case) loop Case_Guard := First (Choices (Post_Case)); Conseq := Expression (Post_Case); -- The "others" choice requires special processing if Nkind (Case_Guard) = N_Others_Choice then Others_Flag := Make_Temporary (Loc, 'F'); Others_Decl := Declaration_Of (Others_Flag); Prepend_To (Decls, Others_Decl); Analyze (Others_Decl); -- Check possible overlap between a case guard and "others" if Multiple_PCs and Exception_Extra_Info then Case_Guard_Error (Decls => Error_Decls, Flag => Others_Flag, Error_Loc => Sloc (Case_Guard), Msg => Msg_Str); end if; -- Inspect the consequence and perform special expansion of any -- attribute 'Old and 'Result references found within. Expand_Attributes_In_Consequence (Decls => Decls, Evals => Old_Evals, Flag => Others_Flag, Conseq => Conseq); -- Check the corresponding consequence of "others" Consequence_Error (Checks => Conseq_Checks, Flag => Others_Flag, Conseq => Conseq); -- Regular post case else -- Create the flag which tracks the state of its associated case -- guard. Flag := Make_Temporary (Loc, 'F'); Flag_Decl := Declaration_Of (Flag); Prepend_To (Decls, Flag_Decl); Analyze (Flag_Decl); -- The flag is set when the case guard is evaluated to True -- if Case_Guard then -- Flag := True; -- Count := Count + 1; -- end if; If_Stmt := Make_Implicit_If_Statement (CCs, Condition => Relocate_Node (Case_Guard), Then_Statements => New_List ( Set (Flag), Increment (Count))); Append_To (Decls, If_Stmt); Analyze (If_Stmt); -- Check whether this case guard overlaps with another one if Multiple_PCs and Exception_Extra_Info then Case_Guard_Error (Decls => Error_Decls, Flag => Flag, Error_Loc => Sloc (Case_Guard), Msg => Msg_Str); end if; -- Inspect the consequence and perform special expansion of any -- attribute 'Old and 'Result references found within. Expand_Attributes_In_Consequence (Decls => Decls, Evals => Old_Evals, Flag => Flag, Conseq => Conseq); -- The corresponding consequence of the case guard which evaluated -- to True must hold on exit from the subprogram. Consequence_Error (Checks => Conseq_Checks, Flag => Flag, Conseq => Conseq); end if; Next (Post_Case); end loop; -- Raise Assertion_Error when none of the case guards evaluate to True. -- The only exception is when we have "others", in which case there is -- no error because "others" acts as a default True. -- Generate: -- Flag := True; if Present (Others_Flag) then CG_Stmts := New_List (Set (Others_Flag)); -- Generate: -- raise Assertion_Error with "xxx contract cases incomplete"; else Start_String; Store_String_Chars (Build_Location_String (Loc)); Store_String_Chars (" contract cases incomplete"); CG_Stmts := New_List ( Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Assert_Failure), Loc), Parameter_Associations => New_List ( Make_String_Literal (Loc, End_String)))); end if; CG_Checks := Make_Implicit_If_Statement (CCs, Condition => Make_Op_Eq (Loc, Left_Opnd => New_Occurrence_Of (Count, Loc), Right_Opnd => Make_Integer_Literal (Loc, 0)), Then_Statements => CG_Stmts); -- Detect a possible failure due to several case guards evaluating to -- True. -- Generate: -- elsif Count > 0 then -- declare -- <Error_Decls> -- begin -- raise Assertion_Error with <Msg_Str>; -- end if; if Multiple_PCs then Set_Elsif_Parts (CG_Checks, New_List ( Make_Elsif_Part (Loc, Condition => Make_Op_Gt (Loc, Left_Opnd => New_Occurrence_Of (Count, Loc), Right_Opnd => Make_Integer_Literal (Loc, 1)), Then_Statements => New_List ( Make_Block_Statement (Loc, Declarations => Error_Decls, Handled_Statement_Sequence => Make_Handled_Sequence_Of_Statements (Loc, Statements => New_List ( Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Raise_Assert_Failure), Loc), Parameter_Associations => New_List ( New_Occurrence_Of (Msg_Str, Loc)))))))))); end if; Append_To (Decls, CG_Checks); Analyze (CG_Checks); -- Once all case guards are evaluated and checked, evaluate any prefixes -- of attribute 'Old founds in the selected consequence. if Present (Old_Evals) then Append_To (Decls, Old_Evals); Analyze (Old_Evals); end if; -- Raise Assertion_Error when the corresponding consequence of a case -- guard that evaluated to True fails. if No (Stmts) then Stmts := New_List; end if; Append_To (Stmts, Conseq_Checks); In_Assertion_Expr := In_Assertion_Expr - 1; end Expand_Pragma_Contract_Cases; --------------------------------------- -- Expand_Pragma_Import_Or_Interface -- --------------------------------------- procedure Expand_Pragma_Import_Or_Interface (N : Node_Id) is Def_Id : Entity_Id; begin -- In Relaxed_RM_Semantics, support old Ada 83 style: -- pragma Import (Entity, "external name"); if Relaxed_RM_Semantics and then List_Length (Pragma_Argument_Associations (N)) = 2 and then Pragma_Name (N) = Name_Import and then Nkind (Arg2 (N)) = N_String_Literal then Def_Id := Entity (Arg1 (N)); else Def_Id := Entity (Arg2 (N)); end if; -- Variable case (we have to undo any initialization already done) if Ekind (Def_Id) = E_Variable then Undo_Initialization (Def_Id, N); -- Case of exception with convention C++ elsif Ekind (Def_Id) = E_Exception and then Convention (Def_Id) = Convention_CPP then -- Import a C++ convention declare Loc : constant Source_Ptr := Sloc (N); Rtti_Name : constant Node_Id := Arg3 (N); Dum : constant Entity_Id := Make_Temporary (Loc, 'D'); Exdata : List_Id; Lang_Char : Node_Id; Foreign_Data : Node_Id; begin Exdata := Component_Associations (Expression (Parent (Def_Id))); Lang_Char := Next (First (Exdata)); -- Change the one-character language designator to 'C' Rewrite (Expression (Lang_Char), Make_Character_Literal (Loc, Chars => Name_uC, Char_Literal_Value => UI_From_Int (Character'Pos ('C')))); Analyze (Expression (Lang_Char)); -- Change the value of Foreign_Data Foreign_Data := Next (Next (Next (Next (Lang_Char)))); Insert_Actions (Def_Id, New_List ( Make_Object_Declaration (Loc, Defining_Identifier => Dum, Object_Definition => New_Occurrence_Of (Standard_Character, Loc)), Make_Pragma (Loc, Chars => Name_Import, Pragma_Argument_Associations => New_List ( Make_Pragma_Argument_Association (Loc, Expression => Make_Identifier (Loc, Name_Ada)), Make_Pragma_Argument_Association (Loc, Expression => Make_Identifier (Loc, Chars (Dum))), Make_Pragma_Argument_Association (Loc, Chars => Name_External_Name, Expression => Relocate_Node (Rtti_Name)))))); Rewrite (Expression (Foreign_Data), Unchecked_Convert_To (Standard_A_Char, Make_Attribute_Reference (Loc, Prefix => Make_Identifier (Loc, Chars (Dum)), Attribute_Name => Name_Address))); Analyze (Expression (Foreign_Data)); end; -- No special expansion required for any other case else null; end if; end Expand_Pragma_Import_Or_Interface; ------------------------------------- -- Expand_Pragma_Initial_Condition -- ------------------------------------- procedure Expand_Pragma_Initial_Condition (Spec_Or_Body : Node_Id) is Loc : constant Source_Ptr := Sloc (Spec_Or_Body); Check : Node_Id; Expr : Node_Id; Init_Cond : Node_Id; List : List_Id; Pack_Id : Entity_Id; begin if Nkind (Spec_Or_Body) = N_Package_Body then Pack_Id := Corresponding_Spec (Spec_Or_Body); if Present (Handled_Statement_Sequence (Spec_Or_Body)) then List := Statements (Handled_Statement_Sequence (Spec_Or_Body)); -- The package body lacks statements, create an empty list else List := New_List; Set_Handled_Statement_Sequence (Spec_Or_Body, Make_Handled_Sequence_Of_Statements (Loc, Statements => List)); end if; elsif Nkind (Spec_Or_Body) = N_Package_Declaration then Pack_Id := Defining_Entity (Spec_Or_Body); if Present (Visible_Declarations (Specification (Spec_Or_Body))) then List := Visible_Declarations (Specification (Spec_Or_Body)); -- The package lacks visible declarations, create an empty list else List := New_List; Set_Visible_Declarations (Specification (Spec_Or_Body), List); end if; -- This routine should not be used on anything other than packages else raise Program_Error; end if; Init_Cond := Get_Pragma (Pack_Id, Pragma_Initial_Condition); -- The caller should check whether the package is subject to pragma -- Initial_Condition. pragma Assert (Present (Init_Cond)); Expr := Get_Pragma_Arg (First (Pragma_Argument_Associations (Init_Cond))); -- The assertion expression was found to be illegal, do not generate the -- runtime check as it will repeat the illegality. if Error_Posted (Init_Cond) or else Error_Posted (Expr) then return; end if; -- Generate: -- pragma Check (Initial_Condition, <Expr>); Check := Make_Pragma (Loc, Chars => Name_Check, Pragma_Argument_Associations => New_List ( Make_Pragma_Argument_Association (Loc, Expression => Make_Identifier (Loc, Name_Initial_Condition)), Make_Pragma_Argument_Association (Loc, Expression => New_Copy_Tree (Expr)))); Append_To (List, Check); Analyze (Check); end Expand_Pragma_Initial_Condition; ------------------------------------ -- Expand_Pragma_Inspection_Point -- ------------------------------------ -- If no argument is given, then we supply a default argument list that -- includes all objects declared at the source level in all subprograms -- that enclose the inspection point pragma. procedure Expand_Pragma_Inspection_Point (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); A : List_Id; Assoc : Node_Id; S : Entity_Id; E : Entity_Id; begin if No (Pragma_Argument_Associations (N)) then A := New_List; S := Current_Scope; while S /= Standard_Standard loop E := First_Entity (S); while Present (E) loop if Comes_From_Source (E) and then Is_Object (E) and then not Is_Entry_Formal (E) and then Ekind (E) /= E_Component and then Ekind (E) /= E_Discriminant and then Ekind (E) /= E_Generic_In_Parameter and then Ekind (E) /= E_Generic_In_Out_Parameter then Append_To (A, Make_Pragma_Argument_Association (Loc, Expression => New_Occurrence_Of (E, Loc))); end if; Next_Entity (E); end loop; S := Scope (S); end loop; Set_Pragma_Argument_Associations (N, A); end if; -- Expand the arguments of the pragma. Expanding an entity reference -- is a noop, except in a protected operation, where a reference may -- have to be transformed into a reference to the corresponding prival. -- Are there other pragmas that may require this ??? Assoc := First (Pragma_Argument_Associations (N)); while Present (Assoc) loop Expand (Expression (Assoc)); Next (Assoc); end loop; end Expand_Pragma_Inspection_Point; -------------------------------------- -- Expand_Pragma_Interrupt_Priority -- -------------------------------------- -- Supply default argument if none exists (System.Interrupt_Priority'Last) procedure Expand_Pragma_Interrupt_Priority (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); begin if No (Pragma_Argument_Associations (N)) then Set_Pragma_Argument_Associations (N, New_List ( Make_Pragma_Argument_Association (Loc, Expression => Make_Attribute_Reference (Loc, Prefix => New_Occurrence_Of (RTE (RE_Interrupt_Priority), Loc), Attribute_Name => Name_Last)))); end if; end Expand_Pragma_Interrupt_Priority; -------------------------------- -- Expand_Pragma_Loop_Variant -- -------------------------------- -- Pragma Loop_Variant is expanded in the following manner: -- Original code -- for | while ... loop -- <preceding source statements> -- pragma Loop_Variant -- (Increases => Incr_Expr, -- Decreases => Decr_Expr); -- <succeeding source statements> -- end loop; -- Expanded code -- Curr_1 : <type of Incr_Expr>; -- Curr_2 : <type of Decr_Expr>; -- Old_1 : <type of Incr_Expr>; -- Old_2 : <type of Decr_Expr>; -- Flag : Boolean := False; -- for | while ... loop -- <preceding source statements> -- if Flag then -- Old_1 := Curr_1; -- Old_2 := Curr_2; -- end if; -- Curr_1 := <Incr_Expr>; -- Curr_2 := <Decr_Expr>; -- if Flag then -- if Curr_1 /= Old_1 then -- pragma Check (Loop_Variant, Curr_1 > Old_1); -- else -- pragma Check (Loop_Variant, Curr_2 < Old_2); -- end if; -- else -- Flag := True; -- end if; -- <succeeding source statements> -- end loop; procedure Expand_Pragma_Loop_Variant (N : Node_Id) is Loc : constant Source_Ptr := Sloc (N); Last_Var : constant Node_Id := Last (Pragma_Argument_Associations (N)); Curr_Assign : List_Id := No_List; Flag_Id : Entity_Id := Empty; If_Stmt : Node_Id := Empty; Old_Assign : List_Id := No_List; Loop_Scop : Entity_Id; Loop_Stmt : Node_Id; Variant : Node_Id; procedure Process_Variant (Variant : Node_Id; Is_Last : Boolean); -- Process a single increasing / decreasing termination variant. Flag -- Is_Last should be set when processing the last variant. --------------------- -- Process_Variant -- --------------------- procedure Process_Variant (Variant : Node_Id; Is_Last : Boolean) is function Make_Op (Loc : Source_Ptr; Curr_Val : Node_Id; Old_Val : Node_Id) return Node_Id; -- Generate a comparison between Curr_Val and Old_Val depending on -- the change mode (Increases / Decreases) of the variant. ------------- -- Make_Op -- ------------- function Make_Op (Loc : Source_Ptr; Curr_Val : Node_Id; Old_Val : Node_Id) return Node_Id is begin if Chars (Variant) = Name_Increases then return Make_Op_Gt (Loc, Curr_Val, Old_Val); else pragma Assert (Chars (Variant) = Name_Decreases); return Make_Op_Lt (Loc, Curr_Val, Old_Val); end if; end Make_Op; -- Local variables Expr : constant Node_Id := Expression (Variant); Expr_Typ : constant Entity_Id := Etype (Expr); Loc : constant Source_Ptr := Sloc (Expr); Loop_Loc : constant Source_Ptr := Sloc (Loop_Stmt); Curr_Id : Entity_Id; Old_Id : Entity_Id; Prag : Node_Id; -- Start of processing for Process_Variant begin -- All temporaries generated in this routine must be inserted before -- the related loop statement. Ensure that the proper scope is on the -- stack when analyzing the temporaries. Note that we also use the -- Sloc of the related loop. Push_Scope (Scope (Loop_Scop)); -- Step 1: Create the declaration of the flag which controls the -- behavior of the assertion on the first iteration of the loop. if No (Flag_Id) then -- Generate: -- Flag : Boolean := False; Flag_Id := Make_Temporary (Loop_Loc, 'F'); Insert_Action (Loop_Stmt, Make_Object_Declaration (Loop_Loc, Defining_Identifier => Flag_Id, Object_Definition => New_Occurrence_Of (Standard_Boolean, Loop_Loc), Expression => New_Occurrence_Of (Standard_False, Loop_Loc))); -- Prevent an unwanted optimization where the Current_Value of -- the flag eliminates the if statement which stores the variant -- values coming from the previous iteration. -- Flag : Boolean := False; -- loop -- if Flag then -- condition rewritten to False -- Old_N := Curr_N; -- and if statement eliminated -- end if; -- . . . -- Flag := True; -- end loop; Set_Current_Value (Flag_Id, Empty); end if; -- Step 2: Create the temporaries which store the old and current -- values of the associated expression. -- Generate: -- Curr : <type of Expr>; Curr_Id := Make_Temporary (Loc, 'C'); Insert_Action (Loop_Stmt, Make_Object_Declaration (Loop_Loc, Defining_Identifier => Curr_Id, Object_Definition => New_Occurrence_Of (Expr_Typ, Loop_Loc))); -- Generate: -- Old : <type of Expr>; Old_Id := Make_Temporary (Loc, 'P'); Insert_Action (Loop_Stmt, Make_Object_Declaration (Loop_Loc, Defining_Identifier => Old_Id, Object_Definition => New_Occurrence_Of (Expr_Typ, Loop_Loc))); -- Restore original scope after all temporaries have been analyzed Pop_Scope; -- Step 3: Store value of the expression from the previous iteration if No (Old_Assign) then Old_Assign := New_List; end if; -- Generate: -- Old := Curr; Append_To (Old_Assign, Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Old_Id, Loc), Expression => New_Occurrence_Of (Curr_Id, Loc))); -- Step 4: Store the current value of the expression if No (Curr_Assign) then Curr_Assign := New_List; end if; -- Generate: -- Curr := <Expr>; Append_To (Curr_Assign, Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Curr_Id, Loc), Expression => Relocate_Node (Expr))); -- Step 5: Create corresponding assertion to verify change of value -- Generate: -- pragma Check (Loop_Variant, Curr <|> Old); Prag := Make_Pragma (Loc, Chars => Name_Check, Pragma_Argument_Associations => New_List ( Make_Pragma_Argument_Association (Loc, Expression => Make_Identifier (Loc, Name_Loop_Variant)), Make_Pragma_Argument_Association (Loc, Expression => Make_Op (Loc, Curr_Val => New_Occurrence_Of (Curr_Id, Loc), Old_Val => New_Occurrence_Of (Old_Id, Loc))))); -- Generate: -- if Curr /= Old then -- <Prag>; if No (If_Stmt) then -- When there is just one termination variant, do not compare the -- old and current value for equality, just check the pragma. if Is_Last then If_Stmt := Prag; else If_Stmt := Make_If_Statement (Loc, Condition => Make_Op_Ne (Loc, Left_Opnd => New_Occurrence_Of (Curr_Id, Loc), Right_Opnd => New_Occurrence_Of (Old_Id, Loc)), Then_Statements => New_List (Prag)); end if; -- Generate: -- else -- <Prag>; -- end if; elsif Is_Last then Set_Else_Statements (If_Stmt, New_List (Prag)); -- Generate: -- elsif Curr /= Old then -- <Prag>; else if Elsif_Parts (If_Stmt) = No_List then Set_Elsif_Parts (If_Stmt, New_List); end if; Append_To (Elsif_Parts (If_Stmt), Make_Elsif_Part (Loc, Condition => Make_Op_Ne (Loc, Left_Opnd => New_Occurrence_Of (Curr_Id, Loc), Right_Opnd => New_Occurrence_Of (Old_Id, Loc)), Then_Statements => New_List (Prag))); end if; end Process_Variant; -- Start of processing for Expand_Pragma_Loop_Variant begin -- If pragma is not enabled, rewrite as Null statement. If pragma is -- disabled, it has already been rewritten as a Null statement. if Is_Ignored (N) then Rewrite (N, Make_Null_Statement (Loc)); Analyze (N); return; end if; -- The expansion of Loop_Variant is quite distributed as it produces -- various statements to capture and compare the arguments. To preserve -- the original context, set the Is_Assertion_Expr flag. This aids the -- Ghost legality checks when verifying the placement of a reference to -- a Ghost entity. In_Assertion_Expr := In_Assertion_Expr + 1; -- Locate the enclosing loop for which this assertion applies. In the -- case of Ada 2012 array iteration, we might be dealing with nested -- loops. Only the outermost loop has an identifier. Loop_Stmt := N; while Present (Loop_Stmt) loop if Nkind (Loop_Stmt) = N_Loop_Statement and then Present (Identifier (Loop_Stmt)) then exit; end if; Loop_Stmt := Parent (Loop_Stmt); end loop; Loop_Scop := Entity (Identifier (Loop_Stmt)); -- Create the circuitry which verifies individual variants Variant := First (Pragma_Argument_Associations (N)); while Present (Variant) loop Process_Variant (Variant, Is_Last => Variant = Last_Var); Next (Variant); end loop; -- Construct the segment which stores the old values of all expressions. -- Generate: -- if Flag then -- <Old_Assign> -- end if; Insert_Action (N, Make_If_Statement (Loc, Condition => New_Occurrence_Of (Flag_Id, Loc), Then_Statements => Old_Assign)); -- Update the values of all expressions Insert_Actions (N, Curr_Assign); -- Add the assertion circuitry to test all changes in expressions. -- Generate: -- if Flag then -- <If_Stmt> -- else -- Flag := True; -- end if; Insert_Action (N, Make_If_Statement (Loc, Condition => New_Occurrence_Of (Flag_Id, Loc), Then_Statements => New_List (If_Stmt), Else_Statements => New_List ( Make_Assignment_Statement (Loc, Name => New_Occurrence_Of (Flag_Id, Loc), Expression => New_Occurrence_Of (Standard_True, Loc))))); -- Note: the pragma has been completely transformed into a sequence of -- corresponding declarations and statements. We leave it in the tree -- for documentation purposes. It will be ignored by the backend. In_Assertion_Expr := In_Assertion_Expr - 1; end Expand_Pragma_Loop_Variant; -------------------------------- -- Expand_Pragma_Psect_Object -- -------------------------------- -- Convert to Common_Object, and expand the resulting pragma procedure Expand_Pragma_Psect_Object (N : Node_Id) renames Expand_Pragma_Common_Object; ------------------------------------- -- Expand_Pragma_Relative_Deadline -- ------------------------------------- procedure Expand_Pragma_Relative_Deadline (N : Node_Id) is P : constant Node_Id := Parent (N); Loc : constant Source_Ptr := Sloc (N); begin -- Expand the pragma only in the case of the main subprogram. For tasks -- the expansion is done in exp_ch9. Generate a call to Set_Deadline -- at Clock plus the relative deadline specified in the pragma. Time -- values are translated into Duration to allow for non-private -- addition operation. if Nkind (P) = N_Subprogram_Body then Rewrite (N, Make_Procedure_Call_Statement (Loc, Name => New_Occurrence_Of (RTE (RE_Set_Deadline), Loc), Parameter_Associations => New_List ( Unchecked_Convert_To (RTE (RO_RT_Time), Make_Op_Add (Loc, Left_Opnd => Make_Function_Call (Loc, New_Occurrence_Of (RTE (RO_RT_To_Duration), Loc), New_List (Make_Function_Call (Loc, New_Occurrence_Of (RTE (RE_Clock), Loc)))), Right_Opnd => Unchecked_Convert_To (Standard_Duration, Arg1 (N))))))); Analyze (N); end if; end Expand_Pragma_Relative_Deadline; ------------------------------------------- -- Expand_Pragma_Suppress_Initialization -- ------------------------------------------- procedure Expand_Pragma_Suppress_Initialization (N : Node_Id) is Def_Id : constant Entity_Id := Entity (Arg1 (N)); begin -- Variable case (we have to undo any initialization already done) if Ekind (Def_Id) = E_Variable then Undo_Initialization (Def_Id, N); end if; end Expand_Pragma_Suppress_Initialization; ------------------------- -- Undo_Initialization -- ------------------------- procedure Undo_Initialization (Def_Id : Entity_Id; N : Node_Id) is Init_Call : Node_Id; begin -- When applied to a variable, the default initialization must not be -- done. As it is already done when the pragma is found, we just get rid -- of the call the initialization procedure which followed the object -- declaration. The call is inserted after the declaration, but validity -- checks may also have been inserted and thus the initialization call -- does not necessarily appear immediately after the object declaration. -- We can't use the freezing mechanism for this purpose, since we have -- to elaborate the initialization expression when it is first seen (so -- this elaboration cannot be deferred to the freeze point). -- Find and remove generated initialization call for object, if any Init_Call := Remove_Init_Call (Def_Id, Rep_Clause => N); -- Any default initialization expression should be removed (e.g. -- null defaults for access objects, zero initialization of packed -- bit arrays). Imported objects aren't allowed to have explicit -- initialization, so the expression must have been generated by -- the compiler. if No (Init_Call) and then Present (Expression (Parent (Def_Id))) then Set_Expression (Parent (Def_Id), Empty); end if; -- The object may not have any initialization, but in the presence of -- Initialize_Scalars code is inserted after then declaration, which -- must now be removed as well. The code carries the same source -- location as the declaration itself. if Initialize_Scalars and then Is_Array_Type (Etype (Def_Id)) then declare Init : Node_Id; Nxt : Node_Id; begin Init := Next (Parent (Def_Id)); while not Comes_From_Source (Init) and then Sloc (Init) = Sloc (Def_Id) loop Nxt := Next (Init); Remove (Init); Init := Nxt; end loop; end; end if; end Undo_Initialization; end Exp_Prag;
-- E52103Y.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK WHETHER A NULL ARRAY WITH ONE DIMENSION OF LENGTH GREATER THAN -- INTEGER'LAST RAISES CONSTRAINT_ERROR OR NO EXCEPTION, -- EITHER WHEN DECLARED OR ASSIGNED. -- CHECK THAT LENGTHS MUST MATCH IN ARRAY AND SLICE ASSIGNMENTS. -- MORE SPECIFICALLY, TEST THAT ARRAY ASSIGNMENTS WITH MATCHING -- LENGTHS DO NOT CAUSE CONSTRAINT_ERROR TO BE RAISED AND -- ARE PERFORMED CORRECTLY. -- (OVERLAPS BETWEEN THE OPERANDS OF THE ASSIGNMENT STATEMENT -- ARE TREATED ELSEWHERE.) -- THIS IS A SPECIAL CASE IN -- DIVISION D : NULL ARRAYS WHOSE LENGTHS ARE NOT DETERMINABLE -- STATICALLY -- WHICH (THE SPECIAL CASE) TREATS TWO-DIMENSIONAL ARRAYS WHOSE LENGTH -- ALONG ONE DIMENSION IS GREATER THAN INTEGER'LAST AND WHOSE -- LENGTH ALONG THE OTHER DIMENSION IS 0 . -- *** NOTE: This test has been modified since ACVC version 1.11 to -- 9X -- *** remove incompatibilities associated with the transition -- 9X -- *** to Ada 9X. -- 9X -- *** -- 9X -- RM 07/31/81 -- SPS 03/22/83 -- JBG 05/02/83 -- JBG 06/01/85 -- EG 10/28/85 FIX NUMERIC_ERROR/CONSTRAINT_ERROR ACCORDING TO -- AI-00387. -- LDC 06/01/88 CHANGED HEADER COMMENT TO INDICATE CONSTRAINT_ERROR -- IS ALLOWED. ADDED CODE TO PREVENT DEAD VARIABLE -- OPTIMIZATION. -- MRM 03/30/93 REMOVED NUMERIC_ERROR FOR 9X COMPATIBILITY WITH REPORT; PROCEDURE E52103Y IS USE REPORT ; BEGIN TEST( "E52103Y","CHECK WHETHER CONSTRAINT_ERROR " & "OR NO EXCEPTION IS RAISED WHEN DIMENSION OF " & "AN ARRAY HAS LENGTH > INTEGER'LAST"); BEGIN DECLARE TYPE TA42 IS ARRAY( INTEGER RANGE IDENT_INT( 13 )..IDENT_INT( 12 ), INTEGER RANGE IDENT_INT(-2)..IDENT_INT(INTEGER'LAST) ) OF BOOLEAN ; SUBTYPE TA41 IS TA42 ; ARR41 : TA41 ; ARR42 : TA42 ; BEGIN COMMENT ("NO EXCEPTION FOR ARRAY DECLARATION"); -- NULL ARRAY ASSIGNMENT: ARR42 := ARR41 ; IF ARR42'LENGTH(1) /= 0 THEN FOR I IN TA42'RANGE(2) LOOP ARR41(13,I) := IDENT_BOOL(ARR42(13,I)); END LOOP; END IF; COMMENT ("NO EXCEPTION RAISED FOR NULL ARRAY " & "ASSIGNMENT"); EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ("CONSTRAINT_ERROR RAISED IN LENGTH " & "COMPARISON"); WHEN OTHERS => FAILED( "OTHER EXCEPTION RAISED - SUBTEST 2" ); END ; EXCEPTION WHEN CONSTRAINT_ERROR => COMMENT ("CONSTRAINT_ERROR RAISED BY DECLARATION OF " & "NULL ARRAY TYPE WITH ONE DIMENSION > " & "INTEGER'LAST"); WHEN OTHERS => FAILED ("SOME OTHER EXCEPTION RAISED"); END; ------------------------------------------------------------------- RESULT ; END E52103Y;
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with Tk.Widget.Widget_Options_Test_Data.Widget_Options_Tests; with GNATtest_Generated; package Tk.Menu.Menu_Options_Test_Data is -- begin read only type Test_Menu_Options is new GNATtest_Generated.GNATtest_Standard.Tk.Widget .Widget_Options_Test_Data .Widget_Options_Tests .Test_Widget_Options -- end read only with null record; procedure Set_Up(Gnattest_T: in out Test_Menu_Options); procedure Tear_Down(Gnattest_T: in out Test_Menu_Options); end Tk.Menu.Menu_Options_Test_Data;
-- C34014A.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 A DERIVED SUBPROGRAM IS VISIBLE AND FURTHER DERIVABLE -- UNDER APPROPRIATE CIRCUMSTANCES. -- CHECK WHEN THE DERIVED SUBPROGRAM IS IMPLICITLY DECLARED IN THE -- VISIBLE PART OF A PACKAGE AND A HOMOGRAPHIC SUBPROGRAM IS LATER -- DECLARED EXPLICITLY IN THE SAME VISIBLE PART. -- HISTORY: -- JRK 09/08/87 CREATED ORIGINAL TEST. WITH REPORT; USE REPORT; PROCEDURE C34014A IS PACKAGE P IS TYPE T IS RANGE -100 .. 100; FUNCTION F RETURN T; END P; USE P; PACKAGE BODY P IS FUNCTION F RETURN T IS BEGIN RETURN T (IDENT_INT (1)); END F; END P; BEGIN TEST ("C34014A", "CHECK THAT A DERIVED SUBPROGRAM IS VISIBLE " & "AND FURTHER DERIVABLE UNDER APPROPRIATE " & "CIRCUMSTANCES. CHECK WHEN THE DERIVED " & "SUBPROGRAM IS IMPLICITLY DECLARED IN THE " & "VISIBLE PART OF A PACKAGE AND A HOMOGRAPHIC " & "SUBPROGRAM IS LATER DECLARED EXPLICITLY IN " & "THE SAME VISIBLE PART"); ----------------------------------------------------------------- COMMENT ("NEW SUBPROGRAM DECLARED BY SUBPROGRAM DECLARATION"); DECLARE PACKAGE Q IS TYPE QT IS NEW T; X : QT := F; FUNCTION F RETURN QT; TYPE QR IS RECORD C : QT := F; END RECORD; PRIVATE TYPE QS IS NEW QT; END Q; USE Q; PACKAGE BODY Q IS FUNCTION F RETURN QT IS BEGIN RETURN QT (IDENT_INT (2)); END F; PACKAGE R IS Y : QR; Z : QS := F; END R; USE R; BEGIN IF X /= 1 THEN FAILED ("OLD SUBPROGRAM NOT VISIBLE - SUBPROG " & "DECL"); END IF; IF Y.C /= 2 THEN FAILED ("NEW SUBPROGRAM NOT VISIBLE - SUBPROG " & "DECL - 1"); END IF; IF Z /= 2 THEN FAILED ("NEW SUBPROGRAM NOT DERIVED - SUBPROG " & "DECL - 1"); END IF; END Q; PACKAGE R IS Y : QT := F; TYPE RT IS NEW QT; Z : RT := F; END R; USE R; BEGIN IF Y /= 2 THEN FAILED ("NEW SUBPROGRAM NOT VISIBLE - SUBPROG DECL - 2"); END IF; IF Z /= 2 THEN FAILED ("NEW SUBPROGRAM NOT DERIVED - SUBPROG DECL - 2"); END IF; END; ----------------------------------------------------------------- COMMENT ("NEW SUBPROGRAM DECLARED BY RENAMING"); DECLARE PACKAGE Q IS TYPE QT IS NEW T; X : QT := F; FUNCTION G RETURN QT; FUNCTION F RETURN QT RENAMES G; TYPE QR IS RECORD C : QT := F; END RECORD; PRIVATE TYPE QS IS NEW QT; END Q; USE Q; PACKAGE BODY Q IS FUNCTION G RETURN QT IS BEGIN RETURN QT (IDENT_INT (2)); END G; PACKAGE R IS Y : QR; Z : QS := F; END R; USE R; BEGIN IF X /= 1 THEN FAILED ("OLD SUBPROGRAM NOT VISIBLE - RENAMING"); END IF; IF Y.C /= 2 THEN FAILED ("NEW SUBPROGRAM NOT VISIBLE - RENAMING - " & "1"); END IF; IF Z /= 2 THEN FAILED ("NEW SUBPROGRAM NOT DERIVED - RENAMING - " & "1"); END IF; END Q; PACKAGE R IS Y : QT := F; TYPE RT IS NEW QT; Z : RT := F; END R; USE R; BEGIN IF Y /= 2 THEN FAILED ("NEW SUBPROGRAM NOT VISIBLE - RENAMING - 2"); END IF; IF Z /= 2 THEN FAILED ("NEW SUBPROGRAM NOT DERIVED - RENAMING - 2"); END IF; END; ----------------------------------------------------------------- COMMENT ("NEW SUBPROGRAM DECLARED BY GENERIC INSTANTIATION"); DECLARE GENERIC TYPE T IS RANGE <>; FUNCTION G RETURN T; FUNCTION G RETURN T IS BEGIN RETURN T (IDENT_INT (2)); END G; PACKAGE Q IS TYPE QT IS NEW T; X : QT := F; FUNCTION F IS NEW G (QT); W : QT := F; PRIVATE TYPE QS IS NEW QT; Z : QS := F; END Q; USE Q; PACKAGE BODY Q IS BEGIN IF X /= 1 THEN FAILED ("OLD SUBPROGRAM NOT VISIBLE - " & "INSTANTIATION"); END IF; IF W /= 2 THEN FAILED ("NEW SUBPROGRAM NOT VISIBLE - " & "INSTANTIATION - 1"); END IF; IF Z /= 2 THEN FAILED ("NEW SUBPROGRAM NOT DERIVED - " & "INSTANTIATION - 1"); END IF; END Q; PACKAGE R IS Y : QT := F; TYPE RT IS NEW QT; Z : RT := F; END R; USE R; BEGIN IF Y /= 2 THEN FAILED ("NEW SUBPROGRAM NOT VISIBLE - INSTANTIATION - " & "2"); END IF; IF Z /= 2 THEN FAILED ("NEW SUBPROGRAM NOT DERIVED - INSTANTIATION - " & "2"); END IF; END; ----------------------------------------------------------------- RESULT; END C34014A;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>setPath</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>5</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>memWrCmd_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>memWrCmd.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>40</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>memWrData_V_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>memWrData.V.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>512</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>8</id> <name>demux2setPathMetadat_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>45</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>9</id> <name>demux2setPathValue_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>66</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>10</id> <name>filterPopSet_V_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>132</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_6"> <Value> <Obj> <type>0</type> <id>18</id> <name>setState_load</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>267</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>267</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>166</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>19</id> <name>p_Val2_s</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>167</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>20</id> <name>setCtrlWord_address_s</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>306</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>306</second> </item> </second> </item> </inlineStackInfo> <originalName>setCtrlWord.address.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>168</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>21</id> <name>tmp_count_V</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>307</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>307</second> </item> </second> </item> </inlineStackInfo> <originalName>val</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>169</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>22</id> <name>counter_load</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>170</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>23</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>267</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>267</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>171</item> <item>172</item> <item>174</item> <item>175</item> <item>177</item> <item>178</item> <item>180</item> <item>181</item> <item>183</item> <item>184</item> <item>186</item> <item>187</item> <item>189</item> <item>190</item> <item>192</item> <item>193</item> </oprand_edges> <opcode>switch</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>25</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>349</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>349</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>477</item> <item>478</item> <item>721</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>26</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>350</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>350</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>479</item> <item>480</item> <item>481</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>27</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>351</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>351</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>482</item> <item>483</item> <item>484</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>28</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>352</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>352</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>485</item> <item>486</item> <item>720</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>29</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>353</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>353</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>487</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>31</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>342</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>342</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>469</item> <item>470</item> <item>719</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>32</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>343</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>343</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>471</item> <item>472</item> <item>473</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>33</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>344</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>344</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>474</item> <item>475</item> <item>718</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>34</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>345</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>345</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>476</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>36</id> <name>tmp_2</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>388</item> <item>389</item> <item>390</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>37</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>326</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>326</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>391</item> <item>392</item> <item>393</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_543</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.543</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>66</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>394</item> <item>395</item> <item>730</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_31</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>328</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_31_fu_545_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>396</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>41</id> <name>tmp_32</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>328</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_316_p3</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>397</item> <item>398</item> <item>399</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_33</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_33_fu_348_p1</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>400</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>43</id> <name>Lo_assign_1</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName>Lo</originalName> <rtlName>Lo_assign_1_fu_352_p3</rtlName> <coreName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>401</item> <item>402</item> <item>403</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>44</id> <name>Hi_assign_1</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName>Hi</originalName> <rtlName>Hi_assign_1_fu_360_p2</rtlName> <coreName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>404</item> <item>405</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>45</id> <name>loc_V_1</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName>loc_V_1_fu_549_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>406</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_34</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_34_fu_366_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>407</item> <item>408</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.10</m_delay> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>47</id> <name>tmp_36</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_36_fu_553_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>409</item> <item>410</item> <item>411</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_37</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_37_fu_372_p1</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>412</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>49</id> <name>tmp_38</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_38_fu_560_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>413</item> <item>414</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.34</m_delay> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_39</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_39_fu_566_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>415</item> <item>416</item> <item>417</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>51</id> <name>tmp_40</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_40_fu_572_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>418</item> <item>419</item> <item>420</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>52</id> <name>tmp_41</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_41_fu_578_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>421</item> <item>422</item> <item>423</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>53</id> <name>tmp_42</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_42_fu_585_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>424</item> <item>425</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.34</m_delay> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_43</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_43_fu_591_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>426</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>55</id> <name>tmp_44</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_44_fu_595_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>427</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>56</id> <name>tmp_45</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_45_fu_599_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>428</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>57</id> <name>tmp_46</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_46_fu_603_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>429</item> <item>430</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.35</m_delay> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>58</id> <name>tmp_47</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_47_fu_609_p4</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>431</item> <item>432</item> <item>433</item> <item>434</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_48</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_48_fu_619_p3</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>435</item> <item>436</item> <item>437</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_49</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_49_fu_626_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>438</item> <item>439</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_50</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_50_fu_632_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>440</item> <item>441</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>62</id> <name>p_demorgan</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_demorgan_fu_638_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>442</item> <item>443</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.72</m_delay> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_51</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_51_fu_644_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>444</item> <item>445</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_52</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_52_fu_650_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>446</item> <item>447</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>65</id> <name>tmp_53</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_53_fu_656_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>448</item> <item>449</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>66</id> <name>p_Result_1</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>329</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>329</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_1_fu_662_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>450</item> <item>451</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.89</m_delay> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_13_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>332</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>332</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_13_i_fu_376_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>452</item> <item>453</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>68</id> <name>storemerge_i</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>328</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge_i_fu_382_p3</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>454</item> <item>455</item> <item>456</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_5</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>328</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_5_fu_390_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>457</item> <item>458</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>70</id> <name>storemerge3_i</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>328</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge3_i_fu_396_p3</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>459</item> <item>460</item> <item>461</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.51</m_delay> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>71</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>331</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>331</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>462</item> <item>463</item> <item>725</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>72</id> <name>tmp_15_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>336</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>336</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_324_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>464</item> <item>465</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>73</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>336</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>336</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>466</item> <item>467</item> <item>726</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>74</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>337</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>337</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>468</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>76</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>316</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>316</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>374</item> <item>375</item> <item>717</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>77</id> <name>tmp_429</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.429</originalName> <rtlName>tmp_429_fu_669_p3</rtlName> <coreName/> </Obj> <bitwidth>40</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>376</item> <item>377</item> <item>378</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>78</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>319</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>319</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>379</item> <item>380</item> <item>381</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>79</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>320</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>320</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>382</item> <item>383</item> <item>384</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>80</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>321</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>321</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>385</item> <item>386</item> <item>716</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>81</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>322</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>322</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>387</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>83</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>305</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>305</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>352</item> <item>353</item> <item>715</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>84</id> <name>tmp_35</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>308</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>308</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.35</originalName> <rtlName>tmp_35_fu_678_p3</rtlName> <coreName/> </Obj> <bitwidth>40</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>355</item> <item>356</item> <item>357</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>85</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>308</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>308</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>359</item> <item>360</item> <item>361</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>86</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>309</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>309</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>363</item> <item>364</item> <item>365</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>87</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>310</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>310</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>367</item> <item>368</item> <item>370</item> </oprand_edges> <opcode>write</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>88</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>311</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>311</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>371</item> <item>372</item> <item>714</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>89</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>312</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>312</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>373</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>260</item> <item>261</item> <item>262</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>92</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>289</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>289</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>263</item> <item>264</item> <item>265</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_324_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>266</item> <item>267</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.35</m_delay> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>95</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>268</item> <item>269</item> <item>724</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.92</m_delay> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_29</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.29</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>66</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>270</item> <item>271</item> <item>731</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_7</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_7_fu_687_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>272</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_8</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>grp_fu_316_p3</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>273</item> <item>274</item> <item>276</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>99</id> <name>tmp_9</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>291</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>291</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_9_fu_410_p1</rtlName> <coreName/> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>277</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>100</id> <name>Lo_assign</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName>Lo</originalName> <rtlName>Lo_assign_fu_414_p3</rtlName> <coreName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>279</item> <item>280</item> <item>281</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>101</id> <name>Hi_assign</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName>Hi</originalName> <rtlName>Hi_assign_fu_422_p2</rtlName> <coreName/> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>282</item> <item>284</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>102</id> <name>loc_V</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName>loc_V_fu_691_p1</rtlName> <coreName/> </Obj> <bitwidth>512</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_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_10</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_10_fu_428_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>286</item> <item>287</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.10</m_delay> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>104</id> <name>tmp_11</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_11_fu_695_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>289</item> <item>290</item> <item>291</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>105</id> <name>tmp_12</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_12_fu_434_p1</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>292</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>106</id> <name>tmp_13</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_13_fu_702_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>294</item> <item>295</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.34</m_delay> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>107</id> <name>tmp_14</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_14_fu_708_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>296</item> <item>297</item> <item>298</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>108</id> <name>tmp_15</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_15_fu_714_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>299</item> <item>300</item> <item>301</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>109</id> <name>tmp_16</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_16_fu_720_p3</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>302</item> <item>303</item> <item>304</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_17</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_17_fu_727_p2</rtlName> <coreName/> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>305</item> <item>306</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.34</m_delay> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>111</id> <name>tmp_18</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_18_fu_733_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>307</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_19</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_19_fu_737_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>308</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>113</id> <name>tmp_20</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_20_fu_741_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>309</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>114</id> <name>tmp_21</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_21_fu_745_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>310</item> <item>311</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.35</m_delay> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>115</id> <name>tmp_22</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_22_fu_751_p4</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>313</item> <item>314</item> <item>316</item> <item>318</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>116</id> <name>tmp_23</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_23_fu_761_p3</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>319</item> <item>320</item> <item>321</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_24</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_24_fu_768_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>323</item> <item>324</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>118</id> <name>tmp_25</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_25_fu_774_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>325</item> <item>326</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>119</id> <name>p_demorgan1</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>p_demorgan1_fu_780_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>327</item> <item>328</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.72</m_delay> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>120</id> <name>tmp_26</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_26_fu_786_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>329</item> <item>330</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>121</id> <name>tmp_27</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_27_fu_792_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>331</item> <item>332</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>122</id> <name>tmp_28</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_28_fu_798_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>333</item> <item>334</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>123</id> <name>p_Result_s</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>293</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>293</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_s_fu_804_p2</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>335</item> <item>336</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.89</m_delay> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_12_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>296</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>296</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_12_i_fu_438_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>337</item> <item>339</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.86</m_delay> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>125</id> <name>storemerge1_i</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge1_i_fu_444_p3</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>340</item> <item>341</item> <item>342</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>126</id> <name>tmp_4</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_4_fu_452_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>343</item> <item>344</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>127</id> <name>storemerge2_i</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>292</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge2_i_fu_458_p3</rtlName> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>345</item> <item>346</item> <item>347</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.51</m_delay> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>128</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>295</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>295</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>348</item> <item>349</item> <item>723</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>129</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>300</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>300</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>350</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>131</id> <name>tmp</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>195</item> <item>196</item> <item>198</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>132</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>272</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>272</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>199</item> <item>200</item> <item>201</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>134</id> <name>tmp_3</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>203</item> <item>204</item> <item>205</item> </oprand_edges> <opcode>nbreadreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>135</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>272</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>272</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>206</item> <item>207</item> <item>208</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>137</id> <name>tmp34</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp34</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>45</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>210</item> <item>211</item> <item>732</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>138</id> <name>tmp_55</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>143</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>274</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_55_fu_472_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>139</id> <name/> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>143</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>274</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>213</item> <item>214</item> <item>727</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>140</id> <name>tmp_length_V_load_ne</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>143</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>143</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>274</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_length_V_load_ne_fu_476_p4</rtlName> <coreName/> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>216</item> <item>217</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_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>141</id> <name>tmp_6</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>275</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>275</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_6_reg_907</rtlName> <coreName/> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>223</item> <item>224</item> <item>226</item> <item>227</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>142</id> <name>tmp_8_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>275</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>275</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_8_i_fu_816_p1</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>228</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>143</id> <name>op2_assign</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>276</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>276</second> </item> </second> </item> </inlineStackInfo> <originalName>op2</originalName> <rtlName>op2_assign_fu_496_p3</rtlName> <coreName/> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>230</item> <item>231</item> <item>233</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>144</id> <name>tmp_11_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>276</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>276</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_11_i_fu_504_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>234</item> <item>235</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.06</m_delay> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>145</id> <name>tmp_14_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>277</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>277</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_14_i_fu_819_p2</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>237</item> <item>238</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.27</m_delay> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>146</id> <name>storemerge4_i</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>276</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>276</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>storemerge4_i_fu_825_p3</rtlName> <coreName/> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>239</item> <item>240</item> <item>241</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.37</m_delay> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>147</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>275</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>275</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>242</item> <item>243</item> <item>728</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>148</id> <name>tmp_119</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>tmp.119</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>66</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>245</item> <item>246</item> <item>733</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.39</m_delay> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>149</id> <name>tmp_56</name> <fileName>sources/valueStore/../globals.h</fileName> <fileDirectory>..</fileDirectory> <lineNumber>114</lineNumber> <contextFuncName>operator=</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>3</count> <item_version>0</item_version> <item> <first> <first>/home/pratik0509/xillinx/Vivado/2018.2/common/technology/autopilot/hls_stream.h</first> <second>read</second> </first> <second>127</second> </item> <item> <first> <first>sources/valueStore/../globals.h</first> <second>operator=</second> </first> <second>114</second> </item> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>278</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_56_fu_510_p3</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>248</item> <item>249</item> <item>251</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>150</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>279</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>279</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>252</item> <item>253</item> <item>254</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>152</id> <name>tmp_57</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>281</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>281</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_57_fu_518_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>255</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>153</id> <name>p_Result_2</name> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>281</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>281</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName>p_Result_2_fu_522_p1</rtlName> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>256</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>154</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>282</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>282</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>257</item> <item>258</item> <item>729</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.07</m_delay> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>155</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>283</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>283</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>259</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.00</m_delay> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>157</id> <name>setValueBuffer_V_fla</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>26</count> <item_version>0</item_version> <item>489</item> <item>490</item> <item>491</item> <item>492</item> <item>493</item> <item>494</item> <item>495</item> <item>496</item> <item>497</item> <item>498</item> <item>499</item> <item>500</item> <item>501</item> <item>502</item> <item>503</item> <item>504</item> <item>505</item> <item>506</item> <item>507</item> <item>508</item> <item>509</item> <item>510</item> <item>511</item> <item>512</item> <item>513</item> <item>514</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>158</id> <name>setValueBuffer_V_new</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>26</count> <item_version>0</item_version> <item>516</item> <item>517</item> <item>518</item> <item>519</item> <item>520</item> <item>521</item> <item>522</item> <item>523</item> <item>524</item> <item>525</item> <item>527</item> <item>528</item> <item>529</item> <item>530</item> <item>531</item> <item>532</item> <item>533</item> <item>534</item> <item>535</item> <item>536</item> <item>537</item> <item>538</item> <item>539</item> <item>540</item> <item>541</item> <item>542</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>159</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>543</item> <item>544</item> <item>545</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>161</id> <name/> <fileName>sources/valueStore/valueStore.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>271</lineNumber> <contextFuncName>setPath</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/pratik0509/Projects/HLx_Examples/Acceleration/memcached/hls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>sources/valueStore/valueStore.cpp</first> <second>setPath</second> </first> <second>271</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>546</item> <item>547</item> <item>722</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>162</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>548</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>164</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>26</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_138"> <Value> <Obj> <type>2</type> <id>173</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_139"> <Value> <Obj> <type>2</type> <id>176</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_140"> <Value> <Obj> <type>2</type> <id>179</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_141"> <Value> <Obj> <type>2</type> <id>182</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_142"> <Value> <Obj> <type>2</type> <id>185</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_143"> <Value> <Obj> <type>2</type> <id>188</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_144"> <Value> <Obj> <type>2</type> <id>191</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_145"> <Value> <Obj> <type>2</type> <id>197</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_146"> <Value> <Obj> <type>2</type> <id>218</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_147"> <Value> <Obj> <type>2</type> <id>220</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>44</content> </item> <item class_id_reference="16" object_id="_148"> <Value> <Obj> <type>2</type> <id>225</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>38</content> </item> <item class_id_reference="16" object_id="_149"> <Value> <Obj> <type>2</type> <id>232</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_150"> <Value> <Obj> <type>2</type> <id>236</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>8</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_151"> <Value> <Obj> <type>2</type> <id>250</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_152"> <Value> <Obj> <type>2</type> <id>275</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>65</content> </item> <item class_id_reference="16" object_id="_153"> <Value> <Obj> <type>2</type> <id>283</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>14</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_154"> <Value> <Obj> <type>2</type> <id>293</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>10</bitwidth> </Value> <const_type>0</const_type> <content>511</content> </item> <item class_id_reference="16" object_id="_155"> <Value> <Obj> <type>2</type> <id>315</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>511</content> </item> <item class_id_reference="16" object_id="_156"> <Value> <Obj> <type>2</type> <id>317</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_157"> <Value> <Obj> <type>2</type> <id>322</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>512</bitwidth> </Value> <const_type>0</const_type> <content>13407807929942597099574024998205846127479365820592393377723561443721764030073546976801874298166903427690031858186486050853753882811946569946433649006084095</content> </item> <item class_id_reference="16" object_id="_158"> <Value> <Obj> <type>2</type> <id>338</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>8</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_159"> <Value> <Obj> <type>2</type> <id>351</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>8</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_160"> <Value> <Obj> <type>2</type> <id>369</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_161"> <Value> <Obj> <type>2</type> <id>488</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_162"> <Value> <Obj> <type>2</type> <id>515</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>512</bitwidth> </Value> <const_type>4</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_163"> <Value> <Obj> <type>2</type> <id>526</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>512</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_164"> <Obj> <type>3</type> <id>24</id> <name>entry</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> </node_objs> </item> <item class_id_reference="18" object_id="_165"> <Obj> <type>3</type> <id>30</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> </node_objs> </item> <item class_id_reference="18" object_id="_166"> <Obj> <type>3</type> <id>35</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>31</item> <item>32</item> <item>33</item> <item>34</item> </node_objs> </item> <item class_id_reference="18" object_id="_167"> <Obj> <type>3</type> <id>38</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>36</item> <item>37</item> </node_objs> </item> <item class_id_reference="18" object_id="_168"> <Obj> <type>3</type> <id>75</id> <name>_ifconv1</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>36</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_169"> <Obj> <type>3</type> <id>82</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> </node_objs> </item> <item class_id_reference="18" object_id="_170"> <Obj> <type>3</type> <id>90</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>7</count> <item_version>0</item_version> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> </node_objs> </item> <item class_id_reference="18" object_id="_171"> <Obj> <type>3</type> <id>93</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>91</item> <item>92</item> </node_objs> </item> <item class_id_reference="18" object_id="_172"> <Obj> <type>3</type> <id>130</id> <name>_ifconv</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>36</count> <item_version>0</item_version> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> </node_objs> </item> <item class_id_reference="18" object_id="_173"> <Obj> <type>3</type> <id>133</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>131</item> <item>132</item> </node_objs> </item> <item class_id_reference="18" object_id="_174"> <Obj> <type>3</type> <id>136</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>134</item> <item>135</item> </node_objs> </item> <item class_id_reference="18" object_id="_175"> <Obj> <type>3</type> <id>151</id> <name>._crit_edge5.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>14</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> <item>149</item> <item>150</item> </node_objs> </item> <item class_id_reference="18" object_id="_176"> <Obj> <type>3</type> <id>156</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>154</item> <item>155</item> </node_objs> </item> <item class_id_reference="18" object_id="_177"> <Obj> <type>3</type> <id>160</id> <name>._crit_edge2.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>157</item> <item>158</item> <item>159</item> </node_objs> </item> <item class_id_reference="18" object_id="_178"> <Obj> <type>3</type> <id>163</id> <name>mergeST.i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>161</item> <item>162</item> </node_objs> </item> <item class_id_reference="18" object_id="_179"> <Obj> <type>3</type> <id>165</id> <name>setPath.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>164</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>360</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_180"> <id>166</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>167</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>168</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>169</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>170</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>171</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>172</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>174</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>175</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>177</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>178</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>180</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>181</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>183</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>184</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>187</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>189</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>190</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>192</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>193</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>196</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>198</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>199</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>200</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>201</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>204</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>205</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>206</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>207</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>208</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>211</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>212</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>213</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>214</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>217</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>219</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>221</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>224</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>226</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>227</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>228</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>231</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>233</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_224"> <id>234</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>235</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>237</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>238</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>239</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>240</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>241</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>242</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_232"> <id>243</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>246</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>249</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>251</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>252</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>253</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>254</id> <edge_type>2</edge_type> <source_obj>156</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>255</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>256</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>257</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>258</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>259</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>261</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>262</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>263</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>264</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>265</id> <edge_type>2</edge_type> <source_obj>130</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>266</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>267</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>268</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>269</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>271</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>272</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="_255"> <id>274</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>276</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>277</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>280</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>281</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>282</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>284</id> <edge_type>1</edge_type> <source_obj>283</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>285</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>286</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>287</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>290</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>291</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>292</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>294</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>295</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="_270"> <id>296</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="_271"> <id>297</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_272"> <id>298</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>299</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>300</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>301</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>302</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>303</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="_278"> <id>304</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>305</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>306</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>307</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="_282"> <id>308</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>309</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>310</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>311</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_286"> <id>314</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="_287"> <id>316</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>318</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_289"> <id>319</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>320</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>321</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>323</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>324</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>325</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>326</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>327</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>328</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>329</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>330</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>331</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>332</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>333</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>334</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>335</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>336</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>337</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>339</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>340</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>341</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>342</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>343</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>344</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>345</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>346</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>347</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>127</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>348</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>349</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>350</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>352</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>353</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>356</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>357</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>84</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>1</source_obj> <sink_obj>85</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>84</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>364</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>365</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>368</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>370</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>371</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>372</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>373</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>374</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>375</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>377</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>378</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>380</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>381</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="_338"> <id>383</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>384</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>385</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>386</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>387</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>389</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>390</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>391</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="_346"> <id>392</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>393</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>395</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>396</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="_350"> <id>398</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>399</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>400</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>402</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>403</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>404</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="_356"> <id>405</id> <edge_type>1</edge_type> <source_obj>283</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>406</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>407</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>46</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>408</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="_360"> <id>410</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_361"> <id>411</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>412</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>413</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>49</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>47</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>415</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>416</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>417</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>418</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>419</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="_370"> <id>420</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>421</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>422</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>423</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>424</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>425</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>426</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>427</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>428</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>429</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>430</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>432</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="_382"> <id>433</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>434</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>58</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_384"> <id>435</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_385"> <id>436</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="_386"> <id>437</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_387"> <id>438</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>439</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>440</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>441</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>442</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>443</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="_393"> <id>444</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="_394"> <id>445</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>446</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>447</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>448</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>449</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>450</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>451</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="_401"> <id>452</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>453</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>454</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>455</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>456</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>457</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>458</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>459</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="_409"> <id>460</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>461</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>462</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="_412"> <id>463</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>464</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>465</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_415"> <id>466</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="_416"> <id>467</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>468</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>469</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>470</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_420"> <id>472</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>473</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>474</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>475</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>476</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>477</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>478</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>480</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_428"> <id>481</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>483</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>484</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>485</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>486</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>487</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>489</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_435"> <id>490</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>491</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>492</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>493</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>494</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>495</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>496</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_442"> <id>497</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>498</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_444"> <id>499</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_445"> <id>500</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_446"> <id>501</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_447"> <id>502</id> <edge_type>2</edge_type> <source_obj>156</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_448"> <id>503</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_449"> <id>504</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_450"> <id>505</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_451"> <id>506</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_452"> <id>507</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_453"> <id>508</id> <edge_type>2</edge_type> <source_obj>130</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_454"> <id>509</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_455"> <id>510</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_456"> <id>511</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_457"> <id>512</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_458"> <id>513</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_459"> <id>514</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_460"> <id>516</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_461"> <id>517</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_462"> <id>518</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_463"> <id>519</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_464"> <id>520</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_465"> <id>521</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_466"> <id>522</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_467"> <id>523</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_468"> <id>524</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_469"> <id>525</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_470"> <id>527</id> <edge_type>1</edge_type> <source_obj>526</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_471"> <id>528</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_472"> <id>529</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_473"> <id>530</id> <edge_type>2</edge_type> <source_obj>156</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_474"> <id>531</id> <edge_type>1</edge_type> <source_obj>526</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_475"> <id>532</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_476"> <id>533</id> <edge_type>1</edge_type> <source_obj>526</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_477"> <id>534</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_478"> <id>535</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_479"> <id>536</id> <edge_type>2</edge_type> <source_obj>130</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_480"> <id>537</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_481"> <id>538</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_482"> <id>539</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_483"> <id>540</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_484"> <id>541</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_485"> <id>542</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>158</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_486"> <id>543</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_487"> <id>544</id> <edge_type>2</edge_type> <source_obj>165</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_488"> <id>545</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>159</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_489"> <id>546</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_490"> <id>547</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_491"> <id>548</id> <edge_type>2</edge_type> <source_obj>165</source_obj> <sink_obj>162</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_492"> <id>685</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_493"> <id>686</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_494"> <id>687</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_495"> <id>688</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_496"> <id>689</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_497"> <id>690</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_498"> <id>691</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_499"> <id>692</id> <edge_type>2</edge_type> <source_obj>24</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_500"> <id>693</id> <edge_type>2</edge_type> <source_obj>30</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_501"> <id>694</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_502"> <id>695</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_503"> <id>696</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_504"> <id>697</id> <edge_type>2</edge_type> <source_obj>75</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_505"> <id>698</id> <edge_type>2</edge_type> <source_obj>82</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_506"> <id>699</id> <edge_type>2</edge_type> <source_obj>90</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_507"> <id>700</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_508"> <id>701</id> <edge_type>2</edge_type> <source_obj>93</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_509"> <id>702</id> <edge_type>2</edge_type> <source_obj>130</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_510"> <id>703</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_511"> <id>704</id> <edge_type>2</edge_type> <source_obj>133</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_512"> <id>705</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_513"> <id>706</id> <edge_type>2</edge_type> <source_obj>136</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_514"> <id>707</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_515"> <id>708</id> <edge_type>2</edge_type> <source_obj>151</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_516"> <id>709</id> <edge_type>2</edge_type> <source_obj>156</source_obj> <sink_obj>160</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_517"> <id>710</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>163</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_518"> <id>711</id> <edge_type>2</edge_type> <source_obj>160</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_519"> <id>712</id> <edge_type>2</edge_type> <source_obj>163</source_obj> <sink_obj>165</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_520"> <id>714</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_521"> <id>715</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_522"> <id>716</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_523"> <id>717</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_524"> <id>718</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_525"> <id>719</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_526"> <id>720</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_527"> <id>721</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_528"> <id>722</id> <edge_type>4</edge_type> <source_obj>19</source_obj> <sink_obj>161</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_529"> <id>723</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_530"> <id>724</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_531"> <id>725</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_532"> <id>726</id> <edge_type>4</edge_type> <source_obj>22</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_533"> <id>727</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_534"> <id>728</id> <edge_type>4</edge_type> <source_obj>21</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_535"> <id>729</id> <edge_type>4</edge_type> <source_obj>18</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_536"> <id>730</id> <edge_type>4</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="_537"> <id>731</id> <edge_type>4</edge_type> <source_obj>91</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_538"> <id>732</id> <edge_type>4</edge_type> <source_obj>131</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_539"> <id>733</id> <edge_type>4</edge_type> <source_obj>134</source_obj> <sink_obj>148</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="_540"> <mId>1</mId> <mTag>setPath</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>16</count> <item_version>0</item_version> <item>24</item> <item>30</item> <item>35</item> <item>38</item> <item>75</item> <item>82</item> <item>90</item> <item>93</item> <item>130</item> <item>133</item> <item>136</item> <item>151</item> <item>156</item> <item>160</item> <item>163</item> <item>165</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>2</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_541"> <states class_id="25" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_542"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>64</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_543"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_544"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_545"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_546"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_547"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_548"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_549"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_550"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_551"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_552"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_553"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_554"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_555"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_556"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_557"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_558"> <id>44</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_559"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_560"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_561"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_562"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_563"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_564"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_565"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_566"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_567"> <id>73</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_568"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_569"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_570"> <id>81</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_571"> <id>83</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_572"> <id>88</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_573"> <id>89</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_574"> <id>91</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_575"> <id>92</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_576"> <id>94</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_577"> <id>95</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_578"> <id>96</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_579"> <id>98</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_580"> <id>99</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_581"> <id>100</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_582"> <id>101</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_583"> <id>103</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_584"> <id>105</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_585"> <id>124</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_586"> <id>125</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_587"> <id>126</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_588"> <id>127</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_589"> <id>128</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_590"> <id>131</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_591"> <id>132</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_592"> <id>134</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_593"> <id>135</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_594"> <id>137</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_595"> <id>138</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_596"> <id>140</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_597"> <id>141</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_598"> <id>143</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_599"> <id>144</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_600"> <id>148</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_601"> <id>149</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_602"> <id>150</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_603"> <id>152</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_604"> <id>153</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_605"> <id>154</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_606"> <id>155</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_607"> <id>2</id> <operations> <count>66</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_608"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_609"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_610"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_611"> <id>26</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_612"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_613"> <id>32</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_614"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_615"> <id>45</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_616"> <id>47</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_617"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_618"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_619"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_620"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_621"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_622"> <id>54</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_623"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_624"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_625"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_626"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_627"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_628"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_629"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_630"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_631"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_632"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_633"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_634"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_635"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_636"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_637"> <id>78</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_638"> <id>79</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_639"> <id>84</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_640"> <id>85</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_641"> <id>86</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_642"> <id>87</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_643"> <id>97</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_644"> <id>102</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_645"> <id>104</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_646"> <id>106</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_647"> <id>107</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_648"> <id>108</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_649"> <id>109</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_650"> <id>110</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_651"> <id>111</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_652"> <id>112</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_653"> <id>113</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_654"> <id>114</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_655"> <id>115</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_656"> <id>116</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_657"> <id>117</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_658"> <id>118</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_659"> <id>119</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_660"> <id>120</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_661"> <id>121</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_662"> <id>122</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_663"> <id>123</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_664"> <id>129</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_665"> <id>139</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_666"> <id>142</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_667"> <id>145</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_668"> <id>146</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_669"> <id>147</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_670"> <id>157</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_671"> <id>158</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_672"> <id>159</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_673"> <id>161</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_674"> <id>3</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_675"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_676"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_677"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_678"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_679"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_680"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_681"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_682"> <id>26</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_683"> <id>32</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_684"> <id>78</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_685"> <id>79</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_686"> <id>85</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_687"> <id>86</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_688"> <id>162</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_689"> <id>164</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_690"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>113</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="_691"> <inState>2</inState> <outState>3</outState> <condition> <id>114</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="_692"> <dp_component_resource class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>59</count> <item_version>0</item_version> <item class_id="36" tracking_level="0" version="0"> <first>Hi_assign_1_fu_360_p2 ( or ) </first> <second class_id="37" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>14</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>Hi_assign_fu_422_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>6</second> </item> <item> <first>(1P1)</first> <second>14</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>14</second> </item> </second> </item> <item> <first>ap_block_state1_pp0_stage0_iter0 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state2_io ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state2_pp0_stage0_iter1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_io ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state3_pp0_stage0_iter2 ( 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_condition_474 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op15_read_state1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op39_read_state1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_predicate_op55_read_state1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>grp_fu_324_p2 ( + ) </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>15</second> </item> </second> </item> <item> <first>memWrCmd_V_1_load_A ( 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>memWrCmd_V_1_load_B ( 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>memWrCmd_V_1_state_cmp_full ( icmp ) </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>8</second> </item> </second> </item> <item> <first>memWrData_V_V_1_load_A ( 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>memWrData_V_V_1_load_B ( 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>memWrData_V_V_1_state_cmp_full ( icmp ) </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>8</second> </item> </second> </item> <item> <first>p_Result_1_fu_662_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>p_Result_s_fu_804_p2 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>p_demorgan1_fu_780_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>p_demorgan_fu_638_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>storemerge1_i_fu_444_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>2</second> </item> <item> <first>(2P2)</first> <second>4</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>4</second> </item> </second> </item> <item> <first>storemerge2_i_fu_458_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>(2P2)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>storemerge3_i_fu_396_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>(2P2)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>storemerge4_i_fu_825_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>storemerge_i_fu_382_p3 ( select ) </first> <second> <count>5</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>3</second> </item> <item> <first>(2P2)</first> <second>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>3</second> </item> </second> </item> <item> <first>tmp_10_fu_428_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>14</second> </item> <item> <first>(1P1)</first> <second>14</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>tmp_11_i_fu_504_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>13</second> </item> <item> <first>(1P1)</first> <second>13</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>tmp_12_i_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>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>tmp_13_fu_702_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>9</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>17</second> </item> </second> </item> <item> <first>tmp_13_i_fu_376_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>3</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>11</second> </item> </second> </item> <item> <first>tmp_14_fu_708_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>tmp_14_i_fu_819_p2 ( + ) </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>15</second> </item> </second> </item> <item> <first>tmp_15_fu_714_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>tmp_16_fu_720_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>tmp_17_fu_727_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>9</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>17</second> </item> </second> </item> <item> <first>tmp_21_fu_745_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2171</second> </item> </second> </item> <item> <first>tmp_23_fu_761_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>512</second> </item> <item> <first>(2P2)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_24_fu_768_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2171</second> </item> </second> </item> <item> <first>tmp_25_fu_774_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>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2171</second> </item> </second> </item> <item> <first>tmp_26_fu_786_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_27_fu_792_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_28_fu_798_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_34_fu_366_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>14</second> </item> <item> <first>(1P1)</first> <second>14</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>13</second> </item> </second> </item> <item> <first>tmp_38_fu_560_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>9</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>17</second> </item> </second> </item> <item> <first>tmp_39_fu_566_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>tmp_40_fu_572_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>tmp_41_fu_578_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>tmp_42_fu_585_p2 ( - ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>9</second> </item> <item> <first>(1P1)</first> <second>10</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>17</second> </item> </second> </item> <item> <first>tmp_46_fu_603_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2171</second> </item> </second> </item> <item> <first>tmp_48_fu_619_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>512</second> </item> <item> <first>(2P2)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_49_fu_626_p2 ( shl ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2171</second> </item> </second> </item> <item> <first>tmp_4_fu_452_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>tmp_50_fu_632_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>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2171</second> </item> </second> </item> <item> <first>tmp_51_fu_644_p2 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_52_fu_650_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_53_fu_656_p2 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>512</second> </item> <item> <first>(1P1)</first> <second>512</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>512</second> </item> </second> </item> <item> <first>tmp_5_fu_390_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> </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>19</count> <item_version>0</item_version> <item> <first>ap_NS_iter1_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ap_NS_iter2_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_phi_mux_setValueBuffer_V_fla_phi_fu_213_p26</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_phi_mux_setValueBuffer_V_new_phi_fu_260_p26</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>512</second> </item> <item> <first>(2Count)</first> <second>1536</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ap_phi_reg_pp0_iter1_setValueBuffer_V_fla_reg_208</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>3</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>ap_phi_reg_pp0_iter1_setValueBuffer_V_new_reg_255</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>512</second> </item> <item> <first>(2Count)</first> <second>1536</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>counter</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>8</second> </item> <item> <first>(2Count)</first> <second>16</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>demux2setPathMetadat_1_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>demux2setPathValue_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>filterPopSet_V_V_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>memWrCmd_V_1_data_in</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>40</second> </item> <item> <first>(2Count)</first> <second>120</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>memWrCmd_V_1_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>40</second> </item> <item> <first>(2Count)</first> <second>80</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>memWrCmd_V_1_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>memWrCmd_V_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>memWrData_V_V_1_data_out</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>512</second> </item> <item> <first>(2Count)</first> <second>1024</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>memWrData_V_V_1_state</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>3</second> </item> <item> <first>(1Bits)</first> <second>2</second> </item> <item> <first>(2Count)</first> <second>6</second> </item> <item> <first>LUT</first> <second>15</second> </item> </second> </item> <item> <first>memWrData_V_V_TDATA_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>setState</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>5</second> </item> <item> <first>(1Bits)</first> <second>3</second> </item> <item> <first>(2Count)</first> <second>15</second> </item> <item> <first>LUT</first> <second>27</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>37</count> <item_version>0</item_version> <item> <first>ap_CS_iter0_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_CS_iter1_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>ap_CS_iter2_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_phi_reg_pp0_iter1_setValueBuffer_V_fla_reg_208</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_phi_reg_pp0_iter1_setValueBuffer_V_new_reg_255</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>counter</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>memWrCmd_V_1_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>40</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>40</second> </item> </second> </item> <item> <first>memWrCmd_V_1_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>40</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>40</second> </item> </second> </item> <item> <first>memWrCmd_V_1_sel_rd</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>memWrCmd_V_1_sel_wr</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>memWrCmd_V_1_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>memWrData_V_V_1_payload_A</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>memWrData_V_V_1_payload_B</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>memWrData_V_V_1_sel_rd</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>memWrData_V_V_1_sel_wr</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>memWrData_V_V_1_state</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>2</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>2</second> </item> </second> </item> <item> <first>reg_335</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>66</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>66</second> </item> </second> </item> <item> <first>setMdBuffer_address_s</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>setNumOfWords</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>setState</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>setState_load_reg_844</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>setState_load_reg_844_pp0_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>3</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>3</second> </item> </second> </item> <item> <first>setValueBuffer_V</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>tmp_10_reg_880</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>tmp_11_i_reg_912</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>tmp_12_reg_888</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>10</second> </item> <item> <first>(Consts)</first> <second>6</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_1_reg_871</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>tmp_2_reg_848</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>tmp_33_reg_852</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>tmp_34_reg_857</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>tmp_37_reg_865</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>10</second> </item> <item> <first>(Consts)</first> <second>6</second> </item> <item> <first>FF</first> <second>4</second> </item> </second> </item> <item> <first>tmp_3_reg_898</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>tmp_55_reg_902</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_6_reg_907</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>tmp_9_reg_875</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>tmp_reg_894</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>0</count> <item_version>0</item_version> </dp_dsp_resource> <dp_component_map class_id="39" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>44</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>Hi_assign_1_fu_360_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>Hi_assign_fu_422_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>grp_fu_324_p2 ( + ) </first> <second> <count>2</count> <item_version>0</item_version> <item>72</item> <item>94</item> </second> </item> <item> <first>p_Result_1_fu_662_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>p_Result_s_fu_804_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>p_demorgan1_fu_780_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>p_demorgan_fu_638_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>storemerge1_i_fu_444_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>storemerge2_i_fu_458_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>storemerge3_i_fu_396_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>storemerge4_i_fu_825_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>storemerge_i_fu_382_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_10_fu_428_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>tmp_11_i_fu_504_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>tmp_12_i_fu_438_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>tmp_13_fu_702_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>tmp_13_i_fu_376_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_14_fu_708_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>tmp_14_i_fu_819_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>tmp_15_fu_714_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>tmp_16_fu_720_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>tmp_17_fu_727_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_21_fu_745_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>tmp_23_fu_761_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>tmp_24_fu_768_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>tmp_25_fu_774_p2 ( lshr ) </first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>tmp_26_fu_786_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>tmp_27_fu_792_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>tmp_28_fu_798_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>tmp_34_fu_366_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_38_fu_560_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_39_fu_566_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_40_fu_572_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_41_fu_578_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_42_fu_585_p2 ( - ) </first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_46_fu_603_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_48_fu_619_p3 ( select ) </first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_49_fu_626_p2 ( shl ) </first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp_4_fu_452_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>tmp_50_fu_632_p2 ( lshr ) </first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_51_fu_644_p2 ( xor ) </first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp_52_fu_650_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_53_fu_656_p2 ( and ) </first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp_5_fu_390_p2 ( or ) </first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="41" tracking_level="0" version="0"> <count>132</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>18</first> <second class_id="43" tracking_level="0" version="0"> <first>0</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>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>1</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>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>33</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>79</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>80</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>86</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>87</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>2</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="44" tracking_level="0" version="0"> <count>16</count> <item_version>0</item_version> <item class_id="45" tracking_level="0" version="0"> <first>24</first> <second class_id="46" tracking_level="0" version="0"> <first>0</first> <second>2</second> </second> </item> <item> <first>30</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>35</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>82</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>90</first> <second> <first>0</first> <second>2</second> </second> </item> <item> <first>93</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>133</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>156</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>163</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>165</first> <second> <first>2</first> <second>2</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="_693"> <region_name>setPath</region_name> <basic_blocks> <count>16</count> <item_version>0</item_version> <item>24</item> <item>30</item> <item>35</item> <item>38</item> <item>75</item> <item>82</item> <item>90</item> <item>93</item> <item>130</item> <item>133</item> <item>136</item> <item>151</item> <item>156</item> <item>160</item> <item>163</item> <item>165</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="49" tracking_level="0" version="0"> <count>99</count> <item_version>0</item_version> <item class_id="50" tracking_level="0" version="0"> <first>158</first> <second> <count>3</count> <item_version>0</item_version> <item>36</item> <item>91</item> <item>134</item> </second> </item> <item> <first>166</first> <second> <count>3</count> <item_version>0</item_version> <item>39</item> <item>96</item> <item>148</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>180</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>186</first> <second> <count>8</count> <item_version>0</item_version> <item>26</item> <item>26</item> <item>32</item> <item>32</item> <item>79</item> <item>79</item> <item>86</item> <item>86</item> </second> </item> <item> <first>193</first> <second> <count>2</count> <item_version>0</item_version> <item>27</item> <item>87</item> </second> </item> <item> <first>201</first> <second> <count>4</count> <item_version>0</item_version> <item>78</item> <item>78</item> <item>85</item> <item>85</item> </second> </item> <item> <first>213</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>260</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>298</first> <second> <count>4</count> <item_version>0</item_version> <item>25</item> <item>31</item> <item>76</item> <item>83</item> </second> </item> <item> <first>304</first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>88</item> </second> </item> <item> <first>310</first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>80</item> </second> </item> <item> <first>316</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>98</item> </second> </item> <item> <first>324</first> <second> <count>2</count> <item_version>0</item_version> <item>72</item> <item>94</item> </second> </item> <item> <first>329</first> <second> <count>2</count> <item_version>0</item_version> <item>73</item> <item>95</item> </second> </item> <item> <first>339</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>343</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>348</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>352</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>360</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>366</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>372</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>376</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>382</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>390</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>396</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>404</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>410</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>422</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>428</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>434</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>438</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>444</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>452</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>458</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>466</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>472</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>476</first> <second> <count>1</count> <item_version>0</item_version> <item>140</item> </second> </item> <item> <first>486</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>496</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>504</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>510</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>518</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>522</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>526</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>532</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>537</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>541</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>545</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>549</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>553</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>560</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>566</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>572</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>578</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>585</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>591</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>595</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>599</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>603</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>609</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>619</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>626</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>632</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>638</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>644</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>650</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>656</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>662</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>669</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>678</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>687</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>691</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>695</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>702</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>708</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>714</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>720</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>727</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>733</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>737</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>741</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>745</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>751</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>761</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>768</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>774</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>780</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>786</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>792</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>798</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>804</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>811</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>816</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>819</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>825</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>832</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>838</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="52" tracking_level="0" version="0"> <count>77</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first>Hi_assign_1_fu_360</first> <second> <count>1</count> <item_version>0</item_version> <item>44</item> </second> </item> <item> <first>Hi_assign_fu_422</first> <second> <count>1</count> <item_version>0</item_version> <item>101</item> </second> </item> <item> <first>Lo_assign_1_fu_352</first> <second> <count>1</count> <item_version>0</item_version> <item>43</item> </second> </item> <item> <first>Lo_assign_fu_414</first> <second> <count>1</count> <item_version>0</item_version> <item>100</item> </second> </item> <item> <first>grp_fu_316</first> <second> <count>2</count> <item_version>0</item_version> <item>41</item> <item>98</item> </second> </item> <item> <first>grp_fu_324</first> <second> <count>2</count> <item_version>0</item_version> <item>72</item> <item>94</item> </second> </item> <item> <first>loc_V_1_fu_549</first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first>loc_V_fu_691</first> <second> <count>1</count> <item_version>0</item_version> <item>102</item> </second> </item> <item> <first>op2_assign_fu_496</first> <second> <count>1</count> <item_version>0</item_version> <item>143</item> </second> </item> <item> <first>p_Result_1_fu_662</first> <second> <count>1</count> <item_version>0</item_version> <item>66</item> </second> </item> <item> <first>p_Result_2_fu_522</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>p_Result_s_fu_804</first> <second> <count>1</count> <item_version>0</item_version> <item>123</item> </second> </item> <item> <first>p_demorgan1_fu_780</first> <second> <count>1</count> <item_version>0</item_version> <item>119</item> </second> </item> <item> <first>p_demorgan_fu_638</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>setValueBuffer_V_fla_phi_fu_213</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>setValueBuffer_V_new_phi_fu_260</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>storemerge1_i_fu_444</first> <second> <count>1</count> <item_version>0</item_version> <item>125</item> </second> </item> <item> <first>storemerge2_i_fu_458</first> <second> <count>1</count> <item_version>0</item_version> <item>127</item> </second> </item> <item> <first>storemerge3_i_fu_396</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>storemerge4_i_fu_825</first> <second> <count>1</count> <item_version>0</item_version> <item>146</item> </second> </item> <item> <first>storemerge_i_fu_382</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_10_fu_428</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>tmp_11_fu_695</first> <second> <count>1</count> <item_version>0</item_version> <item>104</item> </second> </item> <item> <first>tmp_11_i_fu_504</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>tmp_12_fu_434</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>tmp_12_i_fu_438</first> <second> <count>1</count> <item_version>0</item_version> <item>124</item> </second> </item> <item> <first>tmp_13_fu_702</first> <second> <count>1</count> <item_version>0</item_version> <item>106</item> </second> </item> <item> <first>tmp_13_i_fu_376</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_14_fu_708</first> <second> <count>1</count> <item_version>0</item_version> <item>107</item> </second> </item> <item> <first>tmp_14_i_fu_819</first> <second> <count>1</count> <item_version>0</item_version> <item>145</item> </second> </item> <item> <first>tmp_15_fu_714</first> <second> <count>1</count> <item_version>0</item_version> <item>108</item> </second> </item> <item> <first>tmp_16_fu_720</first> <second> <count>1</count> <item_version>0</item_version> <item>109</item> </second> </item> <item> <first>tmp_17_fu_727</first> <second> <count>1</count> <item_version>0</item_version> <item>110</item> </second> </item> <item> <first>tmp_18_fu_733</first> <second> <count>1</count> <item_version>0</item_version> <item>111</item> </second> </item> <item> <first>tmp_19_fu_737</first> <second> <count>1</count> <item_version>0</item_version> <item>112</item> </second> </item> <item> <first>tmp_20_fu_741</first> <second> <count>1</count> <item_version>0</item_version> <item>113</item> </second> </item> <item> <first>tmp_21_fu_745</first> <second> <count>1</count> <item_version>0</item_version> <item>114</item> </second> </item> <item> <first>tmp_22_fu_751</first> <second> <count>1</count> <item_version>0</item_version> <item>115</item> </second> </item> <item> <first>tmp_23_fu_761</first> <second> <count>1</count> <item_version>0</item_version> <item>116</item> </second> </item> <item> <first>tmp_24_fu_768</first> <second> <count>1</count> <item_version>0</item_version> <item>117</item> </second> </item> <item> <first>tmp_25_fu_774</first> <second> <count>1</count> <item_version>0</item_version> <item>118</item> </second> </item> <item> <first>tmp_26_fu_786</first> <second> <count>1</count> <item_version>0</item_version> <item>120</item> </second> </item> <item> <first>tmp_27_fu_792</first> <second> <count>1</count> <item_version>0</item_version> <item>121</item> </second> </item> <item> <first>tmp_28_fu_798</first> <second> <count>1</count> <item_version>0</item_version> <item>122</item> </second> </item> <item> <first>tmp_31_fu_545</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>tmp_33_fu_348</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_34_fu_366</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_35_fu_678</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>tmp_36_fu_553</first> <second> <count>1</count> <item_version>0</item_version> <item>47</item> </second> </item> <item> <first>tmp_37_fu_372</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_38_fu_560</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>tmp_39_fu_566</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>tmp_40_fu_572</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>tmp_41_fu_578</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>tmp_429_fu_669</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>tmp_42_fu_585</first> <second> <count>1</count> <item_version>0</item_version> <item>53</item> </second> </item> <item> <first>tmp_43_fu_591</first> <second> <count>1</count> <item_version>0</item_version> <item>54</item> </second> </item> <item> <first>tmp_44_fu_595</first> <second> <count>1</count> <item_version>0</item_version> <item>55</item> </second> </item> <item> <first>tmp_45_fu_599</first> <second> <count>1</count> <item_version>0</item_version> <item>56</item> </second> </item> <item> <first>tmp_46_fu_603</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>tmp_47_fu_609</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>tmp_48_fu_619</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_49_fu_626</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>tmp_4_fu_452</first> <second> <count>1</count> <item_version>0</item_version> <item>126</item> </second> </item> <item> <first>tmp_50_fu_632</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_51_fu_644</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>tmp_52_fu_650</first> <second> <count>1</count> <item_version>0</item_version> <item>64</item> </second> </item> <item> <first>tmp_53_fu_656</first> <second> <count>1</count> <item_version>0</item_version> <item>65</item> </second> </item> <item> <first>tmp_55_fu_472</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>tmp_56_fu_510</first> <second> <count>1</count> <item_version>0</item_version> <item>149</item> </second> </item> <item> <first>tmp_57_fu_518</first> <second> <count>1</count> <item_version>0</item_version> <item>152</item> </second> </item> <item> <first>tmp_5_fu_390</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>tmp_6_fu_486</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>tmp_7_fu_687</first> <second> <count>1</count> <item_version>0</item_version> <item>97</item> </second> </item> <item> <first>tmp_8_i_fu_816</first> <second> <count>1</count> <item_version>0</item_version> <item>142</item> </second> </item> <item> <first>tmp_9_fu_410</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>tmp_length_V_load_ne_fu_476</first> <second> <count>1</count> <item_version>0</item_version> <item>140</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>22</count> <item_version>0</item_version> <item> <first>StgValue_125_store_fu_811</first> <second> <count>1</count> <item_version>0</item_version> <item>139</item> </second> </item> <item> <first>StgValue_129_store_fu_832</first> <second> <count>1</count> <item_version>0</item_version> <item>147</item> </second> </item> <item> <first>StgValue_133_store_fu_838</first> <second> <count>1</count> <item_version>0</item_version> <item>161</item> </second> </item> <item> <first>StgValue_26_store_fu_404</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>StgValue_50_store_fu_466</first> <second> <count>1</count> <item_version>0</item_version> <item>128</item> </second> </item> <item> <first>StgValue_66_store_fu_526</first> <second> <count>1</count> <item_version>0</item_version> <item>154</item> </second> </item> <item> <first>counter_load_load_fu_343</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>grp_nbreadreq_fu_158</first> <second> <count>3</count> <item_version>0</item_version> <item>36</item> <item>91</item> <item>134</item> </second> </item> <item> <first>grp_read_fu_166</first> <second> <count>3</count> <item_version>0</item_version> <item>39</item> <item>96</item> <item>148</item> </second> </item> <item> <first>grp_store_fu_298</first> <second> <count>4</count> <item_version>0</item_version> <item>25</item> <item>31</item> <item>76</item> <item>83</item> </second> </item> <item> <first>grp_store_fu_304</first> <second> <count>2</count> <item_version>0</item_version> <item>28</item> <item>88</item> </second> </item> <item> <first>grp_store_fu_310</first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>80</item> </second> </item> <item> <first>grp_store_fu_329</first> <second> <count>2</count> <item_version>0</item_version> <item>73</item> <item>95</item> </second> </item> <item> <first>grp_write_fu_186</first> <second> <count>8</count> <item_version>0</item_version> <item>26</item> <item>26</item> <item>32</item> <item>32</item> <item>79</item> <item>79</item> <item>86</item> <item>86</item> </second> </item> <item> <first>grp_write_fu_193</first> <second> <count>2</count> <item_version>0</item_version> <item>27</item> <item>87</item> </second> </item> <item> <first>grp_write_fu_201</first> <second> <count>4</count> <item_version>0</item_version> <item>78</item> <item>78</item> <item>85</item> <item>85</item> </second> </item> <item> <first>p_Val2_s_load_fu_532</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>setCtrlWord_address_s_load_fu_537</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>setState_load_load_fu_339</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp34_read_fu_180</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> <item> <first>tmp_count_V_load_fu_541</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>tmp_nbreadreq_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>131</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="54" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>21</count> <item_version>0</item_version> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>255</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>335</first> <second> <count>2</count> <item_version>0</item_version> <item>39</item> <item>96</item> </second> </item> <item> <first>844</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>848</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>852</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>857</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>865</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>871</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>875</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>880</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>888</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>894</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>898</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>902</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>907</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>912</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>920</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>925</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>930</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>935</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>21</count> <item_version>0</item_version> <item> <first>p_Result_2_reg_920</first> <second> <count>1</count> <item_version>0</item_version> <item>153</item> </second> </item> <item> <first>p_Val2_s_reg_925</first> <second> <count>1</count> <item_version>0</item_version> <item>19</item> </second> </item> <item> <first>reg_335</first> <second> <count>2</count> <item_version>0</item_version> <item>39</item> <item>96</item> </second> </item> <item> <first>setState_load_reg_844</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>setValueBuffer_V_fla_reg_208</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>setValueBuffer_V_new_reg_255</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> <item> <first>tmp_10_reg_880</first> <second> <count>1</count> <item_version>0</item_version> <item>103</item> </second> </item> <item> <first>tmp_11_i_reg_912</first> <second> <count>1</count> <item_version>0</item_version> <item>144</item> </second> </item> <item> <first>tmp_12_reg_888</first> <second> <count>1</count> <item_version>0</item_version> <item>105</item> </second> </item> <item> <first>tmp_1_reg_871</first> <second> <count>1</count> <item_version>0</item_version> <item>91</item> </second> </item> <item> <first>tmp_2_reg_848</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>tmp_33_reg_852</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>tmp_34_reg_857</first> <second> <count>1</count> <item_version>0</item_version> <item>46</item> </second> </item> <item> <first>tmp_35_reg_935</first> <second> <count>1</count> <item_version>0</item_version> <item>84</item> </second> </item> <item> <first>tmp_37_reg_865</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>tmp_3_reg_898</first> <second> <count>1</count> <item_version>0</item_version> <item>134</item> </second> </item> <item> <first>tmp_429_reg_930</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>tmp_55_reg_902</first> <second> <count>1</count> <item_version>0</item_version> <item>138</item> </second> </item> <item> <first>tmp_6_reg_907</first> <second> <count>1</count> <item_version>0</item_version> <item>141</item> </second> </item> <item> <first>tmp_9_reg_875</first> <second> <count>1</count> <item_version>0</item_version> <item>99</item> </second> </item> <item> <first>tmp_reg_894</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>2</count> <item_version>0</item_version> <item> <first>208</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>255</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>2</count> <item_version>0</item_version> <item> <first>setValueBuffer_V_fla_reg_208</first> <second> <count>1</count> <item_version>0</item_version> <item>157</item> </second> </item> <item> <first>setValueBuffer_V_new_reg_255</first> <second> <count>1</count> <item_version>0</item_version> <item>158</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="55" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>demux2setPathMetadat_1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>1</count> <item_version>0</item_version> <item>131</item> </second> </item> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>137</item> </second> </item> </second> </item> <item> <first>demux2setPathValue_V</first> <second> <count>2</count> <item_version>0</item_version> <item> <first>nbreadreq</first> <second> <count>3</count> <item_version>0</item_version> <item>134</item> <item>91</item> <item>36</item> </second> </item> <item> <first>read</first> <second> <count>3</count> <item_version>0</item_version> <item>148</item> <item>96</item> <item>39</item> </second> </item> </second> </item> <item> <first>filterPopSet_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>87</item> <item>27</item> </second> </item> </second> </item> <item> <first>memWrCmd_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>2</count> <item_version>0</item_version> <item>85</item> <item>78</item> </second> </item> </second> </item> <item> <first>memWrData_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>write</first> <second> <count>4</count> <item_version>0</item_version> <item>86</item> <item>79</item> <item>32</item> <item>26</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="57" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>8</first> <second>FIFO</second> </item> <item> <first>9</first> <second>FIFO</second> </item> <item> <first>10</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
pragma License (Unrestricted); -- implementation unit package System.Once is pragma Preelaborate; type Flag is mod 2 ** 8; -- it should be initialized to zero for Flag'Size use 8; pragma Atomic (Flag); procedure Initialize ( Flag : not null access Once.Flag; Process : not null access procedure); end System.Once;
-- Copyright 2006-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Pck is type Data_Small is array (1 .. 2) of Integer; type Data_Large is array (1 .. 4) of Integer; type Small_Float_Vector is array (1 .. 2) of Float; function Create_Small return Data_Small; function Create_Large return Data_Large; function Create_Small_Float_Vector return Small_Float_Vector; end Pck;
-- Copyright 2007-2015 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body Defs is function F1 (S : Struct1) return Integer is begin return s.x; -- Set breakpoint marker here. end F1; end Defs;
package discr1 is type R is (One, Two); type C_Type (Kind : R) is record case Kind is when One => Name : Integer; when Two => Designator : String (1 .. 40); end case; end record; for C_Type use record Name at 0 range 0.. 31; Designator at 0 range 0..319; Kind at 40 range 0.. 7; end record; for C_Type'Size use 44 * 8; procedure Assign (Id : String); end discr1;
pragma Warnings (Off); pragma Style_Checks (Off); ------------------------------------------------------------------------- -- GLOBE_3D - GL - based, real - time, 3D engine -- -- Copyright (c) Gautier de Montmollin/Rod Kay 2007 -- CH - 8810 Horgen -- SWITZERLAND -- Permission granted to use this software, without any warranty, -- for any purpose, provided this copyright note remains attached -- and unmodified if sources are distributed further. ------------------------------------------------------------------------- with GL.Textures, GL.Skins; package GLOBE_3D.tri_Mesh is -- triangle mesh Object base class -- type tri_Mesh is abstract new Visual with record null; end record; type p_tri_Mesh is access all tri_Mesh'Class; type p_tri_Mesh_array is array (Positive range <>) of p_tri_Mesh; type p_tri_Mesh_grid is array (Positive range <>, Positive range <>) of p_tri_Mesh; procedure set_Vertices (Self : in out tri_Mesh; To : access GL.geometry.GL_vertex_Array) is abstract; procedure set_Indices (Self : in out tri_Mesh; To : access GL.geometry.vertex_Id_array) is abstract; procedure Skin_is (o : in out tri_Mesh; Now : in GL.skins.p_Skin) is abstract; private procedure dummy; end GLOBE_3D.tri_Mesh;
with Ada.Text_IO; use Ada.Text_IO; with Ada.Integer_Text_IO; use Ada.Integer_Text_IO; with Ada.Float_Text_IO; use Ada.Float_Text_IO; with Ada.Unchecked_Deallocation; package body Vecteurs_Creux is procedure Free is new Ada.Unchecked_Deallocation (T_Cellule, T_Vecteur_Creux); procedure Initialiser (V : out T_Vecteur_Creux) is begin V := Null; end Initialiser; procedure Detruire (V: in out T_Vecteur_Creux) is begin if (V /= Null) then Detruire (V.all.Suivant); free (V); else Null; end if; end Detruire; function Est_Nul (V : in T_Vecteur_Creux) return Boolean is begin return V = Null; end Est_Nul; function Composante_Recursif (V : in T_Vecteur_Creux ; Indice : in Integer) return Float is begin if (Est_Nul (V)) then return 0.0; end if; if (V.all.Indice > Indice) then return 0.0; end if; if (V.all.Indice = Indice) then return V.all.Valeur; else return Composante_Recursif (V.all.Suivant , Indice); end if; end Composante_Recursif; function Composante_Iteratif (V : in T_Vecteur_Creux ; Indice : in Integer) return Float is Temp : T_Vecteur_Creux; begin Temp := V; while (Temp /= Null and then Temp.all.Indice <= Indice) loop if (Temp.all.Indice = Indice) then return Temp.all.Valeur; end if; Temp := Temp.all.Suivant; end loop; return 0.0; end Composante_Iteratif; procedure Supprimer (V : in out T_Vecteur_Creux; Indice : in Integer) is begin if (V.all.Indice = Indice) then V := V.all.Suivant; else Supprimer (V.all.Suivant, Indice); end if; end Supprimer; procedure Modifier (V : in out T_Vecteur_Creux ; Indice : in Integer ; Valeur : in Float ) is Nouvelle_Cellule, Temp : T_Vecteur_Creux; begin Nouvelle_Cellule := New T_Cellule; Nouvelle_Cellule.all.Indice := Indice; Nouvelle_Cellule.all.Valeur := Valeur; if (V = Null or else V.all.Indice > Indice) then if (Valeur /= 0.0) then Nouvelle_Cellule.all.Suivant := v; V := Nouvelle_Cellule; end if; else Temp := V; while (Temp.all.Suivant /= Null and then Temp.all.Suivant.all.Indice <= Indice) loop Temp := Temp.all.Suivant; end loop; if (Temp.all.Indice = Indice) then if (Valeur /= 0.0) then temp.all.Valeur := Valeur; else Supprimer(V, Indice); end if; else if (Valeur /= 0.0) then Nouvelle_Cellule.all.Suivant := Temp.all.Suivant; Temp.all.Suivant := Nouvelle_Cellule; end if; end if; end if; end Modifier; function Sont_Egaux_Recursif (V1, V2 : in T_Vecteur_Creux) return Boolean is begin if (Est_Nul (V1) and Est_Nul (V2)) then return True; end if; if (not (Est_Nul (V1)) and not (Est_Nul (V2))) then return (V1.all.Indice = V2.all.Indice and V1.all.Valeur = V2.all.Valeur) and Sont_Egaux_Recursif (V1.all.Suivant, V2.all.Suivant); end if; return false; end Sont_Egaux_Recursif; function Sont_Egaux_Iteratif (V1, V2 : in T_Vecteur_Creux) return Boolean is Temp1, Temp2 : T_Vecteur_Creux; begin if (Est_Nul (V1) /= Est_Nul (V2)) then return False; else Temp1 := V1; Temp2 := V2; while (Temp1 /= Null and Temp2 /= Null) loop if (Temp1.all.Indice /= Temp2.all.Indice or Temp1.all.Valeur /= Temp2.all.Valeur) then return False; end if; Temp1 := Temp1.all.Suivant; Temp2 := Temp2.all.Suivant; end loop; if (Est_Nul (Temp1) /= Est_Nul (Temp2)) then return False; else return True; end if; end if; end Sont_Egaux_Iteratif; procedure Additionner (V1 : in out T_Vecteur_Creux; V2 : in out T_Vecteur_Creux) is Temp1, Temp2 : T_Vecteur_Creux; begin Temp1 := V1; Temp2 := V2; if Temp1 = Null then Temp1 := Temp2; elsif Temp2 = Null then Temp2 := Temp1; elsif Nombre_Composantes_Non_Nulles (V1) >= Nombre_Composantes_Non_Nulles (V2) then while (Temp1 /= Null) loop Modifier (V1, Temp1.all.Indice, Temp1.all.Valeur + Composante_Recursif (V2, Temp1.all.Indice)); Temp1 := Temp1.all.Suivant; end loop; while (Temp2 /= Null) or else (Composante_Recursif (V1, Temp2.all.Indice) = 0.0) loop Modifier (V1, Temp2.all.Indice, Temp2.all.Valeur); Temp2 := Temp2.all.Suivant; end loop; else while (Temp2 /= Null) loop afficher (Temp1); Afficher (Temp2); Modifier (V2, Temp1.all.Indice, Temp2.all.Valeur + Composante_Recursif (V1, Temp2.all.Indice)); Temp2 := Temp2.all.Suivant; end loop; afficher (Temp1); Afficher (Temp2); while (Temp1 /= Null) or else (Composante_Recursif (V1, Temp2.all.Indice) = 0.0) loop Modifier (V2, Temp1.all.Indice, Temp1.all.Valeur); Temp1 := Temp1.all.Suivant; end loop; end if; V1 := Temp1; V2 := Temp2; end Additionner; function Norme2 (V : in T_Vecteur_Creux) return Float is begin return 0.0; -- TODO : à changer end Norme2; Function Produit_Scalaire (V1, V2: in T_Vecteur_Creux) return Float is begin return 0.0; -- TODO : à changer end Produit_Scalaire; procedure Afficher (V : T_Vecteur_Creux) is begin if V = Null then Put_Line ("--E"); else Put ("-->[ "); Put (V.all.Indice, 0); Put (" | "); Put (V.all.Valeur, Fore => 0, Aft => 1, Exp => 0); Put (" ]"); Afficher (V.all.Suivant); end if; end Afficher; function Nombre_Composantes_Non_Nulles (V: in T_Vecteur_Creux) return Integer is begin if V = Null then return 0; else return 1 + Nombre_Composantes_Non_Nulles (V.all.Suivant); end if; end Nombre_Composantes_Non_Nulles; end Vecteurs_Creux;
------------------------------------------------------------------------------ -- -- -- 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_Classifiers; with AMF.String_Collections; with AMF.UML.Classifier_Template_Parameters; with AMF.UML.Classifiers.Collections; with AMF.UML.Collaboration_Uses.Collections; with AMF.UML.Communication_Paths; with AMF.UML.Constraints.Collections; with AMF.UML.Dependencies.Collections; with AMF.UML.Element_Imports.Collections; with AMF.UML.Elements.Collections; with AMF.UML.Features.Collections; with AMF.UML.Generalization_Sets.Collections; with AMF.UML.Generalizations.Collections; with AMF.UML.Named_Elements.Collections; with AMF.UML.Namespaces; with AMF.UML.Package_Imports.Collections; with AMF.UML.Packageable_Elements.Collections; with AMF.UML.Packages.Collections; with AMF.UML.Parameterable_Elements.Collections; with AMF.UML.Properties.Collections; with AMF.UML.Redefinable_Elements.Collections; with AMF.UML.Redefinable_Template_Signatures; with AMF.UML.String_Expressions; with AMF.UML.Substitutions.Collections; with AMF.UML.Template_Bindings.Collections; with AMF.UML.Template_Parameters; with AMF.UML.Template_Signatures; with AMF.UML.Types.Collections; with AMF.UML.Use_Cases.Collections; with AMF.Visitors; package AMF.Internals.UML_Communication_Paths is type UML_Communication_Path_Proxy is limited new AMF.Internals.UML_Classifiers.UML_Classifier_Proxy and AMF.UML.Communication_Paths.UML_Communication_Path with null record; overriding function Get_End_Type (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Types.Collections.Ordered_Set_Of_UML_Type; -- Getter of Association::endType. -- -- References the classifiers that are used as types of the ends of the -- association. overriding function Get_Is_Derived (Self : not null access constant UML_Communication_Path_Proxy) return Boolean; -- Getter of Association::isDerived. -- -- Specifies whether the association is derived from other model elements -- such as other associations or constraints. overriding procedure Set_Is_Derived (Self : not null access UML_Communication_Path_Proxy; To : Boolean); -- Setter of Association::isDerived. -- -- Specifies whether the association is derived from other model elements -- such as other associations or constraints. overriding function Get_Member_End (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Properties.Collections.Ordered_Set_Of_UML_Property; -- Getter of Association::memberEnd. -- -- Each end represents participation of instances of the classifier -- connected to the end in links of the association. overriding function Get_Navigable_Owned_End (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Properties.Collections.Set_Of_UML_Property; -- Getter of Association::navigableOwnedEnd. -- -- The navigable ends that are owned by the association itself. overriding function Get_Owned_End (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Properties.Collections.Ordered_Set_Of_UML_Property; -- Getter of Association::ownedEnd. -- -- The ends that are owned by the association itself. overriding function Get_Related_Element (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element; -- Getter of Relationship::relatedElement. -- -- Specifies the elements related by the Relationship. overriding function Get_Attribute (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Properties.Collections.Set_Of_UML_Property; -- Getter of Classifier::attribute. -- -- Refers to all of the Properties that are direct (i.e. not inherited or -- imported) attributes of the classifier. overriding function Get_Collaboration_Use (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Collaboration_Uses.Collections.Set_Of_UML_Collaboration_Use; -- Getter of Classifier::collaborationUse. -- -- References the collaboration uses owned by the classifier. overriding function Get_Feature (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Features.Collections.Set_Of_UML_Feature; -- Getter of Classifier::feature. -- -- Specifies each feature defined in the classifier. -- Note that there may be members of the Classifier that are of the type -- Feature but are not included in this association, e.g. inherited -- features. overriding function Get_General (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier; -- Getter of Classifier::general. -- -- Specifies the general Classifiers for this Classifier. -- References the general classifier in the Generalization relationship. overriding function Get_Generalization (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Generalizations.Collections.Set_Of_UML_Generalization; -- Getter of Classifier::generalization. -- -- Specifies the Generalization relationships for this Classifier. These -- Generalizations navigaten to more general classifiers in the -- generalization hierarchy. overriding function Get_Inherited_Member (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element; -- Getter of Classifier::inheritedMember. -- -- Specifies all elements inherited by this classifier from the general -- classifiers. overriding function Get_Is_Abstract (Self : not null access constant UML_Communication_Path_Proxy) return Boolean; -- Getter of Classifier::isAbstract. -- -- If true, the Classifier does not provide a complete declaration and can -- typically not be instantiated. An abstract classifier is intended to be -- used by other classifiers e.g. as the target of general -- metarelationships or generalization relationships. overriding function Get_Is_Final_Specialization (Self : not null access constant UML_Communication_Path_Proxy) return Boolean; -- Getter of Classifier::isFinalSpecialization. -- -- If true, the Classifier cannot be specialized by generalization. Note -- that this property is preserved through package merge operations; that -- is, the capability to specialize a Classifier (i.e., -- isFinalSpecialization =false) must be preserved in the resulting -- Classifier of a package merge operation where a Classifier with -- isFinalSpecialization =false is merged with a matching Classifier with -- isFinalSpecialization =true: the resulting Classifier will have -- isFinalSpecialization =false. overriding procedure Set_Is_Final_Specialization (Self : not null access UML_Communication_Path_Proxy; To : Boolean); -- Setter of Classifier::isFinalSpecialization. -- -- If true, the Classifier cannot be specialized by generalization. Note -- that this property is preserved through package merge operations; that -- is, the capability to specialize a Classifier (i.e., -- isFinalSpecialization =false) must be preserved in the resulting -- Classifier of a package merge operation where a Classifier with -- isFinalSpecialization =false is merged with a matching Classifier with -- isFinalSpecialization =true: the resulting Classifier will have -- isFinalSpecialization =false. overriding function Get_Owned_Template_Signature (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access; -- Getter of Classifier::ownedTemplateSignature. -- -- The optional template signature specifying the formal template -- parameters. overriding procedure Set_Owned_Template_Signature (Self : not null access UML_Communication_Path_Proxy; To : AMF.UML.Redefinable_Template_Signatures.UML_Redefinable_Template_Signature_Access); -- Setter of Classifier::ownedTemplateSignature. -- -- The optional template signature specifying the formal template -- parameters. overriding function Get_Owned_Use_Case (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case; -- Getter of Classifier::ownedUseCase. -- -- References the use cases owned by this classifier. overriding function Get_Powertype_Extent (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Generalization_Sets.Collections.Set_Of_UML_Generalization_Set; -- Getter of Classifier::powertypeExtent. -- -- Designates the GeneralizationSet of which the associated Classifier is -- a power type. overriding function Get_Redefined_Classifier (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier; -- Getter of Classifier::redefinedClassifier. -- -- References the Classifiers that are redefined by this Classifier. overriding function Get_Representation (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access; -- Getter of Classifier::representation. -- -- References a collaboration use which indicates the collaboration that -- represents this classifier. overriding procedure Set_Representation (Self : not null access UML_Communication_Path_Proxy; To : AMF.UML.Collaboration_Uses.UML_Collaboration_Use_Access); -- Setter of Classifier::representation. -- -- References a collaboration use which indicates the collaboration that -- represents this classifier. overriding function Get_Substitution (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Substitutions.Collections.Set_Of_UML_Substitution; -- Getter of Classifier::substitution. -- -- References the substitutions that are owned by this Classifier. overriding function Get_Template_Parameter (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access; -- Getter of Classifier::templateParameter. -- -- The template parameter that exposes this element as a formal parameter. overriding procedure Set_Template_Parameter (Self : not null access UML_Communication_Path_Proxy; To : AMF.UML.Classifier_Template_Parameters.UML_Classifier_Template_Parameter_Access); -- Setter of Classifier::templateParameter. -- -- The template parameter that exposes this element as a formal parameter. overriding function Get_Use_Case (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Use_Cases.Collections.Set_Of_UML_Use_Case; -- Getter of Classifier::useCase. -- -- The set of use cases for which this Classifier is the subject. overriding function Get_Element_Import (Self : not null access constant UML_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_Proxy) return AMF.Optional_String; -- Getter of NamedElement::qualifiedName. -- -- A name which allows the NamedElement to be identified within a -- hierarchy of nested Namespaces. It is constructed from the names of the -- containing namespaces starting at the root of the hierarchy and ending -- with the name of the NamedElement itself. overriding function Get_Package (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Packages.UML_Package_Access; -- Getter of Type::package. -- -- Specifies the owning package of this classifier, if any. overriding procedure Set_Package (Self : not null access UML_Communication_Path_Proxy; To : AMF.UML.Packages.UML_Package_Access); -- Setter of Type::package. -- -- Specifies the owning package of this classifier, if any. overriding function Get_Owning_Template_Parameter (Self : not null access constant UML_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_Proxy) return AMF.UML.Template_Bindings.Collections.Set_Of_UML_Template_Binding; -- Getter of TemplateableElement::templateBinding. -- -- The optional bindings from this element to templates. overriding function Get_Is_Leaf (Self : not null access constant UML_Communication_Path_Proxy) return Boolean; -- Getter of RedefinableElement::isLeaf. -- -- Indicates whether it is possible to further redefine a -- RedefinableElement. If the value is true, then it is not possible to -- further redefine the RedefinableElement. Note that this property is -- preserved through package merge operations; that is, the capability to -- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in -- the resulting RedefinableElement of a package merge operation where a -- RedefinableElement with isLeaf=false is merged with a matching -- RedefinableElement with isLeaf=true: the resulting RedefinableElement -- will have isLeaf=false. Default value is false. overriding procedure Set_Is_Leaf (Self : not null access UML_Communication_Path_Proxy; To : Boolean); -- Setter of RedefinableElement::isLeaf. -- -- Indicates whether it is possible to further redefine a -- RedefinableElement. If the value is true, then it is not possible to -- further redefine the RedefinableElement. Note that this property is -- preserved through package merge operations; that is, the capability to -- redefine a RedefinableElement (i.e., isLeaf=false) must be preserved in -- the resulting RedefinableElement of a package merge operation where a -- RedefinableElement with isLeaf=false is merged with a matching -- RedefinableElement with isLeaf=true: the resulting RedefinableElement -- will have isLeaf=false. Default value is false. overriding function Get_Redefined_Element (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Redefinable_Elements.Collections.Set_Of_UML_Redefinable_Element; -- Getter of RedefinableElement::redefinedElement. -- -- The redefinable element that is being redefined by this element. overriding function Get_Redefinition_Context (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier; -- Getter of RedefinableElement::redefinitionContext. -- -- References the contexts that this element may be redefined from. overriding function End_Type (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Types.Collections.Ordered_Set_Of_UML_Type; -- Operation Association::endType. -- -- endType is derived from the types of the member ends. overriding function All_Features (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Features.Collections.Set_Of_UML_Feature; -- Operation Classifier::allFeatures. -- -- The query allFeatures() gives all of the features in the namespace of -- the classifier. In general, through mechanisms such as inheritance, -- this will be a larger set than feature. overriding function Conforms_To (Self : not null access constant UML_Communication_Path_Proxy; Other : AMF.UML.Classifiers.UML_Classifier_Access) return Boolean; -- Operation Classifier::conformsTo. -- -- The query conformsTo() gives true for a classifier that defines a type -- that conforms to another. This is used, for example, in the -- specification of signature conformance for operations. overriding function General (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Classifiers.Collections.Set_Of_UML_Classifier; -- Operation Classifier::general. -- -- The general classifiers are the classifiers referenced by the -- generalization relationships. overriding function Has_Visibility_Of (Self : not null access constant UML_Communication_Path_Proxy; N : AMF.UML.Named_Elements.UML_Named_Element_Access) return Boolean; -- Operation Classifier::hasVisibilityOf. -- -- The query hasVisibilityOf() determines whether a named element is -- visible in the classifier. By default all are visible. It is only -- called when the argument is something owned by a parent. overriding function Inherit (Self : not null access constant UML_Communication_Path_Proxy; Inhs : AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element; -- Operation Classifier::inherit. -- -- The query inherit() defines how to inherit a set of elements. Here the -- operation is defined to inherit them all. It is intended to be -- redefined in circumstances where inheritance is affected by -- redefinition. -- The inherit operation is overridden to exclude redefined properties. overriding function Inheritable_Members (Self : not null access constant UML_Communication_Path_Proxy; C : AMF.UML.Classifiers.UML_Classifier_Access) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element; -- Operation Classifier::inheritableMembers. -- -- The query inheritableMembers() gives all of the members of a classifier -- that may be inherited in one of its descendants, subject to whatever -- visibility restrictions apply. overriding function Inherited_Member (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Named_Elements.Collections.Set_Of_UML_Named_Element; -- Operation Classifier::inheritedMember. -- -- The inheritedMember association is derived by inheriting the -- inheritable members of the parents. -- The inheritedMember association is derived by inheriting the -- inheritable members of the parents. overriding function Is_Template (Self : not null access constant UML_Communication_Path_Proxy) return Boolean; -- Operation Classifier::isTemplate. -- -- The query isTemplate() returns whether this templateable element is -- actually a template. overriding function May_Specialize_Type (Self : not null access constant UML_Communication_Path_Proxy; C : AMF.UML.Classifiers.UML_Classifier_Access) return Boolean; -- Operation Classifier::maySpecializeType. -- -- The query maySpecializeType() determines whether this classifier may -- have a generalization relationship to classifiers of the specified -- type. By default a classifier may specialize classifiers of the same or -- a more general type. It is intended to be redefined by classifiers that -- have different specialization constraints. overriding function Exclude_Collisions (Self : not null access constant UML_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Path_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Operation NamedElement::namespace. -- -- Missing derivation for NamedElement::/namespace : Namespace overriding function Conforms_To (Self : not null access constant UML_Communication_Path_Proxy; Other : AMF.UML.Types.UML_Type_Access) return Boolean; -- Operation Type::conformsTo. -- -- The query conformsTo() gives true for a type that conforms to another. -- By default, two types do not conform to each other. This query is -- intended to be redefined for specific conformance situations. overriding function Is_Compatible_With (Self : not null access constant UML_Communication_Path_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_Communication_Path_Proxy) return Boolean; -- Operation ParameterableElement::isTemplateParameter. -- -- The query isTemplateParameter() determines if this parameterable -- element is exposed as a formal template parameter. overriding function Parameterable_Elements (Self : not null access constant UML_Communication_Path_Proxy) return AMF.UML.Parameterable_Elements.Collections.Set_Of_UML_Parameterable_Element; -- Operation TemplateableElement::parameterableElements. -- -- The query parameterableElements() returns the set of elements that may -- be used as the parametered elements for a template parameter of this -- templateable element. By default, this set includes all the owned -- elements. Subclasses may override this operation if they choose to -- restrict the set of parameterable elements. overriding function Is_Consistent_With (Self : not null access constant UML_Communication_Path_Proxy; Redefinee : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean; -- Operation RedefinableElement::isConsistentWith. -- -- The query isConsistentWith() specifies, for any two RedefinableElements -- in a context in which redefinition is possible, whether redefinition -- would be logically consistent. By default, this is false; this -- operation must be overridden for subclasses of RedefinableElement to -- define the consistency conditions. overriding function Is_Redefinition_Context_Valid (Self : not null access constant UML_Communication_Path_Proxy; Redefined : AMF.UML.Redefinable_Elements.UML_Redefinable_Element_Access) return Boolean; -- Operation RedefinableElement::isRedefinitionContextValid. -- -- The query isRedefinitionContextValid() specifies whether the -- redefinition contexts of this RedefinableElement are properly related -- to the redefinition contexts of the specified RedefinableElement to -- allow this element to redefine the other. By default at least one of -- the redefinition contexts of this element must be a specialization of -- at least one of the redefinition contexts of the specified element. overriding procedure Enter_Element (Self : not null access constant UML_Communication_Path_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_Communication_Path_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_Communication_Path_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_Communication_Paths;
-- C32112B.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT CONSTRAINT_ERROR IS RAISED FOR THE DECLARATION OF A NULL -- ARRAY OBJECT IF THE INITIAL VALUE IS NOT A NULL ARRAY. -- RJW 7/20/86 -- GMT 7/01/87 ADDED CODE TO PREVENT DEAD VARIABLE OPTIMIZATION. -- CHANGED THE RANGE VALUES OF A FEW DIMENSIONS. WITH REPORT; USE REPORT; PROCEDURE C32112B IS TYPE ARR1 IS ARRAY (NATURAL RANGE <>) OF INTEGER; SUBTYPE NARR1 IS ARR1 (IDENT_INT (2) .. IDENT_INT (1)); TYPE ARR2 IS ARRAY (NATURAL RANGE <>, NATURAL RANGE <>) OF INTEGER; SUBTYPE NARR2 IS ARR2 (IDENT_INT (1) .. IDENT_INT (2), IDENT_INT (1) .. IDENT_INT (0)); BEGIN TEST ("C32112B", "CHECK THAT CONSTRAINT_ERROR IS RAISED FOR " & "THE DECLARATION OF A NULL ARRAY OBJECT IF " & "THE INITIAL VALUE IS NOT A NULL ARRAY"); BEGIN DECLARE A : ARR1 (IDENT_INT(1) .. IDENT_INT(2)); N1A : NARR1 := (A'RANGE => 0); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N1A'"); A(1) := IDENT_INT(N1A(1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N1A'"); END; BEGIN DECLARE A : ARR1 (IDENT_INT (1) .. IDENT_INT (2)); N1B : CONSTANT NARR1 := (A'RANGE => 0); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N1B'"); A(1) := IDENT_INT(N1B(1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N1B'"); END; BEGIN DECLARE A : ARR1 (IDENT_INT (1) .. IDENT_INT (1)); N1C : CONSTANT NARR1 := (A'RANGE => 0); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N1C'"); A(1) := IDENT_INT(N1C(1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N1C'"); END; BEGIN DECLARE A : ARR1 (IDENT_INT (1) .. IDENT_INT (1)); N1D : NARR1 := (A'RANGE => 0); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N1D'"); A(1) := IDENT_INT(N1D(1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N1D'"); END; BEGIN DECLARE A : ARR1 (IDENT_INT (0) .. IDENT_INT (1)); N1E : ARR1 (IDENT_INT (1) .. IDENT_INT (0)) := (A'RANGE => 0); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N1E'"); A(1) := IDENT_INT(N1E(1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N1E'"); END; BEGIN DECLARE A : ARR1 (IDENT_INT (0) .. IDENT_INT (1)); N1F : CONSTANT ARR1 (IDENT_INT (1) .. IDENT_INT (0)) := (A'RANGE => 0); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N1F'"); A(1) := IDENT_INT(N1F(1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N1F'"); END; BEGIN DECLARE A : ARR2 (IDENT_INT (1) .. IDENT_INT (2), IDENT_INT (0) .. IDENT_INT (1)); N2A : CONSTANT NARR2 := (A'RANGE => (A'RANGE (2) =>0)); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N2'"); A(1,1) := IDENT_INT(N2A(1,1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N2A'"); END; BEGIN DECLARE A : ARR2 (IDENT_INT (1) .. IDENT_INT (2), IDENT_INT (0) .. IDENT_INT (1)); N2B : NARR2 := (A'RANGE => (A'RANGE (2) =>0)); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N2B'"); A(1,1) := IDENT_INT(N2B(1,1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N2B'"); END; BEGIN DECLARE A : ARR2 (IDENT_INT (1) .. IDENT_INT (3), IDENT_INT (1) .. IDENT_INT (1)); N2C : CONSTANT NARR2 := (A'RANGE => (A'RANGE (2) =>0)); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N2C'"); A(1,1) := IDENT_INT(N2C(1,1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N2C'"); END; BEGIN DECLARE A : ARR2 (IDENT_INT (1) .. IDENT_INT (3), IDENT_INT (1) .. IDENT_INT (1)); N2D : NARR2 := (A'RANGE => (A'RANGE (2) =>0)); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N2D'"); A(1,1) := IDENT_INT(N2D(1,1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N2D'"); END; BEGIN DECLARE A : ARR2 (IDENT_INT (1) .. IDENT_INT (1), IDENT_INT (1) .. IDENT_INT (1)); N2E : CONSTANT ARR2 (IDENT_INT (2) .. IDENT_INT (1), IDENT_INT (1) .. IDENT_INT (1)) := (A'RANGE => (A'RANGE (2) =>0)); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N2E'"); A(1,1) := IDENT_INT(N2E(1,1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF CONSTANT 'N2E'"); END; BEGIN DECLARE A : ARR2 (IDENT_INT (1) .. IDENT_INT (1), IDENT_INT (1) .. IDENT_INT (1)); N2F : ARR2 (IDENT_INT (2) .. IDENT_INT (1), IDENT_INT (1) .. IDENT_INT (1)) := (A'RANGE => (A'RANGE (2) =>0)); BEGIN FAILED ("NO EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N2F'"); A(1,1) := IDENT_INT(N2F(1,1)); END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR INITIALIZATION " & "OF VARIABLE 'N2F'"); END; RESULT; END C32112B;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . W W D _ W C H A R -- -- -- -- 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 routines for [Wide_]Wide_Character'[Wide_]Wide_Width package System.Wwd_WChar is pragma Pure; function Wide_Width_Wide_Character (Lo, Hi : Wide_Character) return Natural; -- Compute Wide_Width attribute for non-static type derived from -- Wide_Character. The arguments are the low and high bounds for -- the type. EM is the wide-character encoding method. function Wide_Width_Wide_Wide_Character (Lo, Hi : Wide_Wide_Character) return Natural; -- Compute Wide_Width attribute for non-static type derived from -- Wide_Wide_Character. The arguments are the low and high bounds for -- the type. EM is the wide-character encoding method. function Wide_Wide_Width_Wide_Character (Lo, Hi : Wide_Character) return Natural; -- Compute Wide_Wide_Width attribute for non-static type derived from -- Wide_Character. The arguments are the low and high bounds for -- the type. EM is the wide-character encoding method. function Wide_Wide_Width_Wide_Wide_Char (Lo, Hi : Wide_Wide_Character) return Natural; -- Compute Wide_Wide_Width attribute for non-static type derived from -- Wide_Wide_Character. The arguments are the low and high bounds for -- the type. EM is the wide-character encoding method. end System.Wwd_WChar;
----------------------------------------------------------------------- -- mat-readers -- Reader -- Copyright (C) 2014, 2015, 2019 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Log.Loggers; with MAT.Readers.Marshaller; package body MAT.Events.Probes is -- The logger Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("MAT.Events.Probes"); procedure Read_Probe (Client : in out Probe_Manager_Type; Msg : in out MAT.Readers.Message_Type); P_TIME_SEC : constant MAT.Events.Internal_Reference := 0; P_TIME_USEC : constant MAT.Events.Internal_Reference := 1; P_THREAD_ID : constant MAT.Events.Internal_Reference := 2; P_THREAD_SP : constant MAT.Events.Internal_Reference := 3; P_RUSAGE_MINFLT : constant MAT.Events.Internal_Reference := 4; P_RUSAGE_MAJFLT : constant MAT.Events.Internal_Reference := 5; P_RUSAGE_NVCSW : constant MAT.Events.Internal_Reference := 6; P_RUSAGE_NIVCSW : constant MAT.Events.Internal_Reference := 7; P_FRAME : constant MAT.Events.Internal_Reference := 8; P_FRAME_PC : constant MAT.Events.Internal_Reference := 9; TIME_SEC_NAME : aliased constant String := "time-sec"; TIME_USEC_NAME : aliased constant String := "time-usec"; THREAD_ID_NAME : aliased constant String := "thread-id"; THREAD_SP_NAME : aliased constant String := "thread-sp"; RUSAGE_MINFLT_NAME : aliased constant String := "ru-minflt"; RUSAGE_MAJFLT_NAME : aliased constant String := "ru-majflt"; RUSAGE_NVCSW_NAME : aliased constant String := "ru-nvcsw"; RUSAGE_NIVCSW_NAME : aliased constant String := "ru-nivcsw"; FRAME_NAME : aliased constant String := "frame"; FRAME_PC_NAME : aliased constant String := "frame-pc"; Probe_Attributes : aliased constant MAT.Events.Attribute_Table := (1 => (Name => TIME_SEC_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_TIME_SEC), 2 => (Name => TIME_USEC_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_TIME_USEC), 3 => (Name => THREAD_ID_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_THREAD_ID), 4 => (Name => THREAD_SP_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_THREAD_SP), 5 => (Name => FRAME_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_FRAME), 6 => (Name => FRAME_PC_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_FRAME_PC), 7 => (Name => RUSAGE_MINFLT_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_RUSAGE_MINFLT), 8 => (Name => RUSAGE_MAJFLT_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_RUSAGE_MAJFLT), 9 => (Name => RUSAGE_NVCSW_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_RUSAGE_NVCSW), 10 => (Name => RUSAGE_NIVCSW_NAME'Access, Size => 0, Kind => MAT.Events.T_SIZE_T, Ref => P_RUSAGE_NIVCSW) ); function Hash (Key : in MAT.Types.Uint16) return Ada.Containers.Hash_Type is begin return Ada.Containers.Hash_Type (Key); end Hash; -- ------------------------------ -- Update the Size and Prev_Id information in the event identified by <tt>Id</tt>. -- Update the event represented by <tt>Prev_Id</tt> so that its Next_Id refers -- to the <tt>Id</tt> event. -- ------------------------------ procedure Update_Event (Probe : in Probe_Type; Id : in MAT.Events.Event_Id_Type; Size : in MAT.Types.Target_Size; Prev_Id : in MAT.Events.Event_Id_Type) is begin Probe.Owner.Get_Target_Events.Update_Event (Id, Size, Prev_Id); end Update_Event; -- ------------------------------ -- Initialize the manager instance. -- ------------------------------ overriding procedure Initialize (Manager : in out Probe_Manager_Type) is begin Manager.Events := new MAT.Events.Targets.Target_Events; Manager.Frames := new MAT.Frames.Targets.Target_Frames; end Initialize; -- ------------------------------ -- Register the probe to handle the event identified by the given name. -- The event is mapped to the given id and the attributes table is used -- to setup the mapping from the data stream attributes. -- ------------------------------ procedure Register_Probe (Into : in out Probe_Manager_Type; Probe : in Probe_Type_Access; Name : in String; Id : in MAT.Events.Probe_Index_Type; Model : in MAT.Events.Const_Attribute_Table_Access) is Handler : Probe_Handler; begin Handler.Probe := Probe; Handler.Id := Id; Handler.Attributes := Model; Handler.Mapping := null; Into.Probes.Insert (Name, Handler); Probe.Owner := Into'Unchecked_Access; end Register_Probe; -- ------------------------------ -- Get the target events. -- ------------------------------ function Get_Target_Events (Client : in Probe_Manager_Type) return MAT.Events.Targets.Target_Events_Access is begin return Client.Events; end Get_Target_Events; -- ------------------------------ -- Get the target frames. -- ------------------------------ function Get_Target_Frames (Client : in Probe_Manager_Type) return MAT.Frames.Targets.Target_Frames_Access is begin return Client.Frames; end Get_Target_Frames; procedure Read_Probe (Client : in out Probe_Manager_Type; Msg : in out MAT.Readers.Message) is use type MAT.Types.Target_Tick_Ref; Count : Natural := 0; Time_Sec : MAT.Types.Uint32 := 0; Time_Usec : MAT.Types.Uint32 := 0; Frame : constant access MAT.Events.Frame_Info := Client.Frame; begin Client.Event.Thread := 0; Frame.Stack := 0; Frame.Cur_Depth := 0; for I in Client.Probe'Range loop declare Def : MAT.Events.Attribute renames Client.Probe (I); begin case Def.Ref is when P_TIME_SEC => Time_Sec := MAT.Readers.Marshaller.Get_Target_Uint32 (Msg, Def.Kind); when P_TIME_USEC => Time_Usec := MAT.Readers.Marshaller.Get_Target_Uint32 (Msg, Def.Kind); when P_THREAD_ID => Client.Event.Thread := MAT.Types.Target_Thread_Ref (MAT.Readers.Marshaller.Get_Target_Uint32 (Msg, Def.Kind)); when P_THREAD_SP => Frame.Stack := MAT.Readers.Marshaller.Get_Target_Addr (Msg, Def.Kind); when P_FRAME => Count := Natural (MAT.Readers.Marshaller.Get_Target_Uint32 (Msg, Def.Kind)); when P_FRAME_PC => for I in 1 .. Count loop -- reverse Count .. 1 loop if Count < Frame.Depth then Frame.Frame (Count - I + 1) := MAT.Readers.Marshaller.Get_Target_Addr (Msg, Def.Kind); end if; end loop; when others => null; end case; end; end loop; -- Convert the time in usec to make computation easier. Client.Event.Time := MAT.Types.Target_Tick_Ref (Time_Sec) * 1_000_000; Client.Event.Time := Client.Event.Time + MAT.Types.Target_Tick_Ref (Time_Usec); Frame.Cur_Depth := Count; exception when others => Log.Error ("Marshaling error, frame count {0}", Natural'Image (Count)); raise; end Read_Probe; procedure Dispatch_Message (Client : in out Probe_Manager_Type; Msg : in out MAT.Readers.Message_Type) is use type MAT.Events.Targets.Target_Events_Access; Event : constant MAT.Types.Uint16 := MAT.Readers.Marshaller.Get_Uint16 (Msg.Buffer); Pos : constant Handler_Maps.Cursor := Client.Handlers.Find (Event); begin if Log.Get_Level = Util.Log.DEBUG_LEVEL then Log.Debug ("Dispatch message {0} - size {1}", MAT.Types.Uint16'Image (Event), Natural'Image (Msg.Size)); end if; if not Handler_Maps.Has_Element (Pos) then -- Message is not handled, skip it. null; else if Client.Probe /= null then Read_Probe (Client, Msg); end if; declare Handler : constant Probe_Handler := Handler_Maps.Element (Pos); begin Client.Event.Prev_Id := 0; Client.Event.Old_Size := 0; Client.Event.Event := Event; Client.Event.Index := Handler.Id; Handler.Probe.Extract (Handler.Mapping.all'Access, Msg, Client.Event); Client.Frames.Insert (Pc => Client.Frame.Frame (1 .. Client.Frame.Cur_Depth), Result => Client.Event.Frame); Client.Events.Insert (Client.Event); Handler.Probe.Execute (Client.Event); end; end if; exception when E : others => Log.Error ("Exception while processing event " & MAT.Types.Uint16'Image (Event), E, True); end Dispatch_Message; -- ------------------------------ -- Read an event definition from the stream and configure the reader. -- ------------------------------ procedure Read_Definition (Client : in out Probe_Manager_Type; Msg : in out MAT.Readers.Message_Type) is Name : constant String := MAT.Readers.Marshaller.Get_String (Msg); Event : constant MAT.Types.Uint16 := MAT.Readers.Marshaller.Get_Uint16 (Msg.Buffer); Count : constant MAT.Types.Uint16 := MAT.Readers.Marshaller.Get_Uint16 (Msg.Buffer); Pos : constant Probe_Maps.Cursor := Client.Probes.Find (Name); Frame : Probe_Handler; procedure Add_Handler (Key : in String; Element : in out Probe_Handler); procedure Add_Handler (Key : in String; Element : in out Probe_Handler) is pragma Unreferenced (Key); begin Client.Handlers.Insert (Event, Element); end Add_Handler; begin Log.Debug ("Read event definition {0} with {1} attributes", Name, MAT.Types.Uint16'Image (Count)); if Name = "start" then Frame.Mapping := new MAT.Events.Attribute_Table (1 .. Natural (Count)); Frame.Attributes := Probe_Attributes'Access; Client.Probe := Frame.Mapping; else Frame.Mapping := null; end if; for I in 1 .. Natural (Count) loop declare Name : constant String := MAT.Readers.Marshaller.Get_String (Msg); Size : constant MAT.Types.Uint16 := MAT.Readers.Marshaller.Get_Uint16 (Msg.Buffer); procedure Read_Attribute (Key : in String; Element : in out Probe_Handler); procedure Read_Attribute (Key : in String; Element : in out Probe_Handler) is pragma Unreferenced (Key); begin if Element.Mapping = null then Element.Mapping := new MAT.Events.Attribute_Table (1 .. Natural (Count)); end if; for J in Element.Attributes'Range loop if Element.Attributes (J).Name.all = Name then Element.Mapping (I) := Element.Attributes (J); if Size = 1 then Element.Mapping (I).Kind := MAT.Events.T_UINT8; elsif Size = 2 then Element.Mapping (I).Kind := MAT.Events.T_UINT16; elsif Size = 4 then Element.Mapping (I).Kind := MAT.Events.T_UINT32; elsif Size = 8 then Element.Mapping (I).Kind := MAT.Events.T_UINT64; else Element.Mapping (I).Kind := MAT.Events.T_UINT32; end if; end if; end loop; end Read_Attribute; begin if Probe_Maps.Has_Element (Pos) then Client.Probes.Update_Element (Pos, Read_Attribute'Access); end if; if Frame.Mapping /= null then Read_Attribute ("start", Frame); end if; end; end loop; if Probe_Maps.Has_Element (Pos) then Client.Probes.Update_Element (Pos, Add_Handler'Access); end if; end Read_Definition; -- ------------------------------ -- Read a list of event definitions from the stream and configure the reader. -- ------------------------------ procedure Read_Event_Definitions (Client : in out Probe_Manager_Type; Msg : in out MAT.Readers.Message) is Count : MAT.Types.Uint16; begin if Client.Frame = null then Client.Frame := new MAT.Events.Frame_Info (512); end if; Client.Version := MAT.Readers.Marshaller.Get_Uint16 (Msg.Buffer); Count := MAT.Readers.Marshaller.Get_Uint16 (Msg.Buffer); Log.Info ("Read event stream version {0} with {1} definitions", MAT.Types.Uint16'Image (Client.Version), MAT.Types.Uint16'Image (Count)); for I in 1 .. Count loop Read_Definition (Client, Msg); end loop; -- Look at the probe definition to gather the target address size. Client.Addr_Size := MAT.Events.T_UINT32; for I in Client.Probe'Range loop declare Def : MAT.Events.Attribute renames Client.Probe (I); begin if Def.Ref = P_THREAD_SP or Def.Ref = P_FRAME_PC then Client.Addr_Size := Def.Kind; exit; end if; end; end loop; exception when E : MAT.Readers.Marshaller.Buffer_Underflow_Error => Log.Error ("Not enough data in the message", E, True); end Read_Event_Definitions; -- ------------------------------ -- Get the size of a target address (4 or 8 bytes). -- ------------------------------ function Get_Address_Size (Client : in Probe_Manager_Type) return MAT.Events.Attribute_Type is begin return Client.Addr_Size; end Get_Address_Size; end MAT.Events.Probes;
with Types; use Types; package Partial_Product_Impl_2 with SPARK_Mode, Ghost is function Partial_Product_Rec (X, Y : Integer_255; J : Product_Index_Type; K : Index_Type) return Long_Long_Integer is (if K = Extended_Index_Type'Max(J - 9, 0) then (if J mod 2 = 0 and then K mod 2 = 1 then 2 else 1) * X (K) * Y (J - K) else Partial_Product_Rec (X, Y, J, K - 1) + (if J mod 2 = 0 and then K mod 2 = 1 then 2 else 1) * X (K) * Y (J - K)) with Pre => J - K in Index_Type'Range and then All_In_Range (X, Y, Min_Multiply, Max_Multiply), Post => Partial_Product_Rec'Result in (-2) * Long_Long_Integer (K + 1) * (2**27 - 1)**2 .. 2 * Long_Long_Integer (K + 1) * (2**27 - 1)**2; pragma Annotate (GNATprove, Terminating, Partial_Product_Rec); function Partial_Product (X, Y : Integer_255; J : Product_Index_Type; K : Index_Type) return Long_Long_Integer is (Partial_Product_Rec (X, Y, J, K)) with Pre => J - K in Index_Type'Range and then All_In_Range (X, Y, Min_Multiply, Max_Multiply), Post => Partial_Product'Result in (-2) * Long_Long_Integer (K + 1) * (2**27 - 1)**2 .. 2 * Long_Long_Integer (K + 1) * (2**27 - 1)**2; procedure Partial_Product_Def (X, Y : Integer_255; J : Product_Index_Type; K : Index_Type) with Pre => J - K in Index_Type'Range and then All_In_Range (X, Y, Min_Multiply, Max_Multiply), Post => (if K = Extended_Index_Type'Max(J - 9, 0) then Partial_Product_Rec (X, Y, J, K) = (if J mod 2 = 0 and then K mod 2 = 1 then 2 else 1) * X (K) * Y (J - K) else Partial_Product_Rec (X, Y, J, K) = Partial_Product_Rec (X, Y, J, K - 1) + (if J mod 2 = 0 and then K mod 2 = 1 then 2 else 1) * X (K) * Y (J - K)); procedure Partial_Product_Def (X, Y : Integer_255; J : Product_Index_Type; K : Index_Type) is null; function Partial_Product (X, Y : Integer_255; J : Product_Index_Type) return Long_Long_Integer is (Partial_Product_Rec (X, Y, J, Extended_Index_Type'Min (9, J))) with Pre => All_In_Range (X, Y, Min_Multiply, Max_Multiply); end Partial_Product_Impl_2;
-- -- 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.I2C; private package HW.GFX.GMA.I2C is procedure I2C_Read (Port : in PCH_Port; Address : in HW.GFX.I2C.Transfer_Address; Length : in out HW.GFX.I2C.Transfer_Length; Data : out HW.GFX.I2C.Transfer_Data; Success : out Boolean); end HW.GFX.GMA.I2C;
pragma License (Unrestricted); -- Apple Public Source License Version 2.0 -- translated unit from http://www.opensource.apple.com/ -- source/xnu/xnu-1504.15.3/bsd/vfs/vfs_utfconvdata.h (a part of darwin) -- -- Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved. -- -- @APPLE_OSREFERENCE_LICENSE_HEADER_START@ -- -- This file contains Original Code and/or Modifications of Original Code -- as defined in and that are subject to the Apple Public Source License -- Version 2.0 (the 'License'). You may not use this file except in -- compliance with the License. The rights granted to you under the License -- may not be used to create, or enable the creation or redistribution of, -- unlawful or unlicensed copies of an Apple operating system, or to -- circumvent, violate, or enable the circumvention or violation of, any -- terms of an Apple operating system software license agreement. -- -- Please obtain a copy of the License at -- http://www.opensource.apple.com/apsl/ and read it before using this file. -- -- The Original Code and all software distributed under the License are -- distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER -- EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, -- INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. -- Please see the License for the specific language governing rights and -- limitations under the License. -- -- @APPLE_OSREFERENCE_LICENSE_HEADER_END@ -- -- Ada version: 2013 yt with C.stdint; package C.vfs_utfconvdata is pragma Preelaborate; subtype u_int8_t is C.stdint.uint8_t; subtype u_int16_t is C.stdint.uint16_t; subtype u_int32_t is C.stdint.uint32_t; type u_int8_t_array is array (C.size_t range <>) of aliased u_int8_t; pragma Suppress_Initialization (u_int8_t_array); type u_int16_t_array is array (C.size_t range <>) of aliased u_int16_t; pragma Suppress_Initialization (u_int16_t_array); type u_int32_t_array is array (C.size_t range <>) of aliased u_int32_t; pragma Suppress_Initialization (u_int32_t_array); CFUniCharDecompositionTable : constant u_int16_t_array (0 .. 1939) := ( 16#00C0#, 16#2000#, 16#00C1#, 16#2002#, 16#00C2#, 16#2004#, 16#00C3#, 16#2006#, 16#00C4#, 16#2008#, 16#00C5#, 16#200A#, 16#00C7#, 16#200C#, 16#00C8#, 16#200E#, 16#00C9#, 16#2010#, 16#00CA#, 16#2012#, 16#00CB#, 16#2014#, 16#00CC#, 16#2016#, 16#00CD#, 16#2018#, 16#00CE#, 16#201A#, 16#00CF#, 16#201C#, 16#00D1#, 16#201E#, 16#00D2#, 16#2020#, 16#00D3#, 16#2022#, 16#00D4#, 16#2024#, 16#00D5#, 16#2026#, 16#00D6#, 16#2028#, 16#00D9#, 16#202A#, 16#00DA#, 16#202C#, 16#00DB#, 16#202E#, 16#00DC#, 16#2030#, 16#00DD#, 16#2032#, 16#00E0#, 16#2034#, 16#00E1#, 16#2036#, 16#00E2#, 16#2038#, 16#00E3#, 16#203A#, 16#00E4#, 16#203C#, 16#00E5#, 16#203E#, 16#00E7#, 16#2040#, 16#00E8#, 16#2042#, 16#00E9#, 16#2044#, 16#00EA#, 16#2046#, 16#00EB#, 16#2048#, 16#00EC#, 16#204A#, 16#00ED#, 16#204C#, 16#00EE#, 16#204E#, 16#00EF#, 16#2050#, 16#00F1#, 16#2052#, 16#00F2#, 16#2054#, 16#00F3#, 16#2056#, 16#00F4#, 16#2058#, 16#00F5#, 16#205A#, 16#00F6#, 16#205C#, 16#00F9#, 16#205E#, 16#00FA#, 16#2060#, 16#00FB#, 16#2062#, 16#00FC#, 16#2064#, 16#00FD#, 16#2066#, 16#00FF#, 16#2068#, 16#0100#, 16#206A#, 16#0101#, 16#206C#, 16#0102#, 16#206E#, 16#0103#, 16#2070#, 16#0104#, 16#2072#, 16#0105#, 16#2074#, 16#0106#, 16#2076#, 16#0107#, 16#2078#, 16#0108#, 16#207A#, 16#0109#, 16#207C#, 16#010A#, 16#207E#, 16#010B#, 16#2080#, 16#010C#, 16#2082#, 16#010D#, 16#2084#, 16#010E#, 16#2086#, 16#010F#, 16#2088#, 16#0112#, 16#208A#, 16#0113#, 16#208C#, 16#0114#, 16#208E#, 16#0115#, 16#2090#, 16#0116#, 16#2092#, 16#0117#, 16#2094#, 16#0118#, 16#2096#, 16#0119#, 16#2098#, 16#011A#, 16#209A#, 16#011B#, 16#209C#, 16#011C#, 16#209E#, 16#011D#, 16#20A0#, 16#011E#, 16#20A2#, 16#011F#, 16#20A4#, 16#0120#, 16#20A6#, 16#0121#, 16#20A8#, 16#0122#, 16#20AA#, 16#0123#, 16#20AC#, 16#0124#, 16#20AE#, 16#0125#, 16#20B0#, 16#0128#, 16#20B2#, 16#0129#, 16#20B4#, 16#012A#, 16#20B6#, 16#012B#, 16#20B8#, 16#012C#, 16#20BA#, 16#012D#, 16#20BC#, 16#012E#, 16#20BE#, 16#012F#, 16#20C0#, 16#0130#, 16#20C2#, 16#0134#, 16#20C4#, 16#0135#, 16#20C6#, 16#0136#, 16#20C8#, 16#0137#, 16#20CA#, 16#0139#, 16#20CC#, 16#013A#, 16#20CE#, 16#013B#, 16#20D0#, 16#013C#, 16#20D2#, 16#013D#, 16#20D4#, 16#013E#, 16#20D6#, 16#0143#, 16#20D8#, 16#0144#, 16#20DA#, 16#0145#, 16#20DC#, 16#0146#, 16#20DE#, 16#0147#, 16#20E0#, 16#0148#, 16#20E2#, 16#014C#, 16#20E4#, 16#014D#, 16#20E6#, 16#014E#, 16#20E8#, 16#014F#, 16#20EA#, 16#0150#, 16#20EC#, 16#0151#, 16#20EE#, 16#0154#, 16#20F0#, 16#0155#, 16#20F2#, 16#0156#, 16#20F4#, 16#0157#, 16#20F6#, 16#0158#, 16#20F8#, 16#0159#, 16#20FA#, 16#015A#, 16#20FC#, 16#015B#, 16#20FE#, 16#015C#, 16#2100#, 16#015D#, 16#2102#, 16#015E#, 16#2104#, 16#015F#, 16#2106#, 16#0160#, 16#2108#, 16#0161#, 16#210A#, 16#0162#, 16#210C#, 16#0163#, 16#210E#, 16#0164#, 16#2110#, 16#0165#, 16#2112#, 16#0168#, 16#2114#, 16#0169#, 16#2116#, 16#016A#, 16#2118#, 16#016B#, 16#211A#, 16#016C#, 16#211C#, 16#016D#, 16#211E#, 16#016E#, 16#2120#, 16#016F#, 16#2122#, 16#0170#, 16#2124#, 16#0171#, 16#2126#, 16#0172#, 16#2128#, 16#0173#, 16#212A#, 16#0174#, 16#212C#, 16#0175#, 16#212E#, 16#0176#, 16#2130#, 16#0177#, 16#2132#, 16#0178#, 16#2134#, 16#0179#, 16#2136#, 16#017A#, 16#2138#, 16#017B#, 16#213A#, 16#017C#, 16#213C#, 16#017D#, 16#213E#, 16#017E#, 16#2140#, 16#01A0#, 16#2142#, 16#01A1#, 16#2144#, 16#01AF#, 16#2146#, 16#01B0#, 16#2148#, 16#01CD#, 16#214A#, 16#01CE#, 16#214C#, 16#01CF#, 16#214E#, 16#01D0#, 16#2150#, 16#01D1#, 16#2152#, 16#01D2#, 16#2154#, 16#01D3#, 16#2156#, 16#01D4#, 16#2158#, 16#01D5#, 16#A15A#, 16#01D6#, 16#A15C#, 16#01D7#, 16#A15E#, 16#01D8#, 16#A160#, 16#01D9#, 16#A162#, 16#01DA#, 16#A164#, 16#01DB#, 16#A166#, 16#01DC#, 16#A168#, 16#01DE#, 16#A16A#, 16#01DF#, 16#A16C#, 16#01E0#, 16#A16E#, 16#01E1#, 16#A170#, 16#01E2#, 16#2172#, 16#01E3#, 16#2174#, 16#01E6#, 16#2176#, 16#01E7#, 16#2178#, 16#01E8#, 16#217A#, 16#01E9#, 16#217C#, 16#01EA#, 16#217E#, 16#01EB#, 16#2180#, 16#01EC#, 16#A182#, 16#01ED#, 16#A184#, 16#01EE#, 16#2186#, 16#01EF#, 16#2188#, 16#01F0#, 16#218A#, 16#01F4#, 16#218C#, 16#01F5#, 16#218E#, 16#01F8#, 16#2190#, 16#01F9#, 16#2192#, 16#01FA#, 16#A194#, 16#01FB#, 16#A196#, 16#01FC#, 16#2198#, 16#01FD#, 16#219A#, 16#01FE#, 16#219C#, 16#01FF#, 16#219E#, 16#0200#, 16#21A0#, 16#0201#, 16#21A2#, 16#0202#, 16#21A4#, 16#0203#, 16#21A6#, 16#0204#, 16#21A8#, 16#0205#, 16#21AA#, 16#0206#, 16#21AC#, 16#0207#, 16#21AE#, 16#0208#, 16#21B0#, 16#0209#, 16#21B2#, 16#020A#, 16#21B4#, 16#020B#, 16#21B6#, 16#020C#, 16#21B8#, 16#020D#, 16#21BA#, 16#020E#, 16#21BC#, 16#020F#, 16#21BE#, 16#0210#, 16#21C0#, 16#0211#, 16#21C2#, 16#0212#, 16#21C4#, 16#0213#, 16#21C6#, 16#0214#, 16#21C8#, 16#0215#, 16#21CA#, 16#0216#, 16#21CC#, 16#0217#, 16#21CE#, 16#0218#, 16#21D0#, 16#0219#, 16#21D2#, 16#021A#, 16#21D4#, 16#021B#, 16#21D6#, 16#021E#, 16#21D8#, 16#021F#, 16#21DA#, 16#0226#, 16#21DC#, 16#0227#, 16#21DE#, 16#0228#, 16#21E0#, 16#0229#, 16#21E2#, 16#022A#, 16#A1E4#, 16#022B#, 16#A1E6#, 16#022C#, 16#A1E8#, 16#022D#, 16#A1EA#, 16#022E#, 16#21EC#, 16#022F#, 16#21EE#, 16#0230#, 16#A1F0#, 16#0231#, 16#A1F2#, 16#0232#, 16#21F4#, 16#0233#, 16#21F6#, 16#0340#, 16#1300#, 16#0341#, 16#1301#, 16#0343#, 16#1313#, 16#0344#, 16#21F8#, 16#0374#, 16#12B9#, 16#037E#, 16#103B#, 16#0385#, 16#21FA#, 16#0386#, 16#21FC#, 16#0387#, 16#10B7#, 16#0388#, 16#21FE#, 16#0389#, 16#2200#, 16#038A#, 16#2202#, 16#038C#, 16#2204#, 16#038E#, 16#2206#, 16#038F#, 16#2208#, 16#0390#, 16#A20A#, 16#03AA#, 16#220C#, 16#03AB#, 16#220E#, 16#03AC#, 16#2210#, 16#03AD#, 16#2212#, 16#03AE#, 16#2214#, 16#03AF#, 16#2216#, 16#03B0#, 16#A218#, 16#03CA#, 16#221A#, 16#03CB#, 16#221C#, 16#03CC#, 16#221E#, 16#03CD#, 16#2220#, 16#03CE#, 16#2222#, 16#03D3#, 16#2224#, 16#03D4#, 16#2226#, 16#0400#, 16#2228#, 16#0401#, 16#222A#, 16#0403#, 16#222C#, 16#0407#, 16#222E#, 16#040C#, 16#2230#, 16#040D#, 16#2232#, 16#040E#, 16#2234#, 16#0419#, 16#2236#, 16#0439#, 16#2238#, 16#0450#, 16#223A#, 16#0451#, 16#223C#, 16#0453#, 16#223E#, 16#0457#, 16#2240#, 16#045C#, 16#2242#, 16#045D#, 16#2244#, 16#045E#, 16#2246#, 16#0476#, 16#2248#, 16#0477#, 16#224A#, 16#04C1#, 16#224C#, 16#04C2#, 16#224E#, 16#04D0#, 16#2250#, 16#04D1#, 16#2252#, 16#04D2#, 16#2254#, 16#04D3#, 16#2256#, 16#04D6#, 16#2258#, 16#04D7#, 16#225A#, 16#04DA#, 16#225C#, 16#04DB#, 16#225E#, 16#04DC#, 16#2260#, 16#04DD#, 16#2262#, 16#04DE#, 16#2264#, 16#04DF#, 16#2266#, 16#04E2#, 16#2268#, 16#04E3#, 16#226A#, 16#04E4#, 16#226C#, 16#04E5#, 16#226E#, 16#04E6#, 16#2270#, 16#04E7#, 16#2272#, 16#04EA#, 16#2274#, 16#04EB#, 16#2276#, 16#04EC#, 16#2278#, 16#04ED#, 16#227A#, 16#04EE#, 16#227C#, 16#04EF#, 16#227E#, 16#04F0#, 16#2280#, 16#04F1#, 16#2282#, 16#04F2#, 16#2284#, 16#04F3#, 16#2286#, 16#04F4#, 16#2288#, 16#04F5#, 16#228A#, 16#04F8#, 16#228C#, 16#04F9#, 16#228E#, 16#0622#, 16#2290#, 16#0623#, 16#2292#, 16#0624#, 16#2294#, 16#0625#, 16#2296#, 16#0626#, 16#2298#, 16#06C0#, 16#229A#, 16#06C2#, 16#229C#, 16#06D3#, 16#229E#, 16#0929#, 16#22A0#, 16#0931#, 16#22A2#, 16#0934#, 16#22A4#, 16#0958#, 16#22A6#, 16#0959#, 16#22A8#, 16#095A#, 16#22AA#, 16#095B#, 16#22AC#, 16#095C#, 16#22AE#, 16#095D#, 16#22B0#, 16#095E#, 16#22B2#, 16#095F#, 16#22B4#, 16#09CB#, 16#22B6#, 16#09CC#, 16#22B8#, 16#09DC#, 16#22BA#, 16#09DD#, 16#22BC#, 16#09DF#, 16#22BE#, 16#0A33#, 16#22C0#, 16#0A36#, 16#22C2#, 16#0A59#, 16#22C4#, 16#0A5A#, 16#22C6#, 16#0A5B#, 16#22C8#, 16#0A5E#, 16#22CA#, 16#0B48#, 16#22CC#, 16#0B4B#, 16#22CE#, 16#0B4C#, 16#22D0#, 16#0B5C#, 16#22D2#, 16#0B5D#, 16#22D4#, 16#0B94#, 16#22D6#, 16#0BCA#, 16#22D8#, 16#0BCB#, 16#22DA#, 16#0BCC#, 16#22DC#, 16#0C48#, 16#22DE#, 16#0CC0#, 16#22E0#, 16#0CC7#, 16#22E2#, 16#0CC8#, 16#22E4#, 16#0CCA#, 16#22E6#, 16#0CCB#, 16#A2E8#, 16#0D4A#, 16#22EA#, 16#0D4B#, 16#22EC#, 16#0D4C#, 16#22EE#, 16#0DDA#, 16#22F0#, 16#0DDC#, 16#22F2#, 16#0DDD#, 16#A2F4#, 16#0DDE#, 16#22F6#, 16#0F43#, 16#22F8#, 16#0F4D#, 16#22FA#, 16#0F52#, 16#22FC#, 16#0F57#, 16#22FE#, 16#0F5C#, 16#2300#, 16#0F69#, 16#2302#, 16#0F73#, 16#2304#, 16#0F75#, 16#2306#, 16#0F76#, 16#2308#, 16#0F78#, 16#230A#, 16#0F81#, 16#230C#, 16#0F93#, 16#230E#, 16#0F9D#, 16#2310#, 16#0FA2#, 16#2312#, 16#0FA7#, 16#2314#, 16#0FAC#, 16#2316#, 16#0FB9#, 16#2318#, 16#1026#, 16#231A#, 16#1E00#, 16#231C#, 16#1E01#, 16#231E#, 16#1E02#, 16#2320#, 16#1E03#, 16#2322#, 16#1E04#, 16#2324#, 16#1E05#, 16#2326#, 16#1E06#, 16#2328#, 16#1E07#, 16#232A#, 16#1E08#, 16#A32C#, 16#1E09#, 16#A32E#, 16#1E0A#, 16#2330#, 16#1E0B#, 16#2332#, 16#1E0C#, 16#2334#, 16#1E0D#, 16#2336#, 16#1E0E#, 16#2338#, 16#1E0F#, 16#233A#, 16#1E10#, 16#233C#, 16#1E11#, 16#233E#, 16#1E12#, 16#2340#, 16#1E13#, 16#2342#, 16#1E14#, 16#A344#, 16#1E15#, 16#A346#, 16#1E16#, 16#A348#, 16#1E17#, 16#A34A#, 16#1E18#, 16#234C#, 16#1E19#, 16#234E#, 16#1E1A#, 16#2350#, 16#1E1B#, 16#2352#, 16#1E1C#, 16#A354#, 16#1E1D#, 16#A356#, 16#1E1E#, 16#2358#, 16#1E1F#, 16#235A#, 16#1E20#, 16#235C#, 16#1E21#, 16#235E#, 16#1E22#, 16#2360#, 16#1E23#, 16#2362#, 16#1E24#, 16#2364#, 16#1E25#, 16#2366#, 16#1E26#, 16#2368#, 16#1E27#, 16#236A#, 16#1E28#, 16#236C#, 16#1E29#, 16#236E#, 16#1E2A#, 16#2370#, 16#1E2B#, 16#2372#, 16#1E2C#, 16#2374#, 16#1E2D#, 16#2376#, 16#1E2E#, 16#A378#, 16#1E2F#, 16#A37A#, 16#1E30#, 16#237C#, 16#1E31#, 16#237E#, 16#1E32#, 16#2380#, 16#1E33#, 16#2382#, 16#1E34#, 16#2384#, 16#1E35#, 16#2386#, 16#1E36#, 16#2388#, 16#1E37#, 16#238A#, 16#1E38#, 16#A38C#, 16#1E39#, 16#A38E#, 16#1E3A#, 16#2390#, 16#1E3B#, 16#2392#, 16#1E3C#, 16#2394#, 16#1E3D#, 16#2396#, 16#1E3E#, 16#2398#, 16#1E3F#, 16#239A#, 16#1E40#, 16#239C#, 16#1E41#, 16#239E#, 16#1E42#, 16#23A0#, 16#1E43#, 16#23A2#, 16#1E44#, 16#23A4#, 16#1E45#, 16#23A6#, 16#1E46#, 16#23A8#, 16#1E47#, 16#23AA#, 16#1E48#, 16#23AC#, 16#1E49#, 16#23AE#, 16#1E4A#, 16#23B0#, 16#1E4B#, 16#23B2#, 16#1E4C#, 16#A3B4#, 16#1E4D#, 16#A3B6#, 16#1E4E#, 16#A3B8#, 16#1E4F#, 16#A3BA#, 16#1E50#, 16#A3BC#, 16#1E51#, 16#A3BE#, 16#1E52#, 16#A3C0#, 16#1E53#, 16#A3C2#, 16#1E54#, 16#23C4#, 16#1E55#, 16#23C6#, 16#1E56#, 16#23C8#, 16#1E57#, 16#23CA#, 16#1E58#, 16#23CC#, 16#1E59#, 16#23CE#, 16#1E5A#, 16#23D0#, 16#1E5B#, 16#23D2#, 16#1E5C#, 16#A3D4#, 16#1E5D#, 16#A3D6#, 16#1E5E#, 16#23D8#, 16#1E5F#, 16#23DA#, 16#1E60#, 16#23DC#, 16#1E61#, 16#23DE#, 16#1E62#, 16#23E0#, 16#1E63#, 16#23E2#, 16#1E64#, 16#A3E4#, 16#1E65#, 16#A3E6#, 16#1E66#, 16#A3E8#, 16#1E67#, 16#A3EA#, 16#1E68#, 16#A3EC#, 16#1E69#, 16#A3EE#, 16#1E6A#, 16#23F0#, 16#1E6B#, 16#23F2#, 16#1E6C#, 16#23F4#, 16#1E6D#, 16#23F6#, 16#1E6E#, 16#23F8#, 16#1E6F#, 16#23FA#, 16#1E70#, 16#23FC#, 16#1E71#, 16#23FE#, 16#1E72#, 16#2400#, 16#1E73#, 16#2402#, 16#1E74#, 16#2404#, 16#1E75#, 16#2406#, 16#1E76#, 16#2408#, 16#1E77#, 16#240A#, 16#1E78#, 16#A40C#, 16#1E79#, 16#A40E#, 16#1E7A#, 16#A410#, 16#1E7B#, 16#A412#, 16#1E7C#, 16#2414#, 16#1E7D#, 16#2416#, 16#1E7E#, 16#2418#, 16#1E7F#, 16#241A#, 16#1E80#, 16#241C#, 16#1E81#, 16#241E#, 16#1E82#, 16#2420#, 16#1E83#, 16#2422#, 16#1E84#, 16#2424#, 16#1E85#, 16#2426#, 16#1E86#, 16#2428#, 16#1E87#, 16#242A#, 16#1E88#, 16#242C#, 16#1E89#, 16#242E#, 16#1E8A#, 16#2430#, 16#1E8B#, 16#2432#, 16#1E8C#, 16#2434#, 16#1E8D#, 16#2436#, 16#1E8E#, 16#2438#, 16#1E8F#, 16#243A#, 16#1E90#, 16#243C#, 16#1E91#, 16#243E#, 16#1E92#, 16#2440#, 16#1E93#, 16#2442#, 16#1E94#, 16#2444#, 16#1E95#, 16#2446#, 16#1E96#, 16#2448#, 16#1E97#, 16#244A#, 16#1E98#, 16#244C#, 16#1E99#, 16#244E#, 16#1E9B#, 16#2450#, 16#1EA0#, 16#2452#, 16#1EA1#, 16#2454#, 16#1EA2#, 16#2456#, 16#1EA3#, 16#2458#, 16#1EA4#, 16#A45A#, 16#1EA5#, 16#A45C#, 16#1EA6#, 16#A45E#, 16#1EA7#, 16#A460#, 16#1EA8#, 16#A462#, 16#1EA9#, 16#A464#, 16#1EAA#, 16#A466#, 16#1EAB#, 16#A468#, 16#1EAC#, 16#A46A#, 16#1EAD#, 16#A46C#, 16#1EAE#, 16#A46E#, 16#1EAF#, 16#A470#, 16#1EB0#, 16#A472#, 16#1EB1#, 16#A474#, 16#1EB2#, 16#A476#, 16#1EB3#, 16#A478#, 16#1EB4#, 16#A47A#, 16#1EB5#, 16#A47C#, 16#1EB6#, 16#A47E#, 16#1EB7#, 16#A480#, 16#1EB8#, 16#2482#, 16#1EB9#, 16#2484#, 16#1EBA#, 16#2486#, 16#1EBB#, 16#2488#, 16#1EBC#, 16#248A#, 16#1EBD#, 16#248C#, 16#1EBE#, 16#A48E#, 16#1EBF#, 16#A490#, 16#1EC0#, 16#A492#, 16#1EC1#, 16#A494#, 16#1EC2#, 16#A496#, 16#1EC3#, 16#A498#, 16#1EC4#, 16#A49A#, 16#1EC5#, 16#A49C#, 16#1EC6#, 16#A49E#, 16#1EC7#, 16#A4A0#, 16#1EC8#, 16#24A2#, 16#1EC9#, 16#24A4#, 16#1ECA#, 16#24A6#, 16#1ECB#, 16#24A8#, 16#1ECC#, 16#24AA#, 16#1ECD#, 16#24AC#, 16#1ECE#, 16#24AE#, 16#1ECF#, 16#24B0#, 16#1ED0#, 16#A4B2#, 16#1ED1#, 16#A4B4#, 16#1ED2#, 16#A4B6#, 16#1ED3#, 16#A4B8#, 16#1ED4#, 16#A4BA#, 16#1ED5#, 16#A4BC#, 16#1ED6#, 16#A4BE#, 16#1ED7#, 16#A4C0#, 16#1ED8#, 16#A4C2#, 16#1ED9#, 16#A4C4#, 16#1EDA#, 16#A4C6#, 16#1EDB#, 16#A4C8#, 16#1EDC#, 16#A4CA#, 16#1EDD#, 16#A4CC#, 16#1EDE#, 16#A4CE#, 16#1EDF#, 16#A4D0#, 16#1EE0#, 16#A4D2#, 16#1EE1#, 16#A4D4#, 16#1EE2#, 16#A4D6#, 16#1EE3#, 16#A4D8#, 16#1EE4#, 16#24DA#, 16#1EE5#, 16#24DC#, 16#1EE6#, 16#24DE#, 16#1EE7#, 16#24E0#, 16#1EE8#, 16#A4E2#, 16#1EE9#, 16#A4E4#, 16#1EEA#, 16#A4E6#, 16#1EEB#, 16#A4E8#, 16#1EEC#, 16#A4EA#, 16#1EED#, 16#A4EC#, 16#1EEE#, 16#A4EE#, 16#1EEF#, 16#A4F0#, 16#1EF0#, 16#A4F2#, 16#1EF1#, 16#A4F4#, 16#1EF2#, 16#24F6#, 16#1EF3#, 16#24F8#, 16#1EF4#, 16#24FA#, 16#1EF5#, 16#24FC#, 16#1EF6#, 16#24FE#, 16#1EF7#, 16#2500#, 16#1EF8#, 16#2502#, 16#1EF9#, 16#2504#, 16#1F00#, 16#2506#, 16#1F01#, 16#2508#, 16#1F02#, 16#A50A#, 16#1F03#, 16#A50C#, 16#1F04#, 16#A50E#, 16#1F05#, 16#A510#, 16#1F06#, 16#A512#, 16#1F07#, 16#A514#, 16#1F08#, 16#2516#, 16#1F09#, 16#2518#, 16#1F0A#, 16#A51A#, 16#1F0B#, 16#A51C#, 16#1F0C#, 16#A51E#, 16#1F0D#, 16#A520#, 16#1F0E#, 16#A522#, 16#1F0F#, 16#A524#, 16#1F10#, 16#2526#, 16#1F11#, 16#2528#, 16#1F12#, 16#A52A#, 16#1F13#, 16#A52C#, 16#1F14#, 16#A52E#, 16#1F15#, 16#A530#, 16#1F18#, 16#2532#, 16#1F19#, 16#2534#, 16#1F1A#, 16#A536#, 16#1F1B#, 16#A538#, 16#1F1C#, 16#A53A#, 16#1F1D#, 16#A53C#, 16#1F20#, 16#253E#, 16#1F21#, 16#2540#, 16#1F22#, 16#A542#, 16#1F23#, 16#A544#, 16#1F24#, 16#A546#, 16#1F25#, 16#A548#, 16#1F26#, 16#A54A#, 16#1F27#, 16#A54C#, 16#1F28#, 16#254E#, 16#1F29#, 16#2550#, 16#1F2A#, 16#A552#, 16#1F2B#, 16#A554#, 16#1F2C#, 16#A556#, 16#1F2D#, 16#A558#, 16#1F2E#, 16#A55A#, 16#1F2F#, 16#A55C#, 16#1F30#, 16#255E#, 16#1F31#, 16#2560#, 16#1F32#, 16#A562#, 16#1F33#, 16#A564#, 16#1F34#, 16#A566#, 16#1F35#, 16#A568#, 16#1F36#, 16#A56A#, 16#1F37#, 16#A56C#, 16#1F38#, 16#256E#, 16#1F39#, 16#2570#, 16#1F3A#, 16#A572#, 16#1F3B#, 16#A574#, 16#1F3C#, 16#A576#, 16#1F3D#, 16#A578#, 16#1F3E#, 16#A57A#, 16#1F3F#, 16#A57C#, 16#1F40#, 16#257E#, 16#1F41#, 16#2580#, 16#1F42#, 16#A582#, 16#1F43#, 16#A584#, 16#1F44#, 16#A586#, 16#1F45#, 16#A588#, 16#1F48#, 16#258A#, 16#1F49#, 16#258C#, 16#1F4A#, 16#A58E#, 16#1F4B#, 16#A590#, 16#1F4C#, 16#A592#, 16#1F4D#, 16#A594#, 16#1F50#, 16#2596#, 16#1F51#, 16#2598#, 16#1F52#, 16#A59A#, 16#1F53#, 16#A59C#, 16#1F54#, 16#A59E#, 16#1F55#, 16#A5A0#, 16#1F56#, 16#A5A2#, 16#1F57#, 16#A5A4#, 16#1F59#, 16#25A6#, 16#1F5B#, 16#A5A8#, 16#1F5D#, 16#A5AA#, 16#1F5F#, 16#A5AC#, 16#1F60#, 16#25AE#, 16#1F61#, 16#25B0#, 16#1F62#, 16#A5B2#, 16#1F63#, 16#A5B4#, 16#1F64#, 16#A5B6#, 16#1F65#, 16#A5B8#, 16#1F66#, 16#A5BA#, 16#1F67#, 16#A5BC#, 16#1F68#, 16#25BE#, 16#1F69#, 16#25C0#, 16#1F6A#, 16#A5C2#, 16#1F6B#, 16#A5C4#, 16#1F6C#, 16#A5C6#, 16#1F6D#, 16#A5C8#, 16#1F6E#, 16#A5CA#, 16#1F6F#, 16#A5CC#, 16#1F70#, 16#25CE#, 16#1F71#, 16#93AC#, 16#1F72#, 16#25D0#, 16#1F73#, 16#93AD#, 16#1F74#, 16#25D2#, 16#1F75#, 16#93AE#, 16#1F76#, 16#25D4#, 16#1F77#, 16#93AF#, 16#1F78#, 16#25D6#, 16#1F79#, 16#93CC#, 16#1F7A#, 16#25D8#, 16#1F7B#, 16#93CD#, 16#1F7C#, 16#25DA#, 16#1F7D#, 16#93CE#, 16#1F80#, 16#A5DC#, 16#1F81#, 16#A5DE#, 16#1F82#, 16#A5E0#, 16#1F83#, 16#A5E2#, 16#1F84#, 16#A5E4#, 16#1F85#, 16#A5E6#, 16#1F86#, 16#A5E8#, 16#1F87#, 16#A5EA#, 16#1F88#, 16#A5EC#, 16#1F89#, 16#A5EE#, 16#1F8A#, 16#A5F0#, 16#1F8B#, 16#A5F2#, 16#1F8C#, 16#A5F4#, 16#1F8D#, 16#A5F6#, 16#1F8E#, 16#A5F8#, 16#1F8F#, 16#A5FA#, 16#1F90#, 16#A5FC#, 16#1F91#, 16#A5FE#, 16#1F92#, 16#A600#, 16#1F93#, 16#A602#, 16#1F94#, 16#A604#, 16#1F95#, 16#A606#, 16#1F96#, 16#A608#, 16#1F97#, 16#A60A#, 16#1F98#, 16#A60C#, 16#1F99#, 16#A60E#, 16#1F9A#, 16#A610#, 16#1F9B#, 16#A612#, 16#1F9C#, 16#A614#, 16#1F9D#, 16#A616#, 16#1F9E#, 16#A618#, 16#1F9F#, 16#A61A#, 16#1FA0#, 16#A61C#, 16#1FA1#, 16#A61E#, 16#1FA2#, 16#A620#, 16#1FA3#, 16#A622#, 16#1FA4#, 16#A624#, 16#1FA5#, 16#A626#, 16#1FA6#, 16#A628#, 16#1FA7#, 16#A62A#, 16#1FA8#, 16#A62C#, 16#1FA9#, 16#A62E#, 16#1FAA#, 16#A630#, 16#1FAB#, 16#A632#, 16#1FAC#, 16#A634#, 16#1FAD#, 16#A636#, 16#1FAE#, 16#A638#, 16#1FAF#, 16#A63A#, 16#1FB0#, 16#263C#, 16#1FB1#, 16#263E#, 16#1FB2#, 16#A640#, 16#1FB3#, 16#2642#, 16#1FB4#, 16#A644#, 16#1FB6#, 16#2646#, 16#1FB7#, 16#A648#, 16#1FB8#, 16#264A#, 16#1FB9#, 16#264C#, 16#1FBA#, 16#264E#, 16#1FBB#, 16#9386#, 16#1FBC#, 16#2650#, 16#1FBE#, 16#13B9#, 16#1FC1#, 16#2652#, 16#1FC2#, 16#A654#, 16#1FC3#, 16#2656#, 16#1FC4#, 16#A658#, 16#1FC6#, 16#265A#, 16#1FC7#, 16#A65C#, 16#1FC8#, 16#265E#, 16#1FC9#, 16#9388#, 16#1FCA#, 16#2660#, 16#1FCB#, 16#9389#, 16#1FCC#, 16#2662#, 16#1FCD#, 16#2664#, 16#1FCE#, 16#2666#, 16#1FCF#, 16#2668#, 16#1FD0#, 16#266A#, 16#1FD1#, 16#266C#, 16#1FD2#, 16#A66E#, 16#1FD3#, 16#9390#, 16#1FD6#, 16#2670#, 16#1FD7#, 16#A672#, 16#1FD8#, 16#2674#, 16#1FD9#, 16#2676#, 16#1FDA#, 16#2678#, 16#1FDB#, 16#938A#, 16#1FDD#, 16#267A#, 16#1FDE#, 16#267C#, 16#1FDF#, 16#267E#, 16#1FE0#, 16#2680#, 16#1FE1#, 16#2682#, 16#1FE2#, 16#A684#, 16#1FE3#, 16#93B0#, 16#1FE4#, 16#2686#, 16#1FE5#, 16#2688#, 16#1FE6#, 16#268A#, 16#1FE7#, 16#A68C#, 16#1FE8#, 16#268E#, 16#1FE9#, 16#2690#, 16#1FEA#, 16#2692#, 16#1FEB#, 16#938E#, 16#1FEC#, 16#2694#, 16#1FED#, 16#2696#, 16#1FEE#, 16#9385#, 16#1FEF#, 16#1060#, 16#1FF2#, 16#A698#, 16#1FF3#, 16#269A#, 16#1FF4#, 16#A69C#, 16#1FF6#, 16#269E#, 16#1FF7#, 16#A6A0#, 16#1FF8#, 16#26A2#, 16#1FF9#, 16#938C#, 16#1FFA#, 16#26A4#, 16#1FFB#, 16#938F#, 16#1FFC#, 16#26A6#, 16#1FFD#, 16#10B4#, 16#304C#, 16#26A8#, 16#304E#, 16#26AA#, 16#3050#, 16#26AC#, 16#3052#, 16#26AE#, 16#3054#, 16#26B0#, 16#3056#, 16#26B2#, 16#3058#, 16#26B4#, 16#305A#, 16#26B6#, 16#305C#, 16#26B8#, 16#305E#, 16#26BA#, 16#3060#, 16#26BC#, 16#3062#, 16#26BE#, 16#3065#, 16#26C0#, 16#3067#, 16#26C2#, 16#3069#, 16#26C4#, 16#3070#, 16#26C6#, 16#3071#, 16#26C8#, 16#3073#, 16#26CA#, 16#3074#, 16#26CC#, 16#3076#, 16#26CE#, 16#3077#, 16#26D0#, 16#3079#, 16#26D2#, 16#307A#, 16#26D4#, 16#307C#, 16#26D6#, 16#307D#, 16#26D8#, 16#3094#, 16#26DA#, 16#309E#, 16#26DC#, 16#30AC#, 16#26DE#, 16#30AE#, 16#26E0#, 16#30B0#, 16#26E2#, 16#30B2#, 16#26E4#, 16#30B4#, 16#26E6#, 16#30B6#, 16#26E8#, 16#30B8#, 16#26EA#, 16#30BA#, 16#26EC#, 16#30BC#, 16#26EE#, 16#30BE#, 16#26F0#, 16#30C0#, 16#26F2#, 16#30C2#, 16#26F4#, 16#30C5#, 16#26F6#, 16#30C7#, 16#26F8#, 16#30C9#, 16#26FA#, 16#30D0#, 16#26FC#, 16#30D1#, 16#26FE#, 16#30D3#, 16#2700#, 16#30D4#, 16#2702#, 16#30D6#, 16#2704#, 16#30D7#, 16#2706#, 16#30D9#, 16#2708#, 16#30DA#, 16#270A#, 16#30DC#, 16#270C#, 16#30DD#, 16#270E#, 16#30F4#, 16#2710#, 16#30F7#, 16#2712#, 16#30F8#, 16#2714#, 16#30F9#, 16#2716#, 16#30FA#, 16#2718#, 16#30FE#, 16#271A#, 16#FB1D#, 16#271C#, 16#FB1F#, 16#271E#, 16#FB2A#, 16#2720#, 16#FB2B#, 16#2722#, 16#FB2C#, 16#A724#, 16#FB2D#, 16#A726#, 16#FB2E#, 16#2728#, 16#FB2F#, 16#272A#, 16#FB30#, 16#272C#, 16#FB31#, 16#272E#, 16#FB32#, 16#2730#, 16#FB33#, 16#2732#, 16#FB34#, 16#2734#, 16#FB35#, 16#2736#, 16#FB36#, 16#2738#, 16#FB38#, 16#273A#, 16#FB39#, 16#273C#, 16#FB3A#, 16#273E#, 16#FB3B#, 16#2740#, 16#FB3C#, 16#2742#, 16#FB3E#, 16#2744#, 16#FB40#, 16#2746#, 16#FB41#, 16#2748#, 16#FB43#, 16#274A#, 16#FB44#, 16#274C#, 16#FB46#, 16#274E#, 16#FB47#, 16#2750#, 16#FB48#, 16#2752#, 16#FB49#, 16#2754#, 16#FB4A#, 16#2756#, 16#FB4B#, 16#2758#, 16#FB4C#, 16#275A#, 16#FB4D#, 16#275C#, 16#FB4E#, 16#275E#); -- UniCharDecompositionTableLength : constant u_int32_t := -- CFUniCharDecompositionTable'Length / 2; CFUniCharMultipleDecompositionTable : constant u_int16_t_array (0 .. 1887) := ( 16#0041#, 16#0300#, 16#0041#, 16#0301#, 16#0041#, 16#0302#, 16#0041#, 16#0303#, 16#0041#, 16#0308#, 16#0041#, 16#030A#, 16#0043#, 16#0327#, 16#0045#, 16#0300#, 16#0045#, 16#0301#, 16#0045#, 16#0302#, 16#0045#, 16#0308#, 16#0049#, 16#0300#, 16#0049#, 16#0301#, 16#0049#, 16#0302#, 16#0049#, 16#0308#, 16#004E#, 16#0303#, 16#004F#, 16#0300#, 16#004F#, 16#0301#, 16#004F#, 16#0302#, 16#004F#, 16#0303#, 16#004F#, 16#0308#, 16#0055#, 16#0300#, 16#0055#, 16#0301#, 16#0055#, 16#0302#, 16#0055#, 16#0308#, 16#0059#, 16#0301#, 16#0061#, 16#0300#, 16#0061#, 16#0301#, 16#0061#, 16#0302#, 16#0061#, 16#0303#, 16#0061#, 16#0308#, 16#0061#, 16#030A#, 16#0063#, 16#0327#, 16#0065#, 16#0300#, 16#0065#, 16#0301#, 16#0065#, 16#0302#, 16#0065#, 16#0308#, 16#0069#, 16#0300#, 16#0069#, 16#0301#, 16#0069#, 16#0302#, 16#0069#, 16#0308#, 16#006E#, 16#0303#, 16#006F#, 16#0300#, 16#006F#, 16#0301#, 16#006F#, 16#0302#, 16#006F#, 16#0303#, 16#006F#, 16#0308#, 16#0075#, 16#0300#, 16#0075#, 16#0301#, 16#0075#, 16#0302#, 16#0075#, 16#0308#, 16#0079#, 16#0301#, 16#0079#, 16#0308#, 16#0041#, 16#0304#, 16#0061#, 16#0304#, 16#0041#, 16#0306#, 16#0061#, 16#0306#, 16#0041#, 16#0328#, 16#0061#, 16#0328#, 16#0043#, 16#0301#, 16#0063#, 16#0301#, 16#0043#, 16#0302#, 16#0063#, 16#0302#, 16#0043#, 16#0307#, 16#0063#, 16#0307#, 16#0043#, 16#030C#, 16#0063#, 16#030C#, 16#0044#, 16#030C#, 16#0064#, 16#030C#, 16#0045#, 16#0304#, 16#0065#, 16#0304#, 16#0045#, 16#0306#, 16#0065#, 16#0306#, 16#0045#, 16#0307#, 16#0065#, 16#0307#, 16#0045#, 16#0328#, 16#0065#, 16#0328#, 16#0045#, 16#030C#, 16#0065#, 16#030C#, 16#0047#, 16#0302#, 16#0067#, 16#0302#, 16#0047#, 16#0306#, 16#0067#, 16#0306#, 16#0047#, 16#0307#, 16#0067#, 16#0307#, 16#0047#, 16#0327#, 16#0067#, 16#0327#, 16#0048#, 16#0302#, 16#0068#, 16#0302#, 16#0049#, 16#0303#, 16#0069#, 16#0303#, 16#0049#, 16#0304#, 16#0069#, 16#0304#, 16#0049#, 16#0306#, 16#0069#, 16#0306#, 16#0049#, 16#0328#, 16#0069#, 16#0328#, 16#0049#, 16#0307#, 16#004A#, 16#0302#, 16#006A#, 16#0302#, 16#004B#, 16#0327#, 16#006B#, 16#0327#, 16#004C#, 16#0301#, 16#006C#, 16#0301#, 16#004C#, 16#0327#, 16#006C#, 16#0327#, 16#004C#, 16#030C#, 16#006C#, 16#030C#, 16#004E#, 16#0301#, 16#006E#, 16#0301#, 16#004E#, 16#0327#, 16#006E#, 16#0327#, 16#004E#, 16#030C#, 16#006E#, 16#030C#, 16#004F#, 16#0304#, 16#006F#, 16#0304#, 16#004F#, 16#0306#, 16#006F#, 16#0306#, 16#004F#, 16#030B#, 16#006F#, 16#030B#, 16#0052#, 16#0301#, 16#0072#, 16#0301#, 16#0052#, 16#0327#, 16#0072#, 16#0327#, 16#0052#, 16#030C#, 16#0072#, 16#030C#, 16#0053#, 16#0301#, 16#0073#, 16#0301#, 16#0053#, 16#0302#, 16#0073#, 16#0302#, 16#0053#, 16#0327#, 16#0073#, 16#0327#, 16#0053#, 16#030C#, 16#0073#, 16#030C#, 16#0054#, 16#0327#, 16#0074#, 16#0327#, 16#0054#, 16#030C#, 16#0074#, 16#030C#, 16#0055#, 16#0303#, 16#0075#, 16#0303#, 16#0055#, 16#0304#, 16#0075#, 16#0304#, 16#0055#, 16#0306#, 16#0075#, 16#0306#, 16#0055#, 16#030A#, 16#0075#, 16#030A#, 16#0055#, 16#030B#, 16#0075#, 16#030B#, 16#0055#, 16#0328#, 16#0075#, 16#0328#, 16#0057#, 16#0302#, 16#0077#, 16#0302#, 16#0059#, 16#0302#, 16#0079#, 16#0302#, 16#0059#, 16#0308#, 16#005A#, 16#0301#, 16#007A#, 16#0301#, 16#005A#, 16#0307#, 16#007A#, 16#0307#, 16#005A#, 16#030C#, 16#007A#, 16#030C#, 16#004F#, 16#031B#, 16#006F#, 16#031B#, 16#0055#, 16#031B#, 16#0075#, 16#031B#, 16#0041#, 16#030C#, 16#0061#, 16#030C#, 16#0049#, 16#030C#, 16#0069#, 16#030C#, 16#004F#, 16#030C#, 16#006F#, 16#030C#, 16#0055#, 16#030C#, 16#0075#, 16#030C#, 16#00DC#, 16#0304#, 16#00FC#, 16#0304#, 16#00DC#, 16#0301#, 16#00FC#, 16#0301#, 16#00DC#, 16#030C#, 16#00FC#, 16#030C#, 16#00DC#, 16#0300#, 16#00FC#, 16#0300#, 16#00C4#, 16#0304#, 16#00E4#, 16#0304#, 16#0226#, 16#0304#, 16#0227#, 16#0304#, 16#00C6#, 16#0304#, 16#00E6#, 16#0304#, 16#0047#, 16#030C#, 16#0067#, 16#030C#, 16#004B#, 16#030C#, 16#006B#, 16#030C#, 16#004F#, 16#0328#, 16#006F#, 16#0328#, 16#01EA#, 16#0304#, 16#01EB#, 16#0304#, 16#01B7#, 16#030C#, 16#0292#, 16#030C#, 16#006A#, 16#030C#, 16#0047#, 16#0301#, 16#0067#, 16#0301#, 16#004E#, 16#0300#, 16#006E#, 16#0300#, 16#00C5#, 16#0301#, 16#00E5#, 16#0301#, 16#00C6#, 16#0301#, 16#00E6#, 16#0301#, 16#00D8#, 16#0301#, 16#00F8#, 16#0301#, 16#0041#, 16#030F#, 16#0061#, 16#030F#, 16#0041#, 16#0311#, 16#0061#, 16#0311#, 16#0045#, 16#030F#, 16#0065#, 16#030F#, 16#0045#, 16#0311#, 16#0065#, 16#0311#, 16#0049#, 16#030F#, 16#0069#, 16#030F#, 16#0049#, 16#0311#, 16#0069#, 16#0311#, 16#004F#, 16#030F#, 16#006F#, 16#030F#, 16#004F#, 16#0311#, 16#006F#, 16#0311#, 16#0052#, 16#030F#, 16#0072#, 16#030F#, 16#0052#, 16#0311#, 16#0072#, 16#0311#, 16#0055#, 16#030F#, 16#0075#, 16#030F#, 16#0055#, 16#0311#, 16#0075#, 16#0311#, 16#0053#, 16#0326#, 16#0073#, 16#0326#, 16#0054#, 16#0326#, 16#0074#, 16#0326#, 16#0048#, 16#030C#, 16#0068#, 16#030C#, 16#0041#, 16#0307#, 16#0061#, 16#0307#, 16#0045#, 16#0327#, 16#0065#, 16#0327#, 16#00D6#, 16#0304#, 16#00F6#, 16#0304#, 16#00D5#, 16#0304#, 16#00F5#, 16#0304#, 16#004F#, 16#0307#, 16#006F#, 16#0307#, 16#022E#, 16#0304#, 16#022F#, 16#0304#, 16#0059#, 16#0304#, 16#0079#, 16#0304#, 16#0308#, 16#0301#, 16#00A8#, 16#0301#, 16#0391#, 16#0301#, 16#0395#, 16#0301#, 16#0397#, 16#0301#, 16#0399#, 16#0301#, 16#039F#, 16#0301#, 16#03A5#, 16#0301#, 16#03A9#, 16#0301#, 16#03CA#, 16#0301#, 16#0399#, 16#0308#, 16#03A5#, 16#0308#, 16#03B1#, 16#0301#, 16#03B5#, 16#0301#, 16#03B7#, 16#0301#, 16#03B9#, 16#0301#, 16#03CB#, 16#0301#, 16#03B9#, 16#0308#, 16#03C5#, 16#0308#, 16#03BF#, 16#0301#, 16#03C5#, 16#0301#, 16#03C9#, 16#0301#, 16#03D2#, 16#0301#, 16#03D2#, 16#0308#, 16#0415#, 16#0300#, 16#0415#, 16#0308#, 16#0413#, 16#0301#, 16#0406#, 16#0308#, 16#041A#, 16#0301#, 16#0418#, 16#0300#, 16#0423#, 16#0306#, 16#0418#, 16#0306#, 16#0438#, 16#0306#, 16#0435#, 16#0300#, 16#0435#, 16#0308#, 16#0433#, 16#0301#, 16#0456#, 16#0308#, 16#043A#, 16#0301#, 16#0438#, 16#0300#, 16#0443#, 16#0306#, 16#0474#, 16#030F#, 16#0475#, 16#030F#, 16#0416#, 16#0306#, 16#0436#, 16#0306#, 16#0410#, 16#0306#, 16#0430#, 16#0306#, 16#0410#, 16#0308#, 16#0430#, 16#0308#, 16#0415#, 16#0306#, 16#0435#, 16#0306#, 16#04D8#, 16#0308#, 16#04D9#, 16#0308#, 16#0416#, 16#0308#, 16#0436#, 16#0308#, 16#0417#, 16#0308#, 16#0437#, 16#0308#, 16#0418#, 16#0304#, 16#0438#, 16#0304#, 16#0418#, 16#0308#, 16#0438#, 16#0308#, 16#041E#, 16#0308#, 16#043E#, 16#0308#, 16#04E8#, 16#0308#, 16#04E9#, 16#0308#, 16#042D#, 16#0308#, 16#044D#, 16#0308#, 16#0423#, 16#0304#, 16#0443#, 16#0304#, 16#0423#, 16#0308#, 16#0443#, 16#0308#, 16#0423#, 16#030B#, 16#0443#, 16#030B#, 16#0427#, 16#0308#, 16#0447#, 16#0308#, 16#042B#, 16#0308#, 16#044B#, 16#0308#, 16#0627#, 16#0653#, 16#0627#, 16#0654#, 16#0648#, 16#0654#, 16#0627#, 16#0655#, 16#064A#, 16#0654#, 16#06D5#, 16#0654#, 16#06C1#, 16#0654#, 16#06D2#, 16#0654#, 16#0928#, 16#093C#, 16#0930#, 16#093C#, 16#0933#, 16#093C#, 16#0915#, 16#093C#, 16#0916#, 16#093C#, 16#0917#, 16#093C#, 16#091C#, 16#093C#, 16#0921#, 16#093C#, 16#0922#, 16#093C#, 16#092B#, 16#093C#, 16#092F#, 16#093C#, 16#09C7#, 16#09BE#, 16#09C7#, 16#09D7#, 16#09A1#, 16#09BC#, 16#09A2#, 16#09BC#, 16#09AF#, 16#09BC#, 16#0A32#, 16#0A3C#, 16#0A38#, 16#0A3C#, 16#0A16#, 16#0A3C#, 16#0A17#, 16#0A3C#, 16#0A1C#, 16#0A3C#, 16#0A2B#, 16#0A3C#, 16#0B47#, 16#0B56#, 16#0B47#, 16#0B3E#, 16#0B47#, 16#0B57#, 16#0B21#, 16#0B3C#, 16#0B22#, 16#0B3C#, 16#0B92#, 16#0BD7#, 16#0BC6#, 16#0BBE#, 16#0BC7#, 16#0BBE#, 16#0BC6#, 16#0BD7#, 16#0C46#, 16#0C56#, 16#0CBF#, 16#0CD5#, 16#0CC6#, 16#0CD5#, 16#0CC6#, 16#0CD6#, 16#0CC6#, 16#0CC2#, 16#0CCA#, 16#0CD5#, 16#0D46#, 16#0D3E#, 16#0D47#, 16#0D3E#, 16#0D46#, 16#0D57#, 16#0DD9#, 16#0DCA#, 16#0DD9#, 16#0DCF#, 16#0DDC#, 16#0DCA#, 16#0DD9#, 16#0DDF#, 16#0F42#, 16#0FB7#, 16#0F4C#, 16#0FB7#, 16#0F51#, 16#0FB7#, 16#0F56#, 16#0FB7#, 16#0F5B#, 16#0FB7#, 16#0F40#, 16#0FB5#, 16#0F71#, 16#0F72#, 16#0F71#, 16#0F74#, 16#0FB2#, 16#0F80#, 16#0FB3#, 16#0F80#, 16#0F71#, 16#0F80#, 16#0F92#, 16#0FB7#, 16#0F9C#, 16#0FB7#, 16#0FA1#, 16#0FB7#, 16#0FA6#, 16#0FB7#, 16#0FAB#, 16#0FB7#, 16#0F90#, 16#0FB5#, 16#1025#, 16#102E#, 16#0041#, 16#0325#, 16#0061#, 16#0325#, 16#0042#, 16#0307#, 16#0062#, 16#0307#, 16#0042#, 16#0323#, 16#0062#, 16#0323#, 16#0042#, 16#0331#, 16#0062#, 16#0331#, 16#00C7#, 16#0301#, 16#00E7#, 16#0301#, 16#0044#, 16#0307#, 16#0064#, 16#0307#, 16#0044#, 16#0323#, 16#0064#, 16#0323#, 16#0044#, 16#0331#, 16#0064#, 16#0331#, 16#0044#, 16#0327#, 16#0064#, 16#0327#, 16#0044#, 16#032D#, 16#0064#, 16#032D#, 16#0112#, 16#0300#, 16#0113#, 16#0300#, 16#0112#, 16#0301#, 16#0113#, 16#0301#, 16#0045#, 16#032D#, 16#0065#, 16#032D#, 16#0045#, 16#0330#, 16#0065#, 16#0330#, 16#0228#, 16#0306#, 16#0229#, 16#0306#, 16#0046#, 16#0307#, 16#0066#, 16#0307#, 16#0047#, 16#0304#, 16#0067#, 16#0304#, 16#0048#, 16#0307#, 16#0068#, 16#0307#, 16#0048#, 16#0323#, 16#0068#, 16#0323#, 16#0048#, 16#0308#, 16#0068#, 16#0308#, 16#0048#, 16#0327#, 16#0068#, 16#0327#, 16#0048#, 16#032E#, 16#0068#, 16#032E#, 16#0049#, 16#0330#, 16#0069#, 16#0330#, 16#00CF#, 16#0301#, 16#00EF#, 16#0301#, 16#004B#, 16#0301#, 16#006B#, 16#0301#, 16#004B#, 16#0323#, 16#006B#, 16#0323#, 16#004B#, 16#0331#, 16#006B#, 16#0331#, 16#004C#, 16#0323#, 16#006C#, 16#0323#, 16#1E36#, 16#0304#, 16#1E37#, 16#0304#, 16#004C#, 16#0331#, 16#006C#, 16#0331#, 16#004C#, 16#032D#, 16#006C#, 16#032D#, 16#004D#, 16#0301#, 16#006D#, 16#0301#, 16#004D#, 16#0307#, 16#006D#, 16#0307#, 16#004D#, 16#0323#, 16#006D#, 16#0323#, 16#004E#, 16#0307#, 16#006E#, 16#0307#, 16#004E#, 16#0323#, 16#006E#, 16#0323#, 16#004E#, 16#0331#, 16#006E#, 16#0331#, 16#004E#, 16#032D#, 16#006E#, 16#032D#, 16#00D5#, 16#0301#, 16#00F5#, 16#0301#, 16#00D5#, 16#0308#, 16#00F5#, 16#0308#, 16#014C#, 16#0300#, 16#014D#, 16#0300#, 16#014C#, 16#0301#, 16#014D#, 16#0301#, 16#0050#, 16#0301#, 16#0070#, 16#0301#, 16#0050#, 16#0307#, 16#0070#, 16#0307#, 16#0052#, 16#0307#, 16#0072#, 16#0307#, 16#0052#, 16#0323#, 16#0072#, 16#0323#, 16#1E5A#, 16#0304#, 16#1E5B#, 16#0304#, 16#0052#, 16#0331#, 16#0072#, 16#0331#, 16#0053#, 16#0307#, 16#0073#, 16#0307#, 16#0053#, 16#0323#, 16#0073#, 16#0323#, 16#015A#, 16#0307#, 16#015B#, 16#0307#, 16#0160#, 16#0307#, 16#0161#, 16#0307#, 16#1E62#, 16#0307#, 16#1E63#, 16#0307#, 16#0054#, 16#0307#, 16#0074#, 16#0307#, 16#0054#, 16#0323#, 16#0074#, 16#0323#, 16#0054#, 16#0331#, 16#0074#, 16#0331#, 16#0054#, 16#032D#, 16#0074#, 16#032D#, 16#0055#, 16#0324#, 16#0075#, 16#0324#, 16#0055#, 16#0330#, 16#0075#, 16#0330#, 16#0055#, 16#032D#, 16#0075#, 16#032D#, 16#0168#, 16#0301#, 16#0169#, 16#0301#, 16#016A#, 16#0308#, 16#016B#, 16#0308#, 16#0056#, 16#0303#, 16#0076#, 16#0303#, 16#0056#, 16#0323#, 16#0076#, 16#0323#, 16#0057#, 16#0300#, 16#0077#, 16#0300#, 16#0057#, 16#0301#, 16#0077#, 16#0301#, 16#0057#, 16#0308#, 16#0077#, 16#0308#, 16#0057#, 16#0307#, 16#0077#, 16#0307#, 16#0057#, 16#0323#, 16#0077#, 16#0323#, 16#0058#, 16#0307#, 16#0078#, 16#0307#, 16#0058#, 16#0308#, 16#0078#, 16#0308#, 16#0059#, 16#0307#, 16#0079#, 16#0307#, 16#005A#, 16#0302#, 16#007A#, 16#0302#, 16#005A#, 16#0323#, 16#007A#, 16#0323#, 16#005A#, 16#0331#, 16#007A#, 16#0331#, 16#0068#, 16#0331#, 16#0074#, 16#0308#, 16#0077#, 16#030A#, 16#0079#, 16#030A#, 16#017F#, 16#0307#, 16#0041#, 16#0323#, 16#0061#, 16#0323#, 16#0041#, 16#0309#, 16#0061#, 16#0309#, 16#00C2#, 16#0301#, 16#00E2#, 16#0301#, 16#00C2#, 16#0300#, 16#00E2#, 16#0300#, 16#00C2#, 16#0309#, 16#00E2#, 16#0309#, 16#00C2#, 16#0303#, 16#00E2#, 16#0303#, 16#1EA0#, 16#0302#, 16#1EA1#, 16#0302#, 16#0102#, 16#0301#, 16#0103#, 16#0301#, 16#0102#, 16#0300#, 16#0103#, 16#0300#, 16#0102#, 16#0309#, 16#0103#, 16#0309#, 16#0102#, 16#0303#, 16#0103#, 16#0303#, 16#1EA0#, 16#0306#, 16#1EA1#, 16#0306#, 16#0045#, 16#0323#, 16#0065#, 16#0323#, 16#0045#, 16#0309#, 16#0065#, 16#0309#, 16#0045#, 16#0303#, 16#0065#, 16#0303#, 16#00CA#, 16#0301#, 16#00EA#, 16#0301#, 16#00CA#, 16#0300#, 16#00EA#, 16#0300#, 16#00CA#, 16#0309#, 16#00EA#, 16#0309#, 16#00CA#, 16#0303#, 16#00EA#, 16#0303#, 16#1EB8#, 16#0302#, 16#1EB9#, 16#0302#, 16#0049#, 16#0309#, 16#0069#, 16#0309#, 16#0049#, 16#0323#, 16#0069#, 16#0323#, 16#004F#, 16#0323#, 16#006F#, 16#0323#, 16#004F#, 16#0309#, 16#006F#, 16#0309#, 16#00D4#, 16#0301#, 16#00F4#, 16#0301#, 16#00D4#, 16#0300#, 16#00F4#, 16#0300#, 16#00D4#, 16#0309#, 16#00F4#, 16#0309#, 16#00D4#, 16#0303#, 16#00F4#, 16#0303#, 16#1ECC#, 16#0302#, 16#1ECD#, 16#0302#, 16#01A0#, 16#0301#, 16#01A1#, 16#0301#, 16#01A0#, 16#0300#, 16#01A1#, 16#0300#, 16#01A0#, 16#0309#, 16#01A1#, 16#0309#, 16#01A0#, 16#0303#, 16#01A1#, 16#0303#, 16#01A0#, 16#0323#, 16#01A1#, 16#0323#, 16#0055#, 16#0323#, 16#0075#, 16#0323#, 16#0055#, 16#0309#, 16#0075#, 16#0309#, 16#01AF#, 16#0301#, 16#01B0#, 16#0301#, 16#01AF#, 16#0300#, 16#01B0#, 16#0300#, 16#01AF#, 16#0309#, 16#01B0#, 16#0309#, 16#01AF#, 16#0303#, 16#01B0#, 16#0303#, 16#01AF#, 16#0323#, 16#01B0#, 16#0323#, 16#0059#, 16#0300#, 16#0079#, 16#0300#, 16#0059#, 16#0323#, 16#0079#, 16#0323#, 16#0059#, 16#0309#, 16#0079#, 16#0309#, 16#0059#, 16#0303#, 16#0079#, 16#0303#, 16#03B1#, 16#0313#, 16#03B1#, 16#0314#, 16#1F00#, 16#0300#, 16#1F01#, 16#0300#, 16#1F00#, 16#0301#, 16#1F01#, 16#0301#, 16#1F00#, 16#0342#, 16#1F01#, 16#0342#, 16#0391#, 16#0313#, 16#0391#, 16#0314#, 16#1F08#, 16#0300#, 16#1F09#, 16#0300#, 16#1F08#, 16#0301#, 16#1F09#, 16#0301#, 16#1F08#, 16#0342#, 16#1F09#, 16#0342#, 16#03B5#, 16#0313#, 16#03B5#, 16#0314#, 16#1F10#, 16#0300#, 16#1F11#, 16#0300#, 16#1F10#, 16#0301#, 16#1F11#, 16#0301#, 16#0395#, 16#0313#, 16#0395#, 16#0314#, 16#1F18#, 16#0300#, 16#1F19#, 16#0300#, 16#1F18#, 16#0301#, 16#1F19#, 16#0301#, 16#03B7#, 16#0313#, 16#03B7#, 16#0314#, 16#1F20#, 16#0300#, 16#1F21#, 16#0300#, 16#1F20#, 16#0301#, 16#1F21#, 16#0301#, 16#1F20#, 16#0342#, 16#1F21#, 16#0342#, 16#0397#, 16#0313#, 16#0397#, 16#0314#, 16#1F28#, 16#0300#, 16#1F29#, 16#0300#, 16#1F28#, 16#0301#, 16#1F29#, 16#0301#, 16#1F28#, 16#0342#, 16#1F29#, 16#0342#, 16#03B9#, 16#0313#, 16#03B9#, 16#0314#, 16#1F30#, 16#0300#, 16#1F31#, 16#0300#, 16#1F30#, 16#0301#, 16#1F31#, 16#0301#, 16#1F30#, 16#0342#, 16#1F31#, 16#0342#, 16#0399#, 16#0313#, 16#0399#, 16#0314#, 16#1F38#, 16#0300#, 16#1F39#, 16#0300#, 16#1F38#, 16#0301#, 16#1F39#, 16#0301#, 16#1F38#, 16#0342#, 16#1F39#, 16#0342#, 16#03BF#, 16#0313#, 16#03BF#, 16#0314#, 16#1F40#, 16#0300#, 16#1F41#, 16#0300#, 16#1F40#, 16#0301#, 16#1F41#, 16#0301#, 16#039F#, 16#0313#, 16#039F#, 16#0314#, 16#1F48#, 16#0300#, 16#1F49#, 16#0300#, 16#1F48#, 16#0301#, 16#1F49#, 16#0301#, 16#03C5#, 16#0313#, 16#03C5#, 16#0314#, 16#1F50#, 16#0300#, 16#1F51#, 16#0300#, 16#1F50#, 16#0301#, 16#1F51#, 16#0301#, 16#1F50#, 16#0342#, 16#1F51#, 16#0342#, 16#03A5#, 16#0314#, 16#1F59#, 16#0300#, 16#1F59#, 16#0301#, 16#1F59#, 16#0342#, 16#03C9#, 16#0313#, 16#03C9#, 16#0314#, 16#1F60#, 16#0300#, 16#1F61#, 16#0300#, 16#1F60#, 16#0301#, 16#1F61#, 16#0301#, 16#1F60#, 16#0342#, 16#1F61#, 16#0342#, 16#03A9#, 16#0313#, 16#03A9#, 16#0314#, 16#1F68#, 16#0300#, 16#1F69#, 16#0300#, 16#1F68#, 16#0301#, 16#1F69#, 16#0301#, 16#1F68#, 16#0342#, 16#1F69#, 16#0342#, 16#03B1#, 16#0300#, 16#03B5#, 16#0300#, 16#03B7#, 16#0300#, 16#03B9#, 16#0300#, 16#03BF#, 16#0300#, 16#03C5#, 16#0300#, 16#03C9#, 16#0300#, 16#1F00#, 16#0345#, 16#1F01#, 16#0345#, 16#1F02#, 16#0345#, 16#1F03#, 16#0345#, 16#1F04#, 16#0345#, 16#1F05#, 16#0345#, 16#1F06#, 16#0345#, 16#1F07#, 16#0345#, 16#1F08#, 16#0345#, 16#1F09#, 16#0345#, 16#1F0A#, 16#0345#, 16#1F0B#, 16#0345#, 16#1F0C#, 16#0345#, 16#1F0D#, 16#0345#, 16#1F0E#, 16#0345#, 16#1F0F#, 16#0345#, 16#1F20#, 16#0345#, 16#1F21#, 16#0345#, 16#1F22#, 16#0345#, 16#1F23#, 16#0345#, 16#1F24#, 16#0345#, 16#1F25#, 16#0345#, 16#1F26#, 16#0345#, 16#1F27#, 16#0345#, 16#1F28#, 16#0345#, 16#1F29#, 16#0345#, 16#1F2A#, 16#0345#, 16#1F2B#, 16#0345#, 16#1F2C#, 16#0345#, 16#1F2D#, 16#0345#, 16#1F2E#, 16#0345#, 16#1F2F#, 16#0345#, 16#1F60#, 16#0345#, 16#1F61#, 16#0345#, 16#1F62#, 16#0345#, 16#1F63#, 16#0345#, 16#1F64#, 16#0345#, 16#1F65#, 16#0345#, 16#1F66#, 16#0345#, 16#1F67#, 16#0345#, 16#1F68#, 16#0345#, 16#1F69#, 16#0345#, 16#1F6A#, 16#0345#, 16#1F6B#, 16#0345#, 16#1F6C#, 16#0345#, 16#1F6D#, 16#0345#, 16#1F6E#, 16#0345#, 16#1F6F#, 16#0345#, 16#03B1#, 16#0306#, 16#03B1#, 16#0304#, 16#1F70#, 16#0345#, 16#03B1#, 16#0345#, 16#03AC#, 16#0345#, 16#03B1#, 16#0342#, 16#1FB6#, 16#0345#, 16#0391#, 16#0306#, 16#0391#, 16#0304#, 16#0391#, 16#0300#, 16#0391#, 16#0345#, 16#00A8#, 16#0342#, 16#1F74#, 16#0345#, 16#03B7#, 16#0345#, 16#03AE#, 16#0345#, 16#03B7#, 16#0342#, 16#1FC6#, 16#0345#, 16#0395#, 16#0300#, 16#0397#, 16#0300#, 16#0397#, 16#0345#, 16#1FBF#, 16#0300#, 16#1FBF#, 16#0301#, 16#1FBF#, 16#0342#, 16#03B9#, 16#0306#, 16#03B9#, 16#0304#, 16#03CA#, 16#0300#, 16#03B9#, 16#0342#, 16#03CA#, 16#0342#, 16#0399#, 16#0306#, 16#0399#, 16#0304#, 16#0399#, 16#0300#, 16#1FFE#, 16#0300#, 16#1FFE#, 16#0301#, 16#1FFE#, 16#0342#, 16#03C5#, 16#0306#, 16#03C5#, 16#0304#, 16#03CB#, 16#0300#, 16#03C1#, 16#0313#, 16#03C1#, 16#0314#, 16#03C5#, 16#0342#, 16#03CB#, 16#0342#, 16#03A5#, 16#0306#, 16#03A5#, 16#0304#, 16#03A5#, 16#0300#, 16#03A1#, 16#0314#, 16#00A8#, 16#0300#, 16#1F7C#, 16#0345#, 16#03C9#, 16#0345#, 16#03CE#, 16#0345#, 16#03C9#, 16#0342#, 16#1FF6#, 16#0345#, 16#039F#, 16#0300#, 16#03A9#, 16#0300#, 16#03A9#, 16#0345#, 16#304B#, 16#3099#, 16#304D#, 16#3099#, 16#304F#, 16#3099#, 16#3051#, 16#3099#, 16#3053#, 16#3099#, 16#3055#, 16#3099#, 16#3057#, 16#3099#, 16#3059#, 16#3099#, 16#305B#, 16#3099#, 16#305D#, 16#3099#, 16#305F#, 16#3099#, 16#3061#, 16#3099#, 16#3064#, 16#3099#, 16#3066#, 16#3099#, 16#3068#, 16#3099#, 16#306F#, 16#3099#, 16#306F#, 16#309A#, 16#3072#, 16#3099#, 16#3072#, 16#309A#, 16#3075#, 16#3099#, 16#3075#, 16#309A#, 16#3078#, 16#3099#, 16#3078#, 16#309A#, 16#307B#, 16#3099#, 16#307B#, 16#309A#, 16#3046#, 16#3099#, 16#309D#, 16#3099#, 16#30AB#, 16#3099#, 16#30AD#, 16#3099#, 16#30AF#, 16#3099#, 16#30B1#, 16#3099#, 16#30B3#, 16#3099#, 16#30B5#, 16#3099#, 16#30B7#, 16#3099#, 16#30B9#, 16#3099#, 16#30BB#, 16#3099#, 16#30BD#, 16#3099#, 16#30BF#, 16#3099#, 16#30C1#, 16#3099#, 16#30C4#, 16#3099#, 16#30C6#, 16#3099#, 16#30C8#, 16#3099#, 16#30CF#, 16#3099#, 16#30CF#, 16#309A#, 16#30D2#, 16#3099#, 16#30D2#, 16#309A#, 16#30D5#, 16#3099#, 16#30D5#, 16#309A#, 16#30D8#, 16#3099#, 16#30D8#, 16#309A#, 16#30DB#, 16#3099#, 16#30DB#, 16#309A#, 16#30A6#, 16#3099#, 16#30EF#, 16#3099#, 16#30F0#, 16#3099#, 16#30F1#, 16#3099#, 16#30F2#, 16#3099#, 16#30FD#, 16#3099#, 16#05D9#, 16#05B4#, 16#05F2#, 16#05B7#, 16#05E9#, 16#05C1#, 16#05E9#, 16#05C2#, 16#FB49#, 16#05C1#, 16#FB49#, 16#05C2#, 16#05D0#, 16#05B7#, 16#05D0#, 16#05B8#, 16#05D0#, 16#05BC#, 16#05D1#, 16#05BC#, 16#05D2#, 16#05BC#, 16#05D3#, 16#05BC#, 16#05D4#, 16#05BC#, 16#05D5#, 16#05BC#, 16#05D6#, 16#05BC#, 16#05D8#, 16#05BC#, 16#05D9#, 16#05BC#, 16#05DA#, 16#05BC#, 16#05DB#, 16#05BC#, 16#05DC#, 16#05BC#, 16#05DE#, 16#05BC#, 16#05E0#, 16#05BC#, 16#05E1#, 16#05BC#, 16#05E3#, 16#05BC#, 16#05E4#, 16#05BC#, 16#05E6#, 16#05BC#, 16#05E7#, 16#05BC#, 16#05E8#, 16#05BC#, 16#05E9#, 16#05BC#, 16#05EA#, 16#05BC#, 16#05D5#, 16#05B9#, 16#05D1#, 16#05BF#, 16#05DB#, 16#05BF#, 16#05E4#, 16#05BF#); CFUniCharDecomposableBitmap : constant u_int8_t_array (0 .. 831) := ( 16#01#, 16#02#, 16#03#, 16#04#, 16#05#, 16#00#, 16#06#, 16#00#, 16#00#, 16#07#, 16#08#, 16#09#, 16#0A#, 16#0B#, 16#00#, 16#0C#, 16#0D#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#11#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#12#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#BF#, 16#FF#, 16#7E#, 16#3E#, 16#BF#, 16#FF#, 16#7E#, 16#BE#, 16#FF#, 16#FF#, 16#FC#, 16#FF#, 16#3F#, 16#FF#, 16#F1#, 16#7E#, 16#F8#, 16#F1#, 16#F3#, 16#FF#, 16#3F#, 16#FF#, 16#FF#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#80#, 16#01#, 16#00#, 16#00#, 16#E0#, 16#FF#, 16#DF#, 16#CF#, 16#FF#, 16#31#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#CF#, 16#C0#, 16#FF#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1B#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#40#, 16#E0#, 16#D7#, 16#01#, 16#00#, 16#00#, 16#FC#, 16#01#, 16#00#, 16#00#, 16#7C#, 16#18#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#8B#, 16#70#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#8B#, 16#70#, 16#00#, 16#00#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#CF#, 16#FC#, 16#FC#, 16#FC#, 16#3F#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#05#, 16#00#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#12#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#18#, 16#00#, 16#B0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#48#, 16#00#, 16#00#, 16#00#, 16#00#, 16#4E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#19#, 16#00#, 16#30#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#81#, 16#0D#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#74#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#08#, 16#20#, 16#84#, 16#10#, 16#00#, 16#02#, 16#68#, 16#01#, 16#02#, 16#00#, 16#08#, 16#20#, 16#84#, 16#10#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#0B#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#03#, 16#FF#, 16#FF#, 16#3F#, 16#3F#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#3F#, 16#3F#, 16#FF#, 16#AA#, 16#FF#, 16#FF#, 16#FF#, 16#3F#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#DF#, 16#5F#, 16#DE#, 16#FF#, 16#CF#, 16#EF#, 16#FF#, 16#FF#, 16#DC#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#50#, 16#55#, 16#55#, 16#A5#, 16#02#, 16#DB#, 16#36#, 16#00#, 16#00#, 16#10#, 16#40#, 16#00#, 16#50#, 16#55#, 16#55#, 16#A5#, 16#02#, 16#DB#, 16#36#, 16#00#, 16#00#, 16#90#, 16#47#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#A0#, 16#00#, 16#FC#, 16#7F#, 16#5F#, 16#DB#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#); -- CFUniCharPrecompSourceTable : constant u_int32_t_array := ( -- 16#00000300#, 16#00540000#, 16#00000301#, 16#00750054#, -- 16#00000302#, 16#002000C9#, 16#00000303#, 16#001C00E9#, -- 16#00000304#, 16#002C0105#, 16#00000306#, 16#00200131#, -- 16#00000307#, 16#002E0151#, 16#00000308#, 16#0036017F#, -- 16#00000309#, 16#001801B5#, 16#0000030A#, 16#000601CD#, -- 16#0000030B#, 16#000601D3#, 16#0000030C#, 16#002501D9#, -- 16#0000030F#, 16#000E01FE#, 16#00000311#, 16#000C020C#, -- 16#00000313#, 16#000E0218#, 16#00000314#, 16#00100226#, -- 16#0000031B#, 16#00040236#, 16#00000323#, 16#002A023A#, -- 16#00000324#, 16#00020264#, 16#00000325#, 16#00020266#, -- 16#00000326#, 16#00040268#, 16#00000327#, 16#0016026C#, -- 16#00000328#, 16#000A0282#, 16#0000032D#, 16#000C028C#, -- 16#0000032E#, 16#00020298#, 16#00000330#, 16#0006029A#, -- 16#00000331#, 16#001102A0#, 16#00000338#, 16#002C02B1#, -- 16#00000342#, 16#001D02DD#, 16#00000345#, 16#003F02FA#, -- 16#00000653#, 16#00010339#, 16#00000654#, 16#0006033A#, -- 16#00000655#, 16#00010340#, 16#0000093C#, 16#00030341#, -- 16#000009BE#, 16#00010344#, 16#000009D7#, 16#00010345#, -- 16#00000B3E#, 16#00010346#, 16#00000B56#, 16#00010347#, -- 16#00000B57#, 16#00010348#, 16#00000BBE#, 16#00020349#, -- 16#00000BD7#, 16#0002034B#, 16#00000C56#, 16#0001034D#, -- 16#00000CC2#, 16#0001034E#, 16#00000CD5#, 16#0003034F#, -- 16#00000CD6#, 16#00010352#, 16#00000D3E#, 16#00020353#, -- 16#00000D57#, 16#00010355#, 16#00000DCA#, 16#00020356#, -- 16#00000DCF#, 16#00010358#, 16#00000DDF#, 16#00010359#, -- 16#0000102E#, 16#0001035A#, 16#00003099#, 16#0030035B#, -- 16#0000309A#, 16#000A038B#); -- CFUniCharPrecompositionTableLength : constant u_int32_t := -- CFUniCharPrecompSourceTable'Length / 2; -- CFUniCharBMPPrecompDestinationTable : constant u_int16_t_array := ( -- 16#0041#, 16#00C0#, 16#0045#, 16#00C8#, -- 16#0049#, 16#00CC#, 16#004E#, 16#01F8#, -- 16#004F#, 16#00D2#, 16#0055#, 16#00D9#, -- 16#0057#, 16#1E80#, 16#0059#, 16#1EF2#, -- 16#0061#, 16#00E0#, 16#0065#, 16#00E8#, -- 16#0069#, 16#00EC#, 16#006E#, 16#01F9#, -- 16#006F#, 16#00F2#, 16#0075#, 16#00F9#, -- 16#0077#, 16#1E81#, 16#0079#, 16#1EF3#, -- 16#00A8#, 16#1FED#, 16#00C2#, 16#1EA6#, -- 16#00CA#, 16#1EC0#, 16#00D4#, 16#1ED2#, -- 16#00DC#, 16#01DB#, 16#00E2#, 16#1EA7#, -- 16#00EA#, 16#1EC1#, 16#00F4#, 16#1ED3#, -- 16#00FC#, 16#01DC#, 16#0102#, 16#1EB0#, -- 16#0103#, 16#1EB1#, 16#0112#, 16#1E14#, -- 16#0113#, 16#1E15#, 16#014C#, 16#1E50#, -- 16#014D#, 16#1E51#, 16#01A0#, 16#1EDC#, -- 16#01A1#, 16#1EDD#, 16#01AF#, 16#1EEA#, -- 16#01B0#, 16#1EEB#, 16#0391#, 16#1FBA#, -- 16#0395#, 16#1FC8#, 16#0397#, 16#1FCA#, -- 16#0399#, 16#1FDA#, 16#039F#, 16#1FF8#, -- 16#03A5#, 16#1FEA#, 16#03A9#, 16#1FFA#, -- 16#03B1#, 16#1F70#, 16#03B5#, 16#1F72#, -- 16#03B7#, 16#1F74#, 16#03B9#, 16#1F76#, -- 16#03BF#, 16#1F78#, 16#03C5#, 16#1F7A#, -- 16#03C9#, 16#1F7C#, 16#03CA#, 16#1FD2#, -- 16#03CB#, 16#1FE2#, 16#0415#, 16#0400#, -- 16#0418#, 16#040D#, 16#0435#, 16#0450#, -- 16#0438#, 16#045D#, 16#1F00#, 16#1F02#, -- 16#1F01#, 16#1F03#, 16#1F08#, 16#1F0A#, -- 16#1F09#, 16#1F0B#, 16#1F10#, 16#1F12#, -- 16#1F11#, 16#1F13#, 16#1F18#, 16#1F1A#, -- 16#1F19#, 16#1F1B#, 16#1F20#, 16#1F22#, -- 16#1F21#, 16#1F23#, 16#1F28#, 16#1F2A#, -- 16#1F29#, 16#1F2B#, 16#1F30#, 16#1F32#, -- 16#1F31#, 16#1F33#, 16#1F38#, 16#1F3A#, -- 16#1F39#, 16#1F3B#, 16#1F40#, 16#1F42#, -- 16#1F41#, 16#1F43#, 16#1F48#, 16#1F4A#, -- 16#1F49#, 16#1F4B#, 16#1F50#, 16#1F52#, -- 16#1F51#, 16#1F53#, 16#1F59#, 16#1F5B#, -- 16#1F60#, 16#1F62#, 16#1F61#, 16#1F63#, -- 16#1F68#, 16#1F6A#, 16#1F69#, 16#1F6B#, -- 16#1FBF#, 16#1FCD#, 16#1FFE#, 16#1FDD#, -- 16#0041#, 16#00C1#, 16#0043#, 16#0106#, -- 16#0045#, 16#00C9#, 16#0047#, 16#01F4#, -- 16#0049#, 16#00CD#, 16#004B#, 16#1E30#, -- 16#004C#, 16#0139#, 16#004D#, 16#1E3E#, -- 16#004E#, 16#0143#, 16#004F#, 16#00D3#, -- 16#0050#, 16#1E54#, 16#0052#, 16#0154#, -- 16#0053#, 16#015A#, 16#0055#, 16#00DA#, -- 16#0057#, 16#1E82#, 16#0059#, 16#00DD#, -- 16#005A#, 16#0179#, 16#0061#, 16#00E1#, -- 16#0063#, 16#0107#, 16#0065#, 16#00E9#, -- 16#0067#, 16#01F5#, 16#0069#, 16#00ED#, -- 16#006B#, 16#1E31#, 16#006C#, 16#013A#, -- 16#006D#, 16#1E3F#, 16#006E#, 16#0144#, -- 16#006F#, 16#00F3#, 16#0070#, 16#1E55#, -- 16#0072#, 16#0155#, 16#0073#, 16#015B#, -- 16#0075#, 16#00FA#, 16#0077#, 16#1E83#, -- 16#0079#, 16#00FD#, 16#007A#, 16#017A#, -- 16#00A8#, 16#0385#, 16#00C2#, 16#1EA4#, -- 16#00C5#, 16#01FA#, 16#00C6#, 16#01FC#, -- 16#00C7#, 16#1E08#, 16#00CA#, 16#1EBE#, -- 16#00CF#, 16#1E2E#, 16#00D4#, 16#1ED0#, -- 16#00D5#, 16#1E4C#, 16#00D8#, 16#01FE#, -- 16#00DC#, 16#01D7#, 16#00E2#, 16#1EA5#, -- 16#00E5#, 16#01FB#, 16#00E6#, 16#01FD#, -- 16#00E7#, 16#1E09#, 16#00EA#, 16#1EBF#, -- 16#00EF#, 16#1E2F#, 16#00F4#, 16#1ED1#, -- 16#00F5#, 16#1E4D#, 16#00F8#, 16#01FF#, -- 16#00FC#, 16#01D8#, 16#0102#, 16#1EAE#, -- 16#0103#, 16#1EAF#, 16#0112#, 16#1E16#, -- 16#0113#, 16#1E17#, 16#014C#, 16#1E52#, -- 16#014D#, 16#1E53#, 16#0168#, 16#1E78#, -- 16#0169#, 16#1E79#, 16#01A0#, 16#1EDA#, -- 16#01A1#, 16#1EDB#, 16#01AF#, 16#1EE8#, -- 16#01B0#, 16#1EE9#, 16#0391#, 16#0386#, -- 16#0395#, 16#0388#, 16#0397#, 16#0389#, -- 16#0399#, 16#038A#, 16#039F#, 16#038C#, -- 16#03A5#, 16#038E#, 16#03A9#, 16#038F#, -- 16#03B1#, 16#03AC#, 16#03B5#, 16#03AD#, -- 16#03B7#, 16#03AE#, 16#03B9#, 16#03AF#, -- 16#03BF#, 16#03CC#, 16#03C5#, 16#03CD#, -- 16#03C9#, 16#03CE#, 16#03CA#, 16#0390#, -- 16#03CB#, 16#03B0#, 16#03D2#, 16#03D3#, -- 16#0413#, 16#0403#, 16#041A#, 16#040C#, -- 16#0433#, 16#0453#, 16#043A#, 16#045C#, -- 16#1F00#, 16#1F04#, 16#1F01#, 16#1F05#, -- 16#1F08#, 16#1F0C#, 16#1F09#, 16#1F0D#, -- 16#1F10#, 16#1F14#, 16#1F11#, 16#1F15#, -- 16#1F18#, 16#1F1C#, 16#1F19#, 16#1F1D#, -- 16#1F20#, 16#1F24#, 16#1F21#, 16#1F25#, -- 16#1F28#, 16#1F2C#, 16#1F29#, 16#1F2D#, -- 16#1F30#, 16#1F34#, 16#1F31#, 16#1F35#, -- 16#1F38#, 16#1F3C#, 16#1F39#, 16#1F3D#, -- 16#1F40#, 16#1F44#, 16#1F41#, 16#1F45#, -- 16#1F48#, 16#1F4C#, 16#1F49#, 16#1F4D#, -- 16#1F50#, 16#1F54#, 16#1F51#, 16#1F55#, -- 16#1F59#, 16#1F5D#, 16#1F60#, 16#1F64#, -- 16#1F61#, 16#1F65#, 16#1F68#, 16#1F6C#, -- 16#1F69#, 16#1F6D#, 16#1FBF#, 16#1FCE#, -- 16#1FFE#, 16#1FDE#, 16#0041#, 16#00C2#, -- 16#0043#, 16#0108#, 16#0045#, 16#00CA#, -- 16#0047#, 16#011C#, 16#0048#, 16#0124#, -- 16#0049#, 16#00CE#, 16#004A#, 16#0134#, -- 16#004F#, 16#00D4#, 16#0053#, 16#015C#, -- 16#0055#, 16#00DB#, 16#0057#, 16#0174#, -- 16#0059#, 16#0176#, 16#005A#, 16#1E90#, -- 16#0061#, 16#00E2#, 16#0063#, 16#0109#, -- 16#0065#, 16#00EA#, 16#0067#, 16#011D#, -- 16#0068#, 16#0125#, 16#0069#, 16#00EE#, -- 16#006A#, 16#0135#, 16#006F#, 16#00F4#, -- 16#0073#, 16#015D#, 16#0075#, 16#00FB#, -- 16#0077#, 16#0175#, 16#0079#, 16#0177#, -- 16#007A#, 16#1E91#, 16#1EA0#, 16#1EAC#, -- 16#1EA1#, 16#1EAD#, 16#1EB8#, 16#1EC6#, -- 16#1EB9#, 16#1EC7#, 16#1ECC#, 16#1ED8#, -- 16#1ECD#, 16#1ED9#, 16#0041#, 16#00C3#, -- 16#0045#, 16#1EBC#, 16#0049#, 16#0128#, -- 16#004E#, 16#00D1#, 16#004F#, 16#00D5#, -- 16#0055#, 16#0168#, 16#0056#, 16#1E7C#, -- 16#0059#, 16#1EF8#, 16#0061#, 16#00E3#, -- 16#0065#, 16#1EBD#, 16#0069#, 16#0129#, -- 16#006E#, 16#00F1#, 16#006F#, 16#00F5#, -- 16#0075#, 16#0169#, 16#0076#, 16#1E7D#, -- 16#0079#, 16#1EF9#, 16#00C2#, 16#1EAA#, -- 16#00CA#, 16#1EC4#, 16#00D4#, 16#1ED6#, -- 16#00E2#, 16#1EAB#, 16#00EA#, 16#1EC5#, -- 16#00F4#, 16#1ED7#, 16#0102#, 16#1EB4#, -- 16#0103#, 16#1EB5#, 16#01A0#, 16#1EE0#, -- 16#01A1#, 16#1EE1#, 16#01AF#, 16#1EEE#, -- 16#01B0#, 16#1EEF#, 16#0041#, 16#0100#, -- 16#0045#, 16#0112#, 16#0047#, 16#1E20#, -- 16#0049#, 16#012A#, 16#004F#, 16#014C#, -- 16#0055#, 16#016A#, 16#0059#, 16#0232#, -- 16#0061#, 16#0101#, 16#0065#, 16#0113#, -- 16#0067#, 16#1E21#, 16#0069#, 16#012B#, -- 16#006F#, 16#014D#, 16#0075#, 16#016B#, -- 16#0079#, 16#0233#, 16#00C4#, 16#01DE#, -- 16#00C6#, 16#01E2#, 16#00D5#, 16#022C#, -- 16#00D6#, 16#022A#, 16#00DC#, 16#01D5#, -- 16#00E4#, 16#01DF#, 16#00E6#, 16#01E3#, -- 16#00F5#, 16#022D#, 16#00F6#, 16#022B#, -- 16#00FC#, 16#01D6#, 16#01EA#, 16#01EC#, -- 16#01EB#, 16#01ED#, 16#0226#, 16#01E0#, -- 16#0227#, 16#01E1#, 16#022E#, 16#0230#, -- 16#022F#, 16#0231#, 16#0391#, 16#1FB9#, -- 16#0399#, 16#1FD9#, 16#03A5#, 16#1FE9#, -- 16#03B1#, 16#1FB1#, 16#03B9#, 16#1FD1#, -- 16#03C5#, 16#1FE1#, 16#0418#, 16#04E2#, -- 16#0423#, 16#04EE#, 16#0438#, 16#04E3#, -- 16#0443#, 16#04EF#, 16#1E36#, 16#1E38#, -- 16#1E37#, 16#1E39#, 16#1E5A#, 16#1E5C#, -- 16#1E5B#, 16#1E5D#, 16#0041#, 16#0102#, -- 16#0045#, 16#0114#, 16#0047#, 16#011E#, -- 16#0049#, 16#012C#, 16#004F#, 16#014E#, -- 16#0055#, 16#016C#, 16#0061#, 16#0103#, -- 16#0065#, 16#0115#, 16#0067#, 16#011F#, -- 16#0069#, 16#012D#, 16#006F#, 16#014F#, -- 16#0075#, 16#016D#, 16#0228#, 16#1E1C#, -- 16#0229#, 16#1E1D#, 16#0391#, 16#1FB8#, -- 16#0399#, 16#1FD8#, 16#03A5#, 16#1FE8#, -- 16#03B1#, 16#1FB0#, 16#03B9#, 16#1FD0#, -- 16#03C5#, 16#1FE0#, 16#0410#, 16#04D0#, -- 16#0415#, 16#04D6#, 16#0416#, 16#04C1#, -- 16#0418#, 16#0419#, 16#0423#, 16#040E#, -- 16#0430#, 16#04D1#, 16#0435#, 16#04D7#, -- 16#0436#, 16#04C2#, 16#0438#, 16#0439#, -- 16#0443#, 16#045E#, 16#1EA0#, 16#1EB6#, -- 16#1EA1#, 16#1EB7#, 16#0041#, 16#0226#, -- 16#0042#, 16#1E02#, 16#0043#, 16#010A#, -- 16#0044#, 16#1E0A#, 16#0045#, 16#0116#, -- 16#0046#, 16#1E1E#, 16#0047#, 16#0120#, -- 16#0048#, 16#1E22#, 16#0049#, 16#0130#, -- 16#004D#, 16#1E40#, 16#004E#, 16#1E44#, -- 16#004F#, 16#022E#, 16#0050#, 16#1E56#, -- 16#0052#, 16#1E58#, 16#0053#, 16#1E60#, -- 16#0054#, 16#1E6A#, 16#0057#, 16#1E86#, -- 16#0058#, 16#1E8A#, 16#0059#, 16#1E8E#, -- 16#005A#, 16#017B#, 16#0061#, 16#0227#, -- 16#0062#, 16#1E03#, 16#0063#, 16#010B#, -- 16#0064#, 16#1E0B#, 16#0065#, 16#0117#, -- 16#0066#, 16#1E1F#, 16#0067#, 16#0121#, -- 16#0068#, 16#1E23#, 16#006D#, 16#1E41#, -- 16#006E#, 16#1E45#, 16#006F#, 16#022F#, -- 16#0070#, 16#1E57#, 16#0072#, 16#1E59#, -- 16#0073#, 16#1E61#, 16#0074#, 16#1E6B#, -- 16#0077#, 16#1E87#, 16#0078#, 16#1E8B#, -- 16#0079#, 16#1E8F#, 16#007A#, 16#017C#, -- 16#015A#, 16#1E64#, 16#015B#, 16#1E65#, -- 16#0160#, 16#1E66#, 16#0161#, 16#1E67#, -- 16#017F#, 16#1E9B#, 16#1E62#, 16#1E68#, -- 16#1E63#, 16#1E69#, 16#0041#, 16#00C4#, -- 16#0045#, 16#00CB#, 16#0048#, 16#1E26#, -- 16#0049#, 16#00CF#, 16#004F#, 16#00D6#, -- 16#0055#, 16#00DC#, 16#0057#, 16#1E84#, -- 16#0058#, 16#1E8C#, 16#0059#, 16#0178#, -- 16#0061#, 16#00E4#, 16#0065#, 16#00EB#, -- 16#0068#, 16#1E27#, 16#0069#, 16#00EF#, -- 16#006F#, 16#00F6#, 16#0074#, 16#1E97#, -- 16#0075#, 16#00FC#, 16#0077#, 16#1E85#, -- 16#0078#, 16#1E8D#, 16#0079#, 16#00FF#, -- 16#00D5#, 16#1E4E#, 16#00F5#, 16#1E4F#, -- 16#016A#, 16#1E7A#, 16#016B#, 16#1E7B#, -- 16#0399#, 16#03AA#, 16#03A5#, 16#03AB#, -- 16#03B9#, 16#03CA#, 16#03C5#, 16#03CB#, -- 16#03D2#, 16#03D4#, 16#0406#, 16#0407#, -- 16#0410#, 16#04D2#, 16#0415#, 16#0401#, -- 16#0416#, 16#04DC#, 16#0417#, 16#04DE#, -- 16#0418#, 16#04E4#, 16#041E#, 16#04E6#, -- 16#0423#, 16#04F0#, 16#0427#, 16#04F4#, -- 16#042B#, 16#04F8#, 16#042D#, 16#04EC#, -- 16#0430#, 16#04D3#, 16#0435#, 16#0451#, -- 16#0436#, 16#04DD#, 16#0437#, 16#04DF#, -- 16#0438#, 16#04E5#, 16#043E#, 16#04E7#, -- 16#0443#, 16#04F1#, 16#0447#, 16#04F5#, -- 16#044B#, 16#04F9#, 16#044D#, 16#04ED#, -- 16#0456#, 16#0457#, 16#04D8#, 16#04DA#, -- 16#04D9#, 16#04DB#, 16#04E8#, 16#04EA#, -- 16#04E9#, 16#04EB#, 16#0041#, 16#1EA2#, -- 16#0045#, 16#1EBA#, 16#0049#, 16#1EC8#, -- 16#004F#, 16#1ECE#, 16#0055#, 16#1EE6#, -- 16#0059#, 16#1EF6#, 16#0061#, 16#1EA3#, -- 16#0065#, 16#1EBB#, 16#0069#, 16#1EC9#, -- 16#006F#, 16#1ECF#, 16#0075#, 16#1EE7#, -- 16#0079#, 16#1EF7#, 16#00C2#, 16#1EA8#, -- 16#00CA#, 16#1EC2#, 16#00D4#, 16#1ED4#, -- 16#00E2#, 16#1EA9#, 16#00EA#, 16#1EC3#, -- 16#00F4#, 16#1ED5#, 16#0102#, 16#1EB2#, -- 16#0103#, 16#1EB3#, 16#01A0#, 16#1EDE#, -- 16#01A1#, 16#1EDF#, 16#01AF#, 16#1EEC#, -- 16#01B0#, 16#1EED#, 16#0041#, 16#00C5#, -- 16#0055#, 16#016E#, 16#0061#, 16#00E5#, -- 16#0075#, 16#016F#, 16#0077#, 16#1E98#, -- 16#0079#, 16#1E99#, 16#004F#, 16#0150#, -- 16#0055#, 16#0170#, 16#006F#, 16#0151#, -- 16#0075#, 16#0171#, 16#0423#, 16#04F2#, -- 16#0443#, 16#04F3#, 16#0041#, 16#01CD#, -- 16#0043#, 16#010C#, 16#0044#, 16#010E#, -- 16#0045#, 16#011A#, 16#0047#, 16#01E6#, -- 16#0048#, 16#021E#, 16#0049#, 16#01CF#, -- 16#004B#, 16#01E8#, 16#004C#, 16#013D#, -- 16#004E#, 16#0147#, 16#004F#, 16#01D1#, -- 16#0052#, 16#0158#, 16#0053#, 16#0160#, -- 16#0054#, 16#0164#, 16#0055#, 16#01D3#, -- 16#005A#, 16#017D#, 16#0061#, 16#01CE#, -- 16#0063#, 16#010D#, 16#0064#, 16#010F#, -- 16#0065#, 16#011B#, 16#0067#, 16#01E7#, -- 16#0068#, 16#021F#, 16#0069#, 16#01D0#, -- 16#006A#, 16#01F0#, 16#006B#, 16#01E9#, -- 16#006C#, 16#013E#, 16#006E#, 16#0148#, -- 16#006F#, 16#01D2#, 16#0072#, 16#0159#, -- 16#0073#, 16#0161#, 16#0074#, 16#0165#, -- 16#0075#, 16#01D4#, 16#007A#, 16#017E#, -- 16#00DC#, 16#01D9#, 16#00FC#, 16#01DA#, -- 16#01B7#, 16#01EE#, 16#0292#, 16#01EF#, -- 16#0041#, 16#0200#, 16#0045#, 16#0204#, -- 16#0049#, 16#0208#, 16#004F#, 16#020C#, -- 16#0052#, 16#0210#, 16#0055#, 16#0214#, -- 16#0061#, 16#0201#, 16#0065#, 16#0205#, -- 16#0069#, 16#0209#, 16#006F#, 16#020D#, -- 16#0072#, 16#0211#, 16#0075#, 16#0215#, -- 16#0474#, 16#0476#, 16#0475#, 16#0477#, -- 16#0041#, 16#0202#, 16#0045#, 16#0206#, -- 16#0049#, 16#020A#, 16#004F#, 16#020E#, -- 16#0052#, 16#0212#, 16#0055#, 16#0216#, -- 16#0061#, 16#0203#, 16#0065#, 16#0207#, -- 16#0069#, 16#020B#, 16#006F#, 16#020F#, -- 16#0072#, 16#0213#, 16#0075#, 16#0217#, -- 16#0391#, 16#1F08#, 16#0395#, 16#1F18#, -- 16#0397#, 16#1F28#, 16#0399#, 16#1F38#, -- 16#039F#, 16#1F48#, 16#03A9#, 16#1F68#, -- 16#03B1#, 16#1F00#, 16#03B5#, 16#1F10#, -- 16#03B7#, 16#1F20#, 16#03B9#, 16#1F30#, -- 16#03BF#, 16#1F40#, 16#03C1#, 16#1FE4#, -- 16#03C5#, 16#1F50#, 16#03C9#, 16#1F60#, -- 16#0391#, 16#1F09#, 16#0395#, 16#1F19#, -- 16#0397#, 16#1F29#, 16#0399#, 16#1F39#, -- 16#039F#, 16#1F49#, 16#03A1#, 16#1FEC#, -- 16#03A5#, 16#1F59#, 16#03A9#, 16#1F69#, -- 16#03B1#, 16#1F01#, 16#03B5#, 16#1F11#, -- 16#03B7#, 16#1F21#, 16#03B9#, 16#1F31#, -- 16#03BF#, 16#1F41#, 16#03C1#, 16#1FE5#, -- 16#03C5#, 16#1F51#, 16#03C9#, 16#1F61#, -- 16#004F#, 16#01A0#, 16#0055#, 16#01AF#, -- 16#006F#, 16#01A1#, 16#0075#, 16#01B0#, -- 16#0041#, 16#1EA0#, 16#0042#, 16#1E04#, -- 16#0044#, 16#1E0C#, 16#0045#, 16#1EB8#, -- 16#0048#, 16#1E24#, 16#0049#, 16#1ECA#, -- 16#004B#, 16#1E32#, 16#004C#, 16#1E36#, -- 16#004D#, 16#1E42#, 16#004E#, 16#1E46#, -- 16#004F#, 16#1ECC#, 16#0052#, 16#1E5A#, -- 16#0053#, 16#1E62#, 16#0054#, 16#1E6C#, -- 16#0055#, 16#1EE4#, 16#0056#, 16#1E7E#, -- 16#0057#, 16#1E88#, 16#0059#, 16#1EF4#, -- 16#005A#, 16#1E92#, 16#0061#, 16#1EA1#, -- 16#0062#, 16#1E05#, 16#0064#, 16#1E0D#, -- 16#0065#, 16#1EB9#, 16#0068#, 16#1E25#, -- 16#0069#, 16#1ECB#, 16#006B#, 16#1E33#, -- 16#006C#, 16#1E37#, 16#006D#, 16#1E43#, -- 16#006E#, 16#1E47#, 16#006F#, 16#1ECD#, -- 16#0072#, 16#1E5B#, 16#0073#, 16#1E63#, -- 16#0074#, 16#1E6D#, 16#0075#, 16#1EE5#, -- 16#0076#, 16#1E7F#, 16#0077#, 16#1E89#, -- 16#0079#, 16#1EF5#, 16#007A#, 16#1E93#, -- 16#01A0#, 16#1EE2#, 16#01A1#, 16#1EE3#, -- 16#01AF#, 16#1EF0#, 16#01B0#, 16#1EF1#, -- 16#0055#, 16#1E72#, 16#0075#, 16#1E73#, -- 16#0041#, 16#1E00#, 16#0061#, 16#1E01#, -- 16#0053#, 16#0218#, 16#0054#, 16#021A#, -- 16#0073#, 16#0219#, 16#0074#, 16#021B#, -- 16#0043#, 16#00C7#, 16#0044#, 16#1E10#, -- 16#0045#, 16#0228#, 16#0047#, 16#0122#, -- 16#0048#, 16#1E28#, 16#004B#, 16#0136#, -- 16#004C#, 16#013B#, 16#004E#, 16#0145#, -- 16#0052#, 16#0156#, 16#0053#, 16#015E#, -- 16#0054#, 16#0162#, 16#0063#, 16#00E7#, -- 16#0064#, 16#1E11#, 16#0065#, 16#0229#, -- 16#0067#, 16#0123#, 16#0068#, 16#1E29#, -- 16#006B#, 16#0137#, 16#006C#, 16#013C#, -- 16#006E#, 16#0146#, 16#0072#, 16#0157#, -- 16#0073#, 16#015F#, 16#0074#, 16#0163#, -- 16#0041#, 16#0104#, 16#0045#, 16#0118#, -- 16#0049#, 16#012E#, 16#004F#, 16#01EA#, -- 16#0055#, 16#0172#, 16#0061#, 16#0105#, -- 16#0065#, 16#0119#, 16#0069#, 16#012F#, -- 16#006F#, 16#01EB#, 16#0075#, 16#0173#, -- 16#0044#, 16#1E12#, 16#0045#, 16#1E18#, -- 16#004C#, 16#1E3C#, 16#004E#, 16#1E4A#, -- 16#0054#, 16#1E70#, 16#0055#, 16#1E76#, -- 16#0064#, 16#1E13#, 16#0065#, 16#1E19#, -- 16#006C#, 16#1E3D#, 16#006E#, 16#1E4B#, -- 16#0074#, 16#1E71#, 16#0075#, 16#1E77#, -- 16#0048#, 16#1E2A#, 16#0068#, 16#1E2B#, -- 16#0045#, 16#1E1A#, 16#0049#, 16#1E2C#, -- 16#0055#, 16#1E74#, 16#0065#, 16#1E1B#, -- 16#0069#, 16#1E2D#, 16#0075#, 16#1E75#, -- 16#0042#, 16#1E06#, 16#0044#, 16#1E0E#, -- 16#004B#, 16#1E34#, 16#004C#, 16#1E3A#, -- 16#004E#, 16#1E48#, 16#0052#, 16#1E5E#, -- 16#0054#, 16#1E6E#, 16#005A#, 16#1E94#, -- 16#0062#, 16#1E07#, 16#0064#, 16#1E0F#, -- 16#0068#, 16#1E96#, 16#006B#, 16#1E35#, -- 16#006C#, 16#1E3B#, 16#006E#, 16#1E49#, -- 16#0072#, 16#1E5F#, 16#0074#, 16#1E6F#, -- 16#007A#, 16#1E95#, 16#003C#, 16#226E#, -- 16#003D#, 16#2260#, 16#003E#, 16#226F#, -- 16#2190#, 16#219A#, 16#2192#, 16#219B#, -- 16#2194#, 16#21AE#, 16#21D0#, 16#21CD#, -- 16#21D2#, 16#21CF#, 16#21D4#, 16#21CE#, -- 16#2203#, 16#2204#, 16#2208#, 16#2209#, -- 16#220B#, 16#220C#, 16#2223#, 16#2224#, -- 16#2225#, 16#2226#, 16#223C#, 16#2241#, -- 16#2243#, 16#2244#, 16#2245#, 16#2247#, -- 16#2248#, 16#2249#, 16#224D#, 16#226D#, -- 16#2261#, 16#2262#, 16#2264#, 16#2270#, -- 16#2265#, 16#2271#, 16#2272#, 16#2274#, -- 16#2273#, 16#2275#, 16#2276#, 16#2278#, -- 16#2277#, 16#2279#, 16#227A#, 16#2280#, -- 16#227B#, 16#2281#, 16#227C#, 16#22E0#, -- 16#227D#, 16#22E1#, 16#2282#, 16#2284#, -- 16#2283#, 16#2285#, 16#2286#, 16#2288#, -- 16#2287#, 16#2289#, 16#2291#, 16#22E2#, -- 16#2292#, 16#22E3#, 16#22A2#, 16#22AC#, -- 16#22A8#, 16#22AD#, 16#22A9#, 16#22AE#, -- 16#22AB#, 16#22AF#, 16#22B2#, 16#22EA#, -- 16#22B3#, 16#22EB#, 16#22B4#, 16#22EC#, -- 16#22B5#, 16#22ED#, 16#00A8#, 16#1FC1#, -- 16#03B1#, 16#1FB6#, 16#03B7#, 16#1FC6#, -- 16#03B9#, 16#1FD6#, 16#03C5#, 16#1FE6#, -- 16#03C9#, 16#1FF6#, 16#03CA#, 16#1FD7#, -- 16#03CB#, 16#1FE7#, 16#1F00#, 16#1F06#, -- 16#1F01#, 16#1F07#, 16#1F08#, 16#1F0E#, -- 16#1F09#, 16#1F0F#, 16#1F20#, 16#1F26#, -- 16#1F21#, 16#1F27#, 16#1F28#, 16#1F2E#, -- 16#1F29#, 16#1F2F#, 16#1F30#, 16#1F36#, -- 16#1F31#, 16#1F37#, 16#1F38#, 16#1F3E#, -- 16#1F39#, 16#1F3F#, 16#1F50#, 16#1F56#, -- 16#1F51#, 16#1F57#, 16#1F59#, 16#1F5F#, -- 16#1F60#, 16#1F66#, 16#1F61#, 16#1F67#, -- 16#1F68#, 16#1F6E#, 16#1F69#, 16#1F6F#, -- 16#1FBF#, 16#1FCF#, 16#1FFE#, 16#1FDF#, -- 16#0391#, 16#1FBC#, 16#0397#, 16#1FCC#, -- 16#03A9#, 16#1FFC#, 16#03AC#, 16#1FB4#, -- 16#03AE#, 16#1FC4#, 16#03B1#, 16#1FB3#, -- 16#03B7#, 16#1FC3#, 16#03C9#, 16#1FF3#, -- 16#03CE#, 16#1FF4#, 16#1F00#, 16#1F80#, -- 16#1F01#, 16#1F81#, 16#1F02#, 16#1F82#, -- 16#1F03#, 16#1F83#, 16#1F04#, 16#1F84#, -- 16#1F05#, 16#1F85#, 16#1F06#, 16#1F86#, -- 16#1F07#, 16#1F87#, 16#1F08#, 16#1F88#, -- 16#1F09#, 16#1F89#, 16#1F0A#, 16#1F8A#, -- 16#1F0B#, 16#1F8B#, 16#1F0C#, 16#1F8C#, -- 16#1F0D#, 16#1F8D#, 16#1F0E#, 16#1F8E#, -- 16#1F0F#, 16#1F8F#, 16#1F20#, 16#1F90#, -- 16#1F21#, 16#1F91#, 16#1F22#, 16#1F92#, -- 16#1F23#, 16#1F93#, 16#1F24#, 16#1F94#, -- 16#1F25#, 16#1F95#, 16#1F26#, 16#1F96#, -- 16#1F27#, 16#1F97#, 16#1F28#, 16#1F98#, -- 16#1F29#, 16#1F99#, 16#1F2A#, 16#1F9A#, -- 16#1F2B#, 16#1F9B#, 16#1F2C#, 16#1F9C#, -- 16#1F2D#, 16#1F9D#, 16#1F2E#, 16#1F9E#, -- 16#1F2F#, 16#1F9F#, 16#1F60#, 16#1FA0#, -- 16#1F61#, 16#1FA1#, 16#1F62#, 16#1FA2#, -- 16#1F63#, 16#1FA3#, 16#1F64#, 16#1FA4#, -- 16#1F65#, 16#1FA5#, 16#1F66#, 16#1FA6#, -- 16#1F67#, 16#1FA7#, 16#1F68#, 16#1FA8#, -- 16#1F69#, 16#1FA9#, 16#1F6A#, 16#1FAA#, -- 16#1F6B#, 16#1FAB#, 16#1F6C#, 16#1FAC#, -- 16#1F6D#, 16#1FAD#, 16#1F6E#, 16#1FAE#, -- 16#1F6F#, 16#1FAF#, 16#1F70#, 16#1FB2#, -- 16#1F74#, 16#1FC2#, 16#1F7C#, 16#1FF2#, -- 16#1FB6#, 16#1FB7#, 16#1FC6#, 16#1FC7#, -- 16#1FF6#, 16#1FF7#, 16#0627#, 16#0622#, -- 16#0627#, 16#0623#, 16#0648#, 16#0624#, -- 16#064A#, 16#0626#, 16#06C1#, 16#06C2#, -- 16#06D2#, 16#06D3#, 16#06D5#, 16#06C0#, -- 16#0627#, 16#0625#, 16#0928#, 16#0929#, -- 16#0930#, 16#0931#, 16#0933#, 16#0934#, -- 16#09C7#, 16#09CB#, 16#09C7#, 16#09CC#, -- 16#0B47#, 16#0B4B#, 16#0B47#, 16#0B48#, -- 16#0B47#, 16#0B4C#, 16#0BC6#, 16#0BCA#, -- 16#0BC7#, 16#0BCB#, 16#0B92#, 16#0B94#, -- 16#0BC6#, 16#0BCC#, 16#0C46#, 16#0C48#, -- 16#0CC6#, 16#0CCA#, 16#0CBF#, 16#0CC0#, -- 16#0CC6#, 16#0CC7#, 16#0CCA#, 16#0CCB#, -- 16#0CC6#, 16#0CC8#, 16#0D46#, 16#0D4A#, -- 16#0D47#, 16#0D4B#, 16#0D46#, 16#0D4C#, -- 16#0DD9#, 16#0DDA#, 16#0DDC#, 16#0DDD#, -- 16#0DD9#, 16#0DDC#, 16#0DD9#, 16#0DDE#, -- 16#1025#, 16#1026#, 16#3046#, 16#3094#, -- 16#304B#, 16#304C#, 16#304D#, 16#304E#, -- 16#304F#, 16#3050#, 16#3051#, 16#3052#, -- 16#3053#, 16#3054#, 16#3055#, 16#3056#, -- 16#3057#, 16#3058#, 16#3059#, 16#305A#, -- 16#305B#, 16#305C#, 16#305D#, 16#305E#, -- 16#305F#, 16#3060#, 16#3061#, 16#3062#, -- 16#3064#, 16#3065#, 16#3066#, 16#3067#, -- 16#3068#, 16#3069#, 16#306F#, 16#3070#, -- 16#3072#, 16#3073#, 16#3075#, 16#3076#, -- 16#3078#, 16#3079#, 16#307B#, 16#307C#, -- 16#309D#, 16#309E#, 16#30A6#, 16#30F4#, -- 16#30AB#, 16#30AC#, 16#30AD#, 16#30AE#, -- 16#30AF#, 16#30B0#, 16#30B1#, 16#30B2#, -- 16#30B3#, 16#30B4#, 16#30B5#, 16#30B6#, -- 16#30B7#, 16#30B8#, 16#30B9#, 16#30BA#, -- 16#30BB#, 16#30BC#, 16#30BD#, 16#30BE#, -- 16#30BF#, 16#30C0#, 16#30C1#, 16#30C2#, -- 16#30C4#, 16#30C5#, 16#30C6#, 16#30C7#, -- 16#30C8#, 16#30C9#, 16#30CF#, 16#30D0#, -- 16#30D2#, 16#30D3#, 16#30D5#, 16#30D6#, -- 16#30D8#, 16#30D9#, 16#30DB#, 16#30DC#, -- 16#30EF#, 16#30F7#, 16#30F0#, 16#30F8#, -- 16#30F1#, 16#30F9#, 16#30F2#, 16#30FA#, -- 16#30FD#, 16#30FE#, 16#306F#, 16#3071#, -- 16#3072#, 16#3074#, 16#3075#, 16#3077#, -- 16#3078#, 16#307A#, 16#307B#, 16#307D#, -- 16#30CF#, 16#30D1#, 16#30D2#, 16#30D4#, -- 16#30D5#, 16#30D7#, 16#30D8#, 16#30DA#, -- 16#30DB#, 16#30DD#); -- CFUniCharCombiningBitmap : constant u_int8_t_array := ( -- 16#00#, 16#00#, 16#00#, 16#01#, 16#02#, 16#03#, 16#04#, 16#05#, -- 16#00#, 16#06#, 16#07#, 16#08#, 16#09#, 16#0A#, 16#0B#, 16#0C#, -- 16#0D#, 16#14#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, -- 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#11#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#12#, 16#00#, 16#00#, 16#13#, 16#00#, -- 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, 16#FF#, -- 16#FF#, 16#FF#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#78#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#FE#, 16#FF#, 16#FB#, 16#FF#, 16#FF#, 16#BB#, -- 16#16#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#F8#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#01#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#C0#, 16#FF#, 16#9F#, 16#3D#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, -- 16#FF#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, 16#FF#, 16#01#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#D0#, -- 16#FF#, 16#3F#, 16#1E#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, -- 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#D0#, -- 16#9F#, 16#39#, 16#80#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, -- 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#D0#, -- 16#87#, 16#39#, 16#00#, 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, -- 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#D0#, -- 16#BF#, 16#3B#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#D0#, -- 16#8F#, 16#39#, 16#C0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#04#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, -- 16#C7#, 16#3D#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#0E#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, -- 16#DF#, 16#3D#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, -- 16#DF#, 16#3D#, 16#60#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#C0#, -- 16#CF#, 16#3D#, 16#80#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#0C#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#84#, 16#5F#, 16#FF#, 16#00#, 16#00#, 16#0C#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F2#, 16#07#, -- 16#80#, 16#7F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F2#, 16#1B#, -- 16#00#, 16#3F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#03#, 16#00#, 16#00#, 16#A0#, 16#C2#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#FF#, -- 16#DF#, 16#00#, 16#FF#, 16#FE#, 16#FF#, 16#FF#, 16#FF#, 16#1F#, -- 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#C7#, 16#03#, -- 16#00#, 16#00#, 16#C0#, 16#03#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#1C#, 16#00#, 16#00#, 16#00#, 16#1C#, 16#00#, -- 16#00#, 16#00#, 16#0C#, 16#00#, 16#00#, 16#00#, 16#0C#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#F0#, 16#FF#, -- 16#FF#, 16#FF#, 16#0F#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#38#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#02#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, 16#07#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FC#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#06#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#40#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#FF#, 16#FF#, 16#00#, 16#00#, 16#0F#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#FE#, 16#FF#, 16#3F#, 16#00#, -- 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#FF#, 16#FF#, 16#FF#, -- 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#); CFUniCharCombiningPropertyBitmap : constant u_int8_t_array := ( 16#00#, 16#00#, 16#00#, 16#01#, 16#02#, 16#03#, 16#04#, 16#05#, 16#00#, 16#06#, 16#07#, 16#08#, 16#09#, 16#0A#, 16#0B#, 16#0C#, 16#0D#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#0E#, 16#0F#, 16#10#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#11#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#12#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#13#, 16#00#, 16#00#, 16#14#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E8#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#E8#, 16#D8#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#CA#, 16#CA#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#CA#, 16#CA#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#01#, 16#01#, 16#01#, 16#01#, 16#01#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#F0#, 16#E6#, 16#DC#, 16#DC#, 16#DC#, 16#E6#, 16#E6#, 16#E6#, 16#DC#, 16#DC#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#EA#, 16#EA#, 16#E9#, 16#EA#, 16#EA#, 16#E9#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#DC#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#E6#, 16#DE#, 16#DC#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#00#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#DC#, 16#E6#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#DE#, 16#E4#, 16#E6#, 16#0A#, 16#0B#, 16#0C#, 16#0D#, 16#0E#, 16#0F#, 16#10#, 16#11#, 16#12#, 16#13#, 16#00#, 16#14#, 16#15#, 16#16#, 16#00#, 16#17#, 16#00#, 16#18#, 16#19#, 16#00#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1B#, 16#1C#, 16#1D#, 16#1E#, 16#1F#, 16#20#, 16#21#, 16#22#, 16#E6#, 16#E6#, 16#DC#, 16#DC#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#23#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#DC#, 16#E6#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#00#, 16#DC#, 16#E6#, 16#E6#, 16#DC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#24#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#DC#, 16#DC#, 16#DC#, 16#E6#, 16#DC#, 16#DC#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#E6#, 16#DC#, 16#E6#, 16#DC#, 16#E6#, 16#DC#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#DC#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#54#, 16#5B#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#67#, 16#67#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#6B#, 16#6B#, 16#6B#, 16#6B#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#76#, 16#76#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#7A#, 16#7A#, 16#7A#, 16#7A#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#DC#, 16#DC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#DC#, 16#00#, 16#DC#, 16#00#, 16#D8#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#81#, 16#82#, 16#00#, 16#84#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#82#, 16#82#, 16#82#, 16#82#, 16#00#, 16#00#, 16#82#, 16#00#, 16#E6#, 16#E6#, 16#09#, 16#00#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#DC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#07#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#09#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E4#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#DE#, 16#E6#, 16#DC#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#01#, 16#01#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#01#, 16#01#, 16#01#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#01#, 16#01#, 16#E6#, 16#DC#, 16#E6#, 16#01#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#DA#, 16#E4#, 16#E8#, 16#DE#, 16#E0#, 16#E0#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#08#, 16#08#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#1A#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#E6#, 16#E6#, 16#E6#, 16#E6#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#, 16#00#); end C.vfs_utfconvdata;
-- SPDX-FileCopyrightText: 2021 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Ada.Containers; with Lace.Generic_Engines; package Lace.Contexts is pragma Preelaborate; type Context; subtype Dummy_Variant is Ada.Containers.Hash_Type; type Boolean_Property is (Is_Static); package Boolean_Engines is new Lace.Generic_Engines (Property_Name => Boolean_Property, Property_Value => Boolean, Abstract_Context => Context, Variant_Kind => Dummy_Variant, Hash => Dummy_Variant'Mod); type Context is tagged limited record Boolean : aliased Boolean_Engines.Engine (Context'Unchecked_Access); end record; end Lace.Contexts;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . T E X T _ I O -- -- -- -- 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. -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Implementation for the MPC5200B. -- This package uses PSC1 and configures it for UART operation with a baud -- speed of 115,200, 8 data bits, no parity and 1 stop bit. with System; with Interfaces; with System.BB.Board_Parameters; package body System.Text_IO is use Interfaces; use System.BB.Board_Parameters; Baud_Rate : constant := 115_200; -- UART baud rate -- GPS Port Configuration Register -- See MPC5200B User's Manual, Section 7.3.2 type Other_GPS_Data is mod 2 ** 29; type PSC1_Pins_Configuration is (GPIO, UART); for PSC1_Pins_Configuration use (GPIO => 2#0#, UART => 2#100#); type UART_GPS_Port_Configuration is record Other_Data : Other_GPS_Data; PSC1 : PSC1_Pins_Configuration; end record with Size => 32; for UART_GPS_Port_Configuration use record Other_Data at 0 range 0 .. 28; PSC1 at 0 range 29 .. 31; end record; GPS_Port_Configuration_Register : UART_GPS_Port_Configuration with Volatile_Full_Access, Address => System'To_Address (MBAR + 16#0B00#); -- PSC1 Registers -- See MPC5200B User's Manual, Chapter 15 pragma Warnings (Off, "*is not referenced*"); -- Disable warnings on unused interface entities PSC1_Base_Address : constant := MBAR + 16#2000#; Mode_Offset : constant := 16#00#; Status_Offset : constant := 16#04#; Clock_Select_Offset : constant := 16#04#; Command_Offset : constant := 16#08#; Buffer_Offset : constant := 16#0C#; Counter_Timer_Upper_Offfset : constant := 16#18#; Counter_Timer_Lower_Offfset : constant := 16#1C#; Serial_Interface_Control_Offset : constant := 16#40#; Tx_FIFO_Control_Offset : constant := 16#88#; Transmitter_FIFO_Alarm_Offset : constant := 16#8E#; type Receiver_Interrupt_Source is (RxRDY, FFULL); type Parity_Mode is (With_Parity, Force_Parity, No_Parity, Multidrop_Mode); type Parity_Option is (Even_Low_Data_Char, Odd_High_Addr_Char); type Bits_Option is (Five, Six, Seven, Eight); type Mode_1 is record Receiver_Request_To_Send : Boolean; Receiver_Interrupt : Receiver_Interrupt_Source; Parity : Parity_Mode; Parity_Type : Parity_Option; Bits_Per_Character : Bits_Option; end record; for Mode_1 use record Receiver_Request_To_Send at 0 range 0 .. 0; Receiver_Interrupt at 0 range 1 .. 1; Parity at 0 range 3 .. 4; Parity_Type at 0 range 5 .. 5; Bits_Per_Character at 0 range 6 .. 7; end record; type Channel_Mode_Type is (Normal, Automatic_Echo, Local_Loop_Back, Remote_Loop_Back); type Four_Bits is mod 2 ** 4; type Mode_2 is record Channel_Mode : Channel_Mode_Type; Transmitter_Ready_To_Send : Boolean; Transmitter_Clear_To_Send : Boolean; Stop_Bit_Length : Four_Bits; end record; for Mode_2 use record Channel_Mode at 0 range 0 .. 1; Transmitter_Ready_To_Send at 0 range 2 .. 2; Transmitter_Clear_To_Send at 0 range 3 .. 3; Stop_Bit_Length at 0 range 4 .. 7; end record; type Status is record Received_Break : Boolean; Framing_Error : Boolean; Parity_Error : Boolean; Overrun_Error : Boolean; Transmitter_Empty : Boolean; Transmitter_Ready : Boolean; Receiver_FIFO_Full : Boolean; Receiver_Ready : Boolean; DCD_Error : Boolean; Error_Status_Detect : Boolean; end record with Size => 16; for Status use record Received_Break at 0 range 0 .. 0; Framing_Error at 0 range 1 .. 1; Parity_Error at 0 range 2 .. 2; Overrun_Error at 0 range 3 .. 3; Transmitter_Empty at 0 range 4 .. 4; Transmitter_Ready at 0 range 5 .. 5; Receiver_FIFO_Full at 0 range 6 .. 6; Receiver_Ready at 0 range 7 .. 7; DCD_Error at 0 range 8 .. 8; Error_Status_Detect at 0 range 9 .. 9; end record; type Clock_Source is (IPB_Divided_By_32, Disable_Clock, IPB_Divided_By_4); for Clock_Source use (IPB_Divided_By_32 => 2#0#, Disable_Clock => 2#1110#, IPB_Divided_By_4 => 2#1111#); type Clock_Select is record Receiver_Clock_Select : Clock_Source; Transmitter_Clock_Select : Clock_Source; end record; for Clock_Select use record Receiver_Clock_Select at 0 range 0 .. 3; Transmitter_Clock_Select at 0 range 4 .. 7; end record; type Misc_Commands is (No_Command, Reset_Mode_Register_Pointer, Reset_Receiver, Reset_Transmitter, Reset_Error_Status, Reset_Break_Change_Interrupt, Start_Break, Stop_Break); type Tx_Rx_Commands is (No_Action, Enable, Disable); type Command is record Misc : Misc_Commands; Transmitter : Tx_Rx_Commands; Receiver : Tx_Rx_Commands; end record; for Command use record Misc at 0 range 1 .. 3; Transmitter at 0 range 4 .. 5; Receiver at 0 range 6 .. 7; end record; type PSC_Modes is (UART, UART_DCD_Effective); for PSC_Modes use (UART => 2#0000#, UART_DCD_Effective => 2#1000#); type Serial_Interface_Control is record Operation_Mode : PSC_Modes; end record; for Serial_Interface_Control use record Operation_Mode at 0 range 4 .. 7; end record; type Alarm_Type is mod 2 ** 11 with Size => 16; Mode_1_Register : Mode_1 with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Mode_Offset); Mode_2_Register : Mode_2 with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Mode_Offset); Status_Register : Status with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Status_Offset); Clock_Select_Register : Clock_Select with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Clock_Select_Offset); Command_Register : Command with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Command_Offset); Transmitter_Buffer : Character with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Buffer_Offset); Receiver_Buffer : Character with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Buffer_Offset); Counter_Timer_Upper_Register : Unsigned_8 with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Counter_Timer_Upper_Offfset); Counter_Timer_Lower_Register : Unsigned_8 with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Counter_Timer_Lower_Offfset); Serial_Interface_Control_Register : Serial_Interface_Control with Volatile_Full_Access, Address => System'To_Address (PSC1_Base_Address + Serial_Interface_Control_Offset); Tx_FIFO_Control_Register : Unsigned_8 with Volatile_Full_Access, Size => 8, Address => System'To_Address (PSC1_Base_Address + Tx_FIFO_Control_Offset); Transmitter_FIFO_Alarm : Alarm_Type with Volatile_Full_Access, Size => 16, Address => System'To_Address (PSC1_Base_Address + Transmitter_FIFO_Alarm_Offset); --------- -- Get -- --------- function Get return Character is begin return Receiver_Buffer; end Get; ---------------- -- Initialize -- ---------------- procedure Initialize is Counter_Timer : constant Unsigned_16 := Unsigned_16 (IPB_Frequency / (32 * Baud_Rate) + 1); begin -- Initialize PSC1 following the guide in MPC5200B User's Manual, -- Section 15.3.1. -- Explicitly set Mode Register Pointer to Mode_1_Register in case the -- bootloader had set up PSC1 for its own use. If we did not do this -- then the next instructions will end up writing to the wrong address. Command_Register := (Misc => Reset_Mode_Register_Pointer, Transmitter => No_Action, Receiver => No_Action); -- Reset the Transmitter and receiver to a known state before -- configuring. Command_Register := (Misc => Reset_Receiver, Transmitter => No_Action, Receiver => No_Action); Command_Register := (Misc => Reset_Transmitter, Transmitter => No_Action, Receiver => No_Action); -- PSC1 is configured for eight data bits, no parity and 1 stop bit Clock_Select_Register := (Receiver_Clock_Select => IPB_Divided_By_32, Transmitter_Clock_Select => IPB_Divided_By_32); Serial_Interface_Control_Register := (Operation_Mode => UART); Mode_1_Register := (Receiver_Request_To_Send => False, Receiver_Interrupt => RxRDY, Parity => No_Parity, Parity_Type => Even_Low_Data_Char, Bits_Per_Character => Eight); Mode_2_Register := (Channel_Mode => Normal, Transmitter_Ready_To_Send => False, Transmitter_Clear_To_Send => False, Stop_Bit_Length => 2#0111#); -- Split Counter_Timer into its upper and lower halves Counter_Timer_Lower_Register := Unsigned_8 (Counter_Timer and 16#FF#); Counter_Timer_Upper_Register := Unsigned_8 (Shift_Right (Counter_Timer, 8)); Tx_FIFO_Control_Register := 1; Transmitter_FIFO_Alarm := 428; GPS_Port_Configuration_Register.PSC1 := UART; -- Enable PSC1 transmitter and receiver units Command_Register := (Misc => No_Command, Transmitter => Enable, Receiver => Enable); Initialized := True; end Initialize; ----------------- -- Is_Rx_Ready -- ----------------- function Is_Rx_Ready return Boolean is begin return Status_Register.Receiver_Ready; end Is_Rx_Ready; ----------------- -- Is_Tx_Ready -- ----------------- function Is_Tx_Ready return Boolean is begin return Status_Register.Transmitter_Ready; end Is_Tx_Ready; --------- -- Put -- --------- procedure Put (C : Character) is begin Transmitter_Buffer := C; end Put; ---------------------------- -- Use_Cr_Lf_For_New_Line -- ---------------------------- function Use_Cr_Lf_For_New_Line return Boolean is begin return True; end Use_Cr_Lf_For_New_Line; end System.Text_IO;
with AUnit.Test_Suites; with AUnit.Test_Fixtures; package Test_Standard is function Suite return AUnit.Test_Suites.Access_Test_Suite; private type Test is new AUnit.Test_Fixtures.Test_Fixture with null record; procedure Test_Encoding_Empty (Object : in out Test); procedure Test_Encoding_Pad2 (Object : in out Test); procedure Test_Encoding_Pad1 (Object : in out Test); procedure Test_Encoding_Pad0 (Object : in out Test); procedure Test_Encoding_Big (Object : in out Test); procedure Test_Encoding_RFC4648 (Object : in out Test); procedure Test_Decoding_Empty (Object : in out Test); procedure Test_Decoding_Pad2 (Object : in out Test); procedure Test_Decoding_Pad1 (Object : in out Test); procedure Test_Decoding_Pad0 (Object : in out Test); procedure Test_Decoding_Big (Object : in out Test); procedure Test_Decoding_RFC4648 (Object : in out Test); end Test_Standard;
package body Benchmark.Hash is function Create_Hash return Benchmark_Pointer is begin return new Hash_Type; end Create_Hash; procedure Set_Argument(benchmark : in out Hash_Type; arg : in String) is value : constant String := Extract_Argument(arg); begin if Check_Argument(arg, "size") then benchmark.size := Positive'Value(value); elsif Check_Argument(arg, "iterations") then benchmark.iterations := Positive'Value(value); else Set_Argument(Benchmark_Type(benchmark), arg); end if; exception when others => raise Invalid_Argument; end Set_Argument; procedure Run(benchmark : in Hash_Type) is begin for i in 1 .. benchmark.iterations loop declare rand : constant Integer := Get_Random(benchmark); index : constant Natural := rand mod benchmark.size; begin if (Get_Random(benchmark) mod 2) = 0 then Read(benchmark, Address_Type(index) * 4, 4); else Write(benchmark, Address_Type(index) * 4, 4); end if; Idle(benchmark, benchmark.spacing); end; end loop; end Run; end Benchmark.Hash;
--////////////////////////////////////////////////////////// -- SFML - Simple and Fast Multimedia Library -- Copyright (C) 2007-2015 Laurent Gomila (laurent@sfml-dev.org) -- This software is provided 'as-is', without any express or implied warranty. -- In no event will the authors be held liable for any damages arising from the use of this software. -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it freely, -- subject to the following restrictions: -- 1. The origin of this software must not be misrepresented; -- you must not claim that you wrote the original software. -- If you use this software in a product, an acknowledgment -- in the product documentation would be appreciated but is not required. -- 2. Altered source versions must be plainly marked as such, -- and must not be misrepresented as being the original software. -- 3. This notice may not be removed or altered from any source distribution. --////////////////////////////////////////////////////////// package Sf.System.Vector2 is --////////////////////////////////////////////////////////// --/ @brief 2-component vector of integers --/ --////////////////////////////////////////////////////////// type sfVector2i is record x : aliased sfInt32; y : aliased sfInt32; end record; --////////////////////////////////////////////////////////// --/ @brief 2-component vector of unsigned integers --/ --////////////////////////////////////////////////////////// type sfVector2u is record x : aliased sfUint32; y : aliased sfUint32; end record; --////////////////////////////////////////////////////////// --/ @brief 2-component vector of floats --/ --////////////////////////////////////////////////////////// type sfVector2f is record x : aliased Float; y : aliased Float; end record; private pragma Convention (C_Pass_By_Copy, sfVector2i); pragma Convention (C_Pass_By_Copy, sfVector2u); pragma Convention (C_Pass_By_Copy, sfVector2f); end Sf.System.Vector2;
-- Copyright 2013-2021 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package body IO is procedure Put_Line (S : String) is begin null; end Put_Line; end IO;
-- 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 : command_line_interface.ada -- Component of : common_library -- Version : 1.2 -- Date : 11/21/86 16:02:24 -- SCCS File : disk21~/rschm/hasee/sccs/common_library/sccs/sxcommand_line_interface.ada with Text_IO; use Text_IO; with String_scanner; ---------------------------------------------------------------- Package body command_line_interface is SCCS_ID : constant String := "@(#) command_line_interface.addisk21~/rschm/hasee/sccs/common_library, Version 1.2"; --| Provides primitives for getting at the command line arguments. --| Overview Package sp renames String_pkg; Package ss renames String_scanner; type Name_value is --| Name/Value pair record Name: sp.String_type; --| Name of value Value: sp.String_type; --| Value associated with name Was_retrieved: boolean:=FALSE; --| Flag indicating whether name-value end record; -- association has been retrieved by tool type Token_type is (Ada_ID,Word,Bound_to,None); Package Token_type_IO is new Enumeration_IO(Token_type); use Token_type_IO; Maximum_Command_Length : constant := 1024; subtype Command_Line_Type is String (1 .. Maximum_Command_Length); Arg_string : Command_Line_Type; --| String obtained from operating system Arg_Pushed : Boolean := False; N_arg_count: Argument_count; --| Count of named args P_arg_count: Argument_count; --| Count of positional args Rejected: boolean := FALSE; Tool_Name : String_Type; Named_args: array(argument_index) of Name_value; Positional_args: array(argument_index) of sp.String_type; procedure Read_Command_Line (Command_Args : out Command_Line_Type) is separate; --** --| Description: Read_Command_Line is the machine dependent interface to --| the Operating System Command Line. --** ---------------------------------------------------------------- -- Local functions: procedure Set_Tool_Name (To : in String) is begin Tool_Name := Create (To & ": "); end Set_Tool_Name; procedure CLI_Error (Error_Message : in String) is begin New_Line; Put_Line (Value (Tool_Name) & Error_Message); end CLI_Error; procedure Get_token( Scan_string : in out ss.Scanner; Argument : in out sp.String_type; Kind: in out Token_type ) is Last_arg: sp.String_type; Last_kind: Token_type; Found: boolean; Delimeter: sp.String_type; Delim_string: ss.Scanner; More_commas: boolean := FALSE; Tail: sp.String_type; begin if Rejected then Argument := Last_arg; Kind := Last_kind; Rejected := FALSE; else if ss.Is_sequence(" ,",Scan_string) then ss.Scan_sequence(" ,",Scan_string,Found,Delimeter); Delim_string := ss.Make_scanner(Delimeter); loop ss.Skip_space(Delim_string); exit when not ss.More(Delim_string); ss.Forward(Delim_string); if More_commas then CLI_Error ("Missing Positional Argument."); raise missing_positional_arg; end if; More_commas := TRUE; end loop; end if; if ss.Is_Ada_Id(Scan_string) then ss.Scan_Ada_Id(Scan_string,Found,Argument); if ss.Is_Literal("=>",Scan_string) or ss.Is_Literal("""",Scan_string) or ss.Is_sequence(" ,",Scan_string) or not ss.More(Scan_string) then Kind := Ada_ID; else if ss.Is_not_sequence(" ,",Scan_string) then ss.Scan_not_sequence(" ,",Scan_string,Found,Tail); Argument := sp."&"(Argument,Tail); Kind := Word; else ss.Scan_word(Scan_string,Found,Tail); Argument := sp."&"(Argument,Tail); Kind := Word; end if; end if; elsif ss.Is_Literal("=>",Scan_string) then ss.Scan_Literal("=>",Scan_string,Found); Argument := sp.Create("=>"); Kind := Bound_to; elsif ss.Is_quoted(Scan_string) then ss.Scan_quoted(Scan_string,Found,Argument); Kind := Word; elsif ss.Is_enclosed('(',')',Scan_string) then ss.Scan_enclosed('(',')',Scan_string,Found,Argument); Kind := Word; elsif ss.Is_not_sequence(" ,",Scan_string) then ss.Scan_not_sequence(" ,",Scan_string,Found,Argument); Kind := Word; elsif ss.Is_word(Scan_string) then ss.Scan_word(Scan_string,Found,Argument); Kind := Word; else Argument := sp.Create(""); Kind := None; end if; Last_kind := Kind; Last_arg := Argument; end if; end Get_token; ----------------------------------------------------------------------- procedure Save_named( Name : in sp.String_type; Value : in sp.String_type ) is begin N_arg_count := N_arg_count + 1; Named_args(N_arg_count).Name := Name; Named_args(N_arg_count).Value := Value; end Save_named; procedure Save_positional( Value : in sp.String_type ) is begin if N_arg_count > 0 then CLI_Error ("Invalid Parameter Order, " & "Positional arguments must precede Named."); raise invalid_parameter_order; end if; P_arg_count := P_arg_count + 1; Positional_args(P_arg_count) := Value; end Save_positional; procedure Reject_token is begin Rejected := TRUE; end Reject_token; ---------------------------------------------------------------- procedure Initialize (Tool_Name : in String) is begin Set_Tool_Name (To => Tool_Name); declare type State_type is (Have_nothing,Have_Ada_ID,Have_bound_to); Start_Index : integer; --| End_Index: integer; --| Indices of characters in argument string Scan_string: ss.Scanner; --| Scanned argument string Argument: sp.String_Type; --| Argument scanned from argument string Kind: Token_type; --| Kind of argument- WORD, =>, Ada_ID Old_arg: sp.String_Type; --| Previously scanned argument Found: boolean; State: State_type := Have_nothing; --| State of argument in decision tree begin Start_Index := Arg_string'first; End_Index := Arg_string'first; N_arg_count := 0; P_arg_count := 0; if not Arg_Pushed then -- Get the command line from the operating system Read_Command_Line (Arg_String); end if; -- Remove trailing blanks and final semicolon for i in reverse Arg_string'range loop if Arg_string(i) /= ' ' then if Arg_string(i) = ';' then End_Index := i - 1; else End_Index := i; end if; exit; end if; end loop; Skip_Leading_White_Space : for i in Arg_String'First .. End_Index loop if Arg_String (i) /= ' ' and then Arg_String (i) /= Ascii.HT then Start_Index := i; exit Skip_Leading_White_Space; end if; end loop Skip_Leading_White_Space; Verify_Balanced_Parentheses : declare Left_Parens : Natural := 0; Right_Parens : Natural := 0; begin for i in Start_Index .. End_Index loop if Arg_String (i) = '(' then Left_Parens := Left_Parens + 1; elsif Arg_String (i) = ')' then Right_Parens := Right_Parens + 1; end if; end loop; if Left_Parens /= Right_Parens then CLI_Error ("Unbalanced Parentheses."); raise Unbalanced_Parentheses; end if; end Verify_Balanced_Parentheses; -- Convert argument string to scanner and remove enclosing parantheses Scan_string := ss.Make_scanner(sp.Create( Arg_string(Start_Index .. End_Index))); if ss.Is_enclosed('(',')',Scan_string) then ss.Mark(Scan_string); ss.Scan_enclosed('(',')',Scan_string,Found,Argument); ss.Skip_Space(Scan_string); if not ss.More(Scan_string) then ss.Destroy_Scanner(Scan_string); Scan_string := ss.Make_scanner(Argument); else ss.Restore(Scan_string); end if; end if; -- Parse argument string and save arguments loop Get_token(Scan_string,Argument,Kind); case State is when Have_nothing => case Kind is when Ada_ID => Old_arg := Argument; State := Have_Ada_ID; when Word => Save_positional(Argument); State := Have_nothing; when Bound_to => State := Have_nothing; CLI_Error ("Invalid Named Association."); raise invalid_named_association; when None => null; end case; when Have_Ada_ID => case Kind is when Ada_ID => Save_positional(Old_arg); Old_arg := Argument; State := Have_Ada_ID; when Word => Save_positional(Old_arg); Save_positional(Argument); State := Have_nothing; when Bound_to => State := Have_bound_to; when None => Save_positional(Old_arg); end case; when Have_bound_to => case Kind is when Ada_ID | Word => Save_named(Old_arg,Argument); State := Have_nothing; when Bound_to => State := Have_bound_to; CLI_Error ("Invalid Named Association."); raise invalid_named_association; when None => CLI_Error ("Invalid Named Association."); raise invalid_named_association; end case; end case; exit when Kind = None; end loop; end; end Initialize; -------------------------------------------------------------------------- function Named_arg_count --| Return number of named arguments return Argument_count is begin return N_arg_count; end; ---------------------------------------------------------------- function Positional_arg_count --| Return number of positional arguments return Argument_count is begin return P_arg_count; end; ---------------------------------------------------------------- function Positional_arg_value( --| Return an argument value N: Argument_index --| Position of desired argument ) return string is --| Raises: no_arg --| Effects: Return the Nth argument. If there is no argument at --| position N, no_arg is raised. --| N/A: modifies, errors begin if N > P_arg_count then CLI_Error ("Internal Error, Argument" & Argument_Index'Image (N) & " does not exist. Please submit an LCR."); raise no_arg; else return sp.Value(Positional_args(N)); end if; end; ---------------------------------------------------------------- function Positional_arg_value( --| Return an argument value N: Argument_index --| Position of desired argument ) return sp.String_type is --| Raises: no_arg --| Effects: Return the Nth argument. If there is no argument at --| position N, no_arg is raised. --| N/A: modifies, errors begin if N > P_arg_count then CLI_Error ("Internal Error, Argument" & Argument_Index'Image (N) & " does not exist. Please submit an LCR."); raise no_arg; else return Positional_args(N); end if; end; ---------------------------------------------------------------- function Named_arg_value(--| Return a named argument value Name: string; Default: string ) return string is --| Effects: Return the value associated with Name on the command --| line. If there was none, return Default. begin for i in 1..N_arg_count loop if sp.Equal(sp.Upper(Named_args(i).Name),sp.Upper(sp.Create(Name))) then Named_args(i).Was_retrieved := TRUE; return sp.Value(Named_args(i).Value); end if; end loop; return Default; end; function Named_arg_value(--| Return a named argument value Name: string; Default: string ) return String_Type is --| Effects: Return the value associated with Name on the command --| line. If there was none, return Default. begin return Create (Named_Arg_Value (Name, Default)); end Named_Arg_Value; ---------------------------------------------------------------- function Named_arg_value(--| Return a named argument value Name: string; Default: sp.String_type ) return sp.String_type is --| Effects: Return the value associated with Name on the command --| line. If there was none, return Default. begin for i in 1..N_arg_count loop if sp.Equal(sp.Upper(Named_args(i).Name),sp.Upper(sp.Create(Name))) then Named_args(i).Was_retrieved := TRUE; return Named_args(i).Value; end if; end loop; return Default; end; ---------------------------------------------------------------- function Arguments --| Return the entire argument string return string is --| Effects: Return the entire command line, except for the name --| of the command itself. begin return Arg_string; end; ---------------------------------------------------------------- function Parse_Aggregate (Aggregate_Text : in String) return String_Lists.List is type State_type is (Have_Nothing, Have_Ada_ID, Have_Bound_To); First : Natural := Aggregate_Text'First; Last : Natural := Aggregate_Text'Last; Component_List : String_Lists.List := String_Lists.Create; Argument : sp.String_Type; --| Argument scanned from argument string Kind : Token_type; --| Kind of argument- WORD, =>, Ada_ID Scan_string : ss.Scanner; --| Scanned argument string Aggregate_Contents : String_Type; Enclosed_Aggregate_Found : Boolean := False; begin if Aggregate_Text'Length > 0 then Scan_String := SS.Make_Scanner (Create (Aggregate_Text (First .. Last))); SS.Scan_Enclosed ( '(', ')', Scan_String, Found => Enclosed_Aggregate_Found, Result => Aggregate_Contents, Skip => True); if Enclosed_Aggregate_Found then SS.Destroy_Scanner (Scan_String); Scan_String := SS.Make_Scanner (Aggregate_Contents); end if; Parse_Aggregate_String : loop Get_token(Scan_string, Argument, Kind); exit Parse_Aggregate_String when Kind = None; String_Lists.Attach (Component_List, Argument); end loop Parse_Aggregate_String; end if; return Component_List; end Parse_Aggregate; function Parse_Aggregate (Aggregate_Text : in String_Type) return String_Lists.List is begin return Parse_Aggregate (Value (Aggregate_Text)); end Parse_Aggregate; ---------------------------------------------------------------- function Convert (Parameter_Text : in String) return Parameter_Type is begin return Parameter_Type'Value (Parameter_Text); exception when Constraint_Error => CLI_Error ("Invalid Parameter, """ & Value (Mixed (Parameter_Text)) & """ is not a legal value for type " & Value (Mixed (Type_Name)) & '.'); raise Invalid_Parameter; end Convert; ---------------------------------------------------------------- procedure Finalize is --| Raises: unreferenced_named_arg begin for i in 1..Named_arg_count loop if Named_args(i).Was_retrieved = FALSE then CLI_Error ("Invalid Parameter Association, " & Value (Mixed (Named_Args (i).Name)) & " is not a valid Formal Parameter."); raise unreferenced_named_arg; end if; end loop; end Finalize; ------------------------------------------------------------------- procedure Push_Arguments (Text : String) is begin Arg_string (1 .. Text'Last) := Text; Arg_string (Text'Last + 1 .. Arg_string'Last) := (others => ' '); Arg_Pushed := True; end Push_Arguments; end command_line_interface;
-- Abstract: -- -- Bounded stack implementation, with full Spark verification, -- optimized for speed. -- -- Copyright (C) 1998-2000, 2002-2003, 2009, 2015, 2017 - 2020 Free Software Foundation, Inc. -- -- SAL is free software; you can redistribute it and/or modify it -- under terms of the GNU General Public License as published by the -- Free Software Foundation; either version 3, or (at your option) -- any later version. SAL is distributed in the hope that it will be -- useful, but WITHOUT ANY WARRANTY; without even the implied -- warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- See the GNU General Public License for more details. You should -- have received a copy of the GNU General Public License distributed -- with SAL; 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 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. pragma License (Modified_GPL); generic type Element_Type is private; package SAL.Gen_Bounded_Definite_Stacks with Spark_Mode is pragma Pure; -- pragma Suppress (All_Checks); -- Users must check Is_Full before Push, Is_Empty before Pop etc. package Sgbds renames SAL.Gen_Bounded_Definite_Stacks; subtype Size_Type is Base_Peek_Type range 0 .. Base_Peek_Type'Last / 2; -- The upper limit is needed to avoid overflow in Peek. -- Zero included for Depth result. type Stack (Size : Size_Type) is tagged private; -- Tagged to allow Object.Method notation. -- No Empty_Stack constant, to avoid requiring a Default_Element. procedure Clear (Stack : in out Sgbds.Stack) with Post'Class => Depth (Stack) = 0; -- Empty Stack of all items. function Depth (Stack : in Sgbds.Stack) return Size_Type; -- Returns current count of items in Stack function Is_Empty (Stack : in Sgbds.Stack) return Boolean with Post'Class => Is_Empty'Result = (Depth (Stack) = 0); -- Returns true iff no items are in Stack. function Is_Full (Stack : in Sgbds.Stack) return Boolean with Post'Class => Is_Full'Result = (Depth (Stack) = Stack.Size); -- Returns true iff Stack is full. function Peek (Stack : in Sgbds.Stack; Index : in Peek_Type := 1) return Element_Type with Pre'Class => Depth (Stack) in 1 .. Stack.Size and Index in 1 .. Depth (Stack); -- Return the Index'th item from the top of Stack; the Item is _not_ removed. -- Top item has index 1. procedure Pop (Stack : in out Sgbds.Stack; Count : in Base_Peek_Type := 1) with Pre'Class => Depth (Stack) in 1 .. Stack.Size and Count in 0 .. Depth (Stack), Post'Class => Depth (Stack) = Depth (Stack)'Old - Count and then (for all I in 1 .. Depth (Stack) => Peek (Stack'Old, I + Count) = Peek (Stack, I)); -- Remove Count Items from the top of Stack, discard them. procedure Pop (Stack : in out Sgbds.Stack; Item : out Element_Type) with Pre'Class => Depth (Stack) in 1 .. Stack.Size, Post'Class => Depth (Stack) = Depth (Stack)'Old - 1 and then (Item = Peek (Stack'Old) and (for all I in 1 .. Depth (Stack) => Peek (Stack'Old, I + 1) = Peek (Stack, I))); -- Remove one item from the top of Stack, return in Item. function Pop (Stack : in out Sgbds.Stack) return Element_Type with Spark_Mode => Off; -- Remove one item from the top of Stack, and return it. procedure Push (Stack : in out Sgbds.Stack; Item : in Element_Type) with Pre'Class => Depth (Stack) in 0 .. Stack.Size - 1, Post'Class => Depth (Stack) = Depth (Stack)'Old + 1 and then (Item = Peek (Stack) and (for all I in 1 .. Depth (Stack'Old) => Peek (Stack'Old, I) = Peek (Stack, I + 1))); -- Add Item to the top of Stack. private type Element_Array is array (Size_Type range <>) of aliased Element_Type; type Stack (Size : Size_Type) is tagged record Top : Base_Peek_Type := Invalid_Peek_Index; -- empty Data : Element_Array (1 .. Size); -- Top of stack is at Data (Top). -- Data (1 .. Top) has been set at some point. end record with Dynamic_Predicate => Stack.Top in 0 .. Stack.Size; end SAL.Gen_Bounded_Definite_Stacks;
with Ayacc_File_Names, Text_IO, Source_File, Str_pack; use Ayacc_File_Names, Text_IO; package body Error_Report_File is -- -- TITLE: package body Error_Report_File -- Output the code which allows users to see what the error token was. -- This is for non-correctable errors. -- Also in this package: The declaration of user actions for correctable -- (continuable) errors. -- -- LANGUAGE: -- Ada -- -- PERSONNEL: -- AUTHOR: Benjamin Hurwitz -- DATE: Jul 27 1990 -- -- OVERVIEW: -- Parse the last section of the .y file, looking for -- %report_continuable_error and the related procedures. From these, -- generate procedure bodies which will be called from yyparse when -- there is an error which has been corrected. Since the errors get -- corrected, yyerror does not get called. -- max_line_length : constant integer := 370; The_File : File_Type; -- Where the error report goes Text : String(1..max_line_length); -- Current line from source file Length : Natural := 1; -- and its length -- types of lines found in the continuable error report section type user_defined_thing is (with_thing, use_thing, init_thing, report_thing, finish_thing, line_thing, eof_thing); -- -- TITLE: -- Get Next Thing : Classify a line of text from the user defined error -- report section of the .y file -- -- OVERVIEW: -- Read one line of the .y file, classifying it. -- In the case of a %use or %with line, set the global variables Text and -- Length to the tail of the line after the %use or %with. -- ................................................... procedure get_next_thing(thing : in out user_defined_thing) is use str_pack; with_string : constant string := "%WITH"; use_string : constant string := "%USE"; init_string : constant string := "%INITIALIZE_ERROR_REPORT"; finish_string: constant string:= "%TERMINATE_ERROR_REPORT"; report_string: constant string:= "%REPORT_ERROR"; temp : STR(max_line_length); begin if thing = eof_thing or else Source_File.is_end_of_file then thing := eof_thing; return; end if; Source_File.Read_Line(Text, Length); if length >= use_string'length then assign(text(1..use_string'length), temp); if value_of(upper_case(temp)) = use_string then thing := use_thing; length := length - use_string'length; text(1..length) := text((use_string'length + 1).. length + use_string'length); return; end if; end if; if length >= with_string'length then assign(text(1..with_string'length), temp); if Value_of(upper_case(temp)) = with_string then thing := with_thing; length := length - with_string'length; text(1..length) := text((with_string'length + 1).. length + with_string'length); return; end if; end if; if length >= init_string'length then assign(text(1..init_string'length), temp); if Value_of(str_pack.upper_case(temp)) = init_string then thing := init_thing; return; end if; end if; if length >= finish_string'length then assign(text(1..finish_string'length), temp); if value_of(str_pack.upper_case(temp)) = finish_string then thing := finish_thing; return; end if; end if; if length >= report_string'length then assign(text(1..report_string'length), temp); if value_of(str_pack.upper_case(temp)) = report_string then thing := report_thing; return; end if; end if; thing := line_thing; end get_next_thing; -- -- TITLE: procedure Write_Line -- Write out a line to the Error Report generated ada file. -- -- OVERVIEW: -- -- ................................................... procedure Write_Line(S: in String) is begin Put_Line(The_File, S); end Write_Line; -- -- TITLE: -- Write the body of one of the user-defined procedures -- -- OVERVIEW: -- If User is True it means the user is defining the procedure body. So -- copy it from the source file. Otherwise provide a null body. -- ................................................... procedure write_thing(user : in boolean; thing : in out user_defined_thing) is begin if user then loop get_next_thing(thing); exit when thing /= line_thing; Write_Line(Text(1..length)); end loop; else Write_Line("begin"); Write_Line(" null;"); Write_Line("end;"); end if; Write_Line(""); end write_thing; -- -- TITLE: -- Write the error report initialization function -- -- OVERVIEW: -- Write the header & then then body -- ................................................... procedure write_init(user : in boolean; thing : in out user_defined_thing) is begin Write_Line("procedure Initialize_User_Error_Report is"); write_thing(user, thing); end write_init; -- -- TITLE: -- Write the error report completion function -- -- OVERVIEW: -- Write the header & then then body -- ................................................... procedure write_finish(user : in boolean; thing : in out user_defined_thing) is begin Write_Line("procedure Terminate_User_Error_Report is"); write_thing(user, thing); end write_finish; -- -- TITLE: -- Write the error report function -- -- OVERVIEW: -- Write out the header with signature and then the body. -- ................................................... procedure write_report(user : in boolean; thing : in out user_defined_thing) is begin Write_Line("procedure Report_Continuable_Error "); Write_Line(" (Line_Number : in Natural;"); Write_Line(" Offset : in Natural;"); Write_Line(" Finish : in Natural;"); Write_Line(" Message : in String;"); Write_Line(" Error : in Boolean) is"); write_thing(user, thing); end write_report; -- -- TITLE: procedure Write_File -- Create & open the Error_Report file, dump its contents. -- -- PERSONNEL: -- AUTHOR: Benjamin Hurwitz -- DATE: Mar 11 1990 -- -- OVERVIEW: -- The file being created will be used to report errors which yyparse -- encounters. Some of them it can correct, and some it cannot. -- There are different mechanisms for reporting each of these. There -- is default reporting of corrected errors; messages are written -- into the .lis file (Put, Put_Line). Also, -- the user can define his/her own error reporting of correctable errors -- in the last section of the .y file. If so, we here construct the -- error report file so as to use these procedures. -- Also in this package are variables and routines to -- manipulate error information which the user can call from yyerror, -- the procedure called when a non-correctable error is encountered. -- The things generated which vary with runs of Ayacc is the names -- of the Ada units, the packages With'ed and Used by the generated -- error report package body and the bodies of the user-defined error report -- routines for continuable errors. -- -- NOTES: -- This procedure is exported from the package. -- -- SUBPROGRAM BODY: -- procedure Write_File is current_thing : user_defined_thing := line_thing; wrote_init : boolean := false; wrote_finish : boolean := false; wrote_report : boolean := false; begin Create(The_File, Out_File, Get_Error_Report_File_Name); Write_Line("package " & Error_Report_Unit_Name & " is"); Write_Line(""); Write_Line(" Syntax_Error : Exception;"); Write_Line(" Syntax_Warning : Exception;"); Write_Line(" Total_Errors : Natural := 0; -- number of syntax errors found." ); Write_Line(" Total_Warnings : Natural := 0; -- number of syntax warnings found." ); Write_Line(" "); Write_Line(" procedure Report_Continuable_Error(Line_Number : in Natural;"); Write_Line(" Offset : in Natural;"); Write_Line(" Finish : in Natural;"); Write_Line(" Message : in String;"); Write_Line(" Error : in Boolean);"); Write_Line(""); Write_Line(" procedure Initialize_Output;"); Write_Line(""); Write_Line(" procedure Finish_Output;"); Write_Line(""); Write_Line(" procedure Put(S: in String);"); Write_Line(""); Write_Line(" procedure Put(C: in Character);"); Write_Line(""); Write_Line(" procedure Put_Line(S: in String);"); Write_Line(""); Write_Line("end " & Error_Report_Unit_Name & ";"); Write_Line(""); Write_Line(""); Write_Line("with Text_IO;"); -- Get %with's & %use's from source file loop get_next_thing(current_thing); if current_thing = with_thing then Write_Line("With " & text(1..length)); elsif current_thing = use_thing then Write_Line("Use " & text(1..length)); elsif current_thing = line_thing then null; else exit; end if; end loop; Write_Line(""); Write_Line("package body " & Error_Report_Unit_Name & " is"); Write_Line(""); Write_Line(" The_File : Text_io.File_Type;"); Write_Line(""); -- Get user declarations of error reporting procedures from source file while(current_thing /= eof_thing) loop if current_thing = init_thing then Write_init(true, current_thing); wrote_init := true; elsif current_thing = finish_thing then Write_finish(true, current_thing); wrote_finish := true; elsif current_thing = report_thing then Write_report(true, current_thing); wrote_report := true; else get_next_thing(current_thing); end if; end loop; if not wrote_init then Write_init(false, current_thing); end if; if not wrote_finish then Write_finish(false, current_thing); end if; if not wrote_report then Write_report(false, current_thing); end if; Write_Line(""); Write_Line(" procedure Initialize_Output is"); Write_Line(" begin"); Write_Line(" Text_io.Create(The_File, Text_io.Out_File, " & '"' & Get_Listing_File_Name & '"' & ");"); Write_Line(" initialize_user_error_report;"); Write_Line(" end Initialize_Output;"); Write_Line(""); Write_Line(" procedure Finish_Output is"); Write_Line(" begin"); Write_Line(" Text_io.Close(The_File);"); Write_Line(" terminate_user_error_report;"); Write_Line(" end Finish_Output;"); Write_Line(""); Write_Line(" procedure Put(S: in String) is"); Write_Line(" begin"); Write_Line(" Text_io.put(The_File, S);"); Write_Line(" end Put;"); Write_Line(""); Write_Line(" procedure Put(C: in Character) is"); Write_Line(" begin"); Write_Line(" Text_io.put(The_File, C);"); Write_Line(" end Put;"); Write_Line(""); Write_Line(" procedure Put_Line(S: in String) is"); Write_Line(" begin"); Write_Line(" Text_io.put_Line(The_File, S);"); Write_Line(" end Put_Line;"); Write_Line(""); Write_Line(""); Write_Line("end " & Error_Report_Unit_Name & ";"); Close(The_File); end Write_File; -- ................................................... begin null; end Error_Report_File;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_set_dashes_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; pad0 : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; gc : aliased xcb.xcb_gcontext_t; dash_offset : aliased Interfaces.Unsigned_16; dashes_len : aliased Interfaces.Unsigned_16; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_set_dashes_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_set_dashes_request_t.Item, Element_Array => xcb.xcb_set_dashes_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_set_dashes_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_set_dashes_request_t.Pointer, Element_Array => xcb.xcb_set_dashes_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_set_dashes_request_t;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_is_enabled_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; context_tag : aliased xcb.xcb_glx_context_tag_t; capability : aliased Interfaces.Unsigned_32; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_is_enabled_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_is_enabled_request_t.Item, Element_Array => xcb.xcb_glx_is_enabled_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_glx_is_enabled_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_is_enabled_request_t.Pointer, Element_Array => xcb.xcb_glx_is_enabled_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_is_enabled_request_t;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UMLDI.UML_Labels.Hash is new AMF.Elements.Generic_Hash (UMLDI_UML_Label, UMLDI_UML_Label_Access);
-- AOC 2020, Day 1 with Ada.Text_IO; use Ada.Text_IO; with Day; use Day; procedure main is v : constant XMAS_Vector.Vector := load_file("input.txt"); invalid : constant Long_Integer := first_invalid(v, 25); contig : constant Long_Integer := find_sum(v, invalid); begin put_line("Part 1: " & Long_Integer'Image(invalid)); put_line("Part 2: " & Long_Integer'Image(contig)); end main;
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt package body Replicant.Platform is ------------------ -- df_command -- ------------------ function df_command return String is begin case platform_type is when dragonfly | freebsd | netbsd => return "/bin/df -h"; when solaris => return "/usr/sbin/df -h"; when linux => return "/usr/bin/df -h"; when unknown => return "skip"; end case; end df_command; ------------------------- -- file_type_command -- ------------------------- function file_type_command return String is bsd_command : constant String := "/usr/bin/file -b " & JT.USS (PM.configuration.dir_system) & "/bin/sh"; lin_command : constant String := "/usr/bin/file -b " & JT.USS (PM.configuration.dir_system) & "/usr/bin/bash"; sol_command : constant String := "/usr/bin/file " & JT.USS (PM.configuration.dir_system) & "/usr/sbin/sh"; begin case platform_type is when freebsd | dragonfly | netbsd => return bsd_command; when linux => return lin_command; when solaris => return sol_command; when unknown => return "bad file_type_command invocation"; end case; end file_type_command; -------------------------- -- file_is_executable -- -------------------------- function file_is_executable (filename : String) return Boolean is command : constant String := "/usr/bin/file -b -L " & "-e ascii -e encoding -e tar -e compress " & LAT.Quotation & filename & LAT.Quotation; sol_cmd : constant String := "/usr/bin/file " & LAT.Quotation & filename & LAT.Quotation; comres : JT.Text; begin case platform_type is when dragonfly | freebsd | netbsd | linux => comres := internal_system_command (command); when solaris => comres := internal_system_command (sol_cmd); when unknown => return False; end case; return JT.contains (comres, "executable"); exception when others => return False; end file_is_executable; -------------------------- -- dynamically_linked -- -------------------------- function dynamically_linked (base, filename : String) return Boolean is command : String := chroot & base & " /usr/bin/file -b -L " & "-e ascii -e encoding -e tar -e compress " & LAT.Quotation & filename & LAT.Quotation; sol_cmd : constant String := "/usr/bin/file " & LAT.Quotation & filename & LAT.Quotation; comres : JT.Text; begin case platform_type is when dragonfly | freebsd | netbsd | linux => comres := internal_system_command (command); when solaris => comres := internal_system_command (sol_cmd); when unknown => return False; end case; return JT.contains (comres, "dynamically linked"); exception when others => return False; end dynamically_linked; ----------------------------------- -- isolate_arch_from_file_type -- ----------------------------------- function isolate_arch_from_file_type (fileinfo : String) return filearch is -- DF: ELF 64-bit LSB executable, x86-64 -- FB: ELF 64-bit LSB executable, x86-64 -- FB: ELF 32-bit LSB executable, Intel 80386 -- NB: ELF 64-bit LSB executable, x86-64 -- L: ELF 64-bit LSB executable, x86-64 -- OPN: ELF 64-bit LSB shared object, x86-64, version 1 (FreeBSD), ... fragment : constant String := JT.trim (JT.specific_field (fileinfo, 2, ",")); answer : filearch := (others => ' '); begin if fragment'Length > filearch'Length then answer := fragment (fragment'First .. fragment'First + filearch'Length - 1); else answer (answer'First .. answer'First + fragment'Length - 1) := fragment; end if; return answer; end isolate_arch_from_file_type; ---------------------------------- -- get_arch_from_bourne_shell -- ---------------------------------- function get_arch_from_bourne_shell return String is function translate_arch (arch : filearch) return String; badarch : constant String := "BADARCH"; comres : JT.Text; arch : filearch; function translate_arch (arch : filearch) return String is begin if arch (arch'First .. arch'First + 5) = "x86-64" or else arch (arch'First .. arch'First + 4) = "AMD64" then case platform_type is when freebsd => return "amd64"; when netbsd => return "amd64"; when dragonfly => return "x86_64"; when linux => return "x86_64"; when solaris => return "x86_64"; when unknown => return badarch; end case; elsif arch = "ARM aarch64" then return "aarch64"; elsif arch = "ARM " then return "armv6"; elsif arch = "Intel 80386" then return "i386"; else return badarch; end if; end translate_arch; begin comres := internal_system_command (file_type_command); arch := isolate_arch_from_file_type (JT.USS (comres)); return translate_arch (arch); exception when others => return badarch; end get_arch_from_bourne_shell; -------------------------------------- -- determine_package_architecture -- -------------------------------------- function determine_package_architecture return package_abi is function newsuffix (arch : filearch) return String; function suffix (arch : filearch) return String; function get_major (fileinfo : String; OS : String) return String; function even (fileinfo : String) return String; command : constant String := file_type_command; res : package_abi; arch : filearch; UN : JT.Text; function suffix (arch : filearch) return String is begin if arch (arch'First .. arch'First + 5) = "x86-64" or else arch (arch'First .. arch'First + 4) = "AMD64" then return "x86:64"; elsif arch = "Intel 80386" then return "x86:32"; elsif arch = "ARM aarch64" then return "aarch64:64"; elsif arch = "ARM " then return "armv6:32:el:eabi:softfp"; else return "unknown:" & arch; end if; end suffix; function newsuffix (arch : filearch) return String is begin if arch (arch'First .. arch'First + 5) = "x86-64" or else arch (arch'First .. arch'First + 4) = "AMD64" then return "amd64"; elsif arch = "Intel 80386" then return "i386"; elsif arch = "ARM aarch64" then return "arm64"; elsif arch = "ARM " then return "armv6"; else return "unknown:" & arch; end if; end newsuffix; function even (fileinfo : String) return String is -- DF 4.5-DEVELOPMENT: ... DragonFly 4.0.501 -- DF 4.10-RELEASE : ... DragonFly 4.0.1000 -- DF 4.11-DEVELOPMENT: ... DragonFly 4.0.1102 -- -- Alternative future format (file version 2.0) -- DFV 400702: ... DragonFly 4.7.2 -- DFV 401117: .. DragonFly 4.11.17 rest : constant String := JT.part_2 (fileinfo, "DragonFly "); major : constant String := JT.part_1 (rest, "."); rest2 : constant String := JT.part_2 (rest, "."); part2 : constant String := JT.part_1 (rest2, "."); rest3 : constant String := JT.part_2 (rest2, "."); part3 : constant String := JT.part_1 (rest3, ","); minor : String (1 .. 2) := "00"; point : Character; begin if part2 = "0" then -- version format in October 2016 declare mvers : String (1 .. 4) := "0000"; lenp3 : constant Natural := part3'Length; begin mvers (mvers'Last - lenp3 + 1 .. mvers'Last) := part3; minor := mvers (1 .. 2); end; else -- Alternative future format (file version 2.0) declare lenp2 : constant Natural := part2'Length; begin minor (minor'Last - lenp2 + 1 .. minor'Last) := part2; end; end if; point := minor (2); case point is when '1' => minor (2) := '2'; when '3' => minor (2) := '4'; when '5' => minor (2) := '6'; when '7' => minor (2) := '8'; when '9' => minor (2) := '0'; minor (1) := Character'Val (Character'Pos (minor (1)) + 1); when others => null; end case; if minor (1) = '0' then return major & "." & minor (2); else return major & "." & minor (1 .. 2); end if; end even; function get_major (fileinfo : String; OS : String) return String is -- FreeBSD 10.2, stripped -- FreeBSD 11.0 (1100093), stripped -- NetBSD 7.0.1, not stripped rest : constant String := JT.part_2 (fileinfo, OS); major : constant String := JT.part_1 (rest, "."); begin return major; end get_major; begin UN := internal_system_command (file_type_command); arch := isolate_arch_from_file_type (JT.USS (UN)); case platform_type is when dragonfly => declare dfly : constant String := "dragonfly:"; release : constant String := even (JT.USS (UN)); begin res.calculated_abi := JT.SUS (dfly); JT.SU.Append (res.calculated_abi, release & ":"); res.calc_abi_noarch := res.calculated_abi; JT.SU.Append (res.calculated_abi, suffix (arch)); JT.SU.Append (res.calc_abi_noarch, "*"); res.calculated_alt_abi := res.calculated_abi; res.calc_alt_abi_noarch := res.calc_abi_noarch; end; when freebsd => declare fbsd1 : constant String := "FreeBSD:"; fbsd2 : constant String := "freebsd:"; release : constant String := get_major (JT.USS (UN), "FreeBSD "); begin res.calculated_abi := JT.SUS (fbsd1); res.calculated_alt_abi := JT.SUS (fbsd2); JT.SU.Append (res.calculated_abi, release & ":"); JT.SU.Append (res.calculated_alt_abi, release & ":"); res.calc_abi_noarch := res.calculated_abi; res.calc_alt_abi_noarch := res.calculated_alt_abi; JT.SU.Append (res.calculated_abi, newsuffix (arch)); JT.SU.Append (res.calculated_alt_abi, suffix (arch)); JT.SU.Append (res.calc_abi_noarch, "*"); JT.SU.Append (res.calc_alt_abi_noarch, "*"); end; when netbsd => declare net1 : constant String := "NetBSD:"; net2 : constant String := "netbsd:"; release : constant String := get_major (JT.USS (UN), "NetBSD "); begin res.calculated_abi := JT.SUS (net1); res.calculated_alt_abi := JT.SUS (net2); JT.SU.Append (res.calculated_abi, release & ":"); JT.SU.Append (res.calculated_alt_abi, release & ":"); res.calc_abi_noarch := res.calculated_abi; res.calc_alt_abi_noarch := res.calculated_alt_abi; JT.SU.Append (res.calculated_abi, newsuffix (arch)); JT.SU.Append (res.calculated_alt_abi, suffix (arch)); JT.SU.Append (res.calc_abi_noarch, "*"); JT.SU.Append (res.calc_alt_abi_noarch, "*"); end; when linux => null; -- TBD (check ABI first) when solaris => null; -- TBD (check ABI first) when unknown => null; end case; return res; end determine_package_architecture; ------------------------ -- swapinfo_command -- ------------------------ function swapinfo_command return String is begin case platform_type is when dragonfly | freebsd => return "/usr/sbin/swapinfo -k"; when netbsd => return "/sbin/swapctl -lk"; when linux => return "/usr/sbin/swapon --bytes --show=NAME,SIZE,USED,PRIO"; when solaris => return "/usr/sbin/swap -lk"; when unknown => return ""; end case; end swapinfo_command; ------------------------- -- interactive_shell -- ------------------------- function interactive_shell return String is begin case platform_type is when dragonfly | freebsd => return "/bin/tcsh"; when netbsd => return "/bin/sh"; when linux => return "/bin/bash"; when solaris => return "TBD"; when unknown => return "DONTCARE"; end case; end interactive_shell; ----------------- -- load_core -- ----------------- function load_core (instant_load : Boolean) return Float is ----------------- 123456789-123456789-123456789- -- DFLY/FreeBSD: vm.loadavg: { 0.00 0.00 0.00 } -- NetBSD: vm.loadavg: 0.00 0.00 0.00 -- Linux: 0.00 0.01 0.05 3/382 15409 -- Solaris: [~42 chars]load average: 0.01, 0.01, 0.01 comres : JT.Text; bsd : constant String := "/usr/bin/env LANG=C /sbin/sysctl vm.loadavg"; lin : constant String := "/usr/bin/cat /proc/loadavg"; sol : constant String := "/usr/bin/uptime"; zero : constant Float := 0.0; hi : Integer; lo : Integer; begin case platform_type is when dragonfly | freebsd => comres := internal_system_command (bsd); lo := 15; hi := 25; when netbsd => comres := internal_system_command (bsd); lo := 13; hi := 23; when linux => comres := internal_system_command (lin); lo := 1; hi := 10; when solaris => comres := internal_system_command (sol); when unknown => return zero; end case; case platform_type is when dragonfly | freebsd | netbsd | linux => declare stripped : constant String := JT.SU.Slice (Source => comres, Low => lo, High => hi); begin if instant_load then declare instant : String := JT.part_1 (stripped, " "); begin return Float'Value (instant); end; else declare min5 : String := JT.part_1 (JT.part_2 (stripped, " "), " "); begin return Float'Value (min5); end; end if; end; when solaris => declare stripped : constant String := JT.part_2 (JT.USS (comres), "load average: "); begin if instant_load then declare instant : constant String := JT.part_1 (stripped, ", "); begin return Float'Value (instant); end; else declare min5 : String := JT.part_1 (JT.part_2 (stripped, ", "), ", "); begin return Float'Value (min5); end; end if; end; when unknown => return zero; end case; exception when others => return zero; end load_core; ------------------------ -- get_instant_load -- ------------------------ function get_instant_load return Float is begin return load_core (instant_load => True); end get_instant_load; ------------------------- -- get_5_minute_load -- ------------------------- function get_5_minute_load return Float is begin return load_core (instant_load => False); end get_5_minute_load; ----------------------- -- get_number_cpus -- ----------------------- function get_number_cpus return Positive is -- Chicken/Egg issue. -- Platform type is not available. This function is called before -- The profile loading which requires the number of cpus as an argument. -- Therefore, we need two commands, the first being getting the OPSYS -- through the uname -s command. type opsys is (FreeFly, NetBSD, Linux, Solaris, Unsupported); uname : constant String := "/usr/bin/uname -s"; bsd_cmd : constant String := "/sbin/sysctl hw.ncpu"; lin_cmd : constant String := "/usr/bin/nproc"; sol_cmd : constant String := "/usr/sbin/psrinfo -pv"; thissys : opsys; comres : JT.Text; status : Integer; start : Positive; begin comres := Unix.piped_command (uname, status); if status /= 0 then return 1; end if; declare resstr : String := JT.USS (comres); opsys_str : String := resstr (resstr'First .. resstr'Last - 1); begin if opsys_str = "FreeBSD" then thissys := FreeFly; elsif opsys_str = "DragonFly" then thissys := FreeFly; elsif opsys_str = "NetBSD" then thissys := NetBSD; elsif opsys_str = "Linux" then thissys := Linux; elsif opsys_str = "SunOS" then thissys := Solaris; else thissys := Unsupported; end if; end; -- DF/Free: expected output: "hw.ncpu: C" where C is integer -- NetBSD: expected output: "hw.ncpu = C" -- Linux: expected output: "C" -- Solaris: expected output: -- The physical processor has 64 virtual processors (0-63) -- UltraSPARC-T2+ (cpuid 0 clock 1165 MHz) -- The physical processor has 64 virtual processors (64-127) -- UltraSPARC-T2+ (cpuid 64 clock 1165 MHz) case thissys is when FreeFly => start := 10; comres := Unix.piped_command (bsd_cmd, status); when NetBSD => start := 11; comres := Unix.piped_command (bsd_cmd, status); when Linux => start := 1; comres := Unix.piped_command (lin_cmd, status); when Solaris => start := 1; comres := Unix.piped_command (sol_cmd, status); -- garbage (incomplete). See src/parameters.adb#L686 off ravenadm for rest when Unsupported => return 1; end case; if status /= 0 then return 1; end if; declare resstr : String := JT.USS (comres); ncpu : String := resstr (start .. resstr'Last - 1); number : Positive := Integer'Value (ncpu); begin return number; exception when others => return 1; end; end get_number_cpus; ------------------------------ -- set_file_as_executable -- ------------------------------ procedure set_file_as_executable (fullpath : String) is -- supported by all platforms command : constant String := "/bin/chmod 755 " & fullpath; begin silent_exec (command); exception when others => null; end set_file_as_executable; ------------------------------- -- standalone_pkg8_install -- ------------------------------- function standalone_pkg8_install (id : builders) return Boolean is smount : constant String := get_slave_mount (id); taropt1 : constant String := "*/pkg-static"; taropt2 : constant String := "*/pkg-static */pkgng_admin"; command : constant String := chroot & smount & " /usr/bin/tar -x --xz -f /packages/Latest/pkg.txz -C / "; install_make : constant String := chroot & smount & " /usr/pkg/sbin/pkg-static add -A /packages/Latest/bmake.txz"; begin case software_framework is when ports_collection => silent_exec (command & taropt1); when pkgsrc => silent_exec (command & taropt2); silent_exec (install_make); end case; return True; exception when others => return False; end standalone_pkg8_install; ------------------------------ -- host_pkgsrc_mk_install -- ------------------------------ function host_pkgsrc_mk_install (id : builders) return Boolean is smount : constant String := get_slave_mount (id); src_dir : constant String := host_localbase & "/share/mk"; tgt_dir : constant String := smount & root_localbase & "/share/mk"; begin return copy_directory_contents (src_dir, tgt_dir, "*.mk"); end host_pkgsrc_mk_install; --------------------------------- -- host_pkgsrc_bmake_install -- --------------------------------- function host_pkgsrc_bmake_install (id : builders) return Boolean is smount : constant String := get_slave_mount (id); host_bmake : constant String := host_localbase & "/bin/bmake"; slave_path : constant String := smount & root_localbase & "/bin"; slave_bmake : constant String := slave_path & "/bmake"; begin if not AD.Exists (host_bmake) then return False; end if; AD.Create_Path (slave_path); AD.Copy_File (Source_Name => host_bmake, Target_Name => slave_bmake); set_file_as_executable (slave_bmake); return True; exception when others => return False; end host_pkgsrc_bmake_install; ---------------------------------- -- host_pkgsrc_digest_install -- ---------------------------------- function host_pkgsrc_digest_install (id : builders) return Boolean is smount : String := get_slave_mount (id); host_digest : String := host_localbase & "/bin/digest"; slave_digest : String := smount & root_localbase & "/bin/digest"; begin if not AD.Exists (host_digest) then return False; end if; AD.Copy_File (Source_Name => host_digest, Target_Name => slave_digest); set_file_as_executable (slave_digest); return True; exception when others => return False; end host_pkgsrc_digest_install; -------------------------------- -- host_pkgsrc_pkg8_install -- -------------------------------- function host_pkgsrc_pkg8_install (id : builders) return Boolean is smount : constant String := get_slave_mount (id); host_pkgst : constant String := host_localbase & "/sbin/pkg-static"; host_admin : constant String := host_localbase & "/sbin/pkgng_admin"; slave_path : constant String := smount & root_localbase & "/sbin"; slave_pkg : constant String := slave_path & "/pkg-static"; slave_admin : constant String := slave_path & "/pkgng_admin"; begin if not AD.Exists (host_pkgst) or else not AD.Exists (host_admin) then return False; end if; AD.Create_Path (slave_path); AD.Copy_File (Source_Name => host_pkgst, Target_Name => slave_pkg); AD.Copy_File (Source_Name => host_admin, Target_Name => slave_admin); set_file_as_executable (slave_pkg); set_file_as_executable (slave_admin); return True; exception when others => return False; end host_pkgsrc_pkg8_install; ---------------------------- -- cache_port_variables -- ---------------------------- procedure cache_port_variables (path_to_mm : String) is function create_OSRELEASE (OSRELEASE : String) return String; procedure write_if_defined (varname, value : String); OSVER : constant String := get_osversion_from_param_header; ARCH : constant String := get_arch_from_bourne_shell; portsdir : constant String := JT.USS (PM.configuration.dir_portsdir); fullport : constant String := portsdir & "/ports-mgmt/pkg"; command : constant String := host_make & " __MAKE_CONF=/dev/null -C " & fullport & " USES=" & LAT.Quotation & "python compiler:features objc" & LAT.Quotation & " GNU_CONFIGURE=1 USE_JAVA=1 USE_LINUX=1" & " -VHAVE_COMPAT_IA32_KERN" & " -VCONFIGURE_MAX_CMD_LEN" & " -V_PERL5_FROM_BIN" & " -V_CCVERSION_921dbbb2" & " -V_CXXINTERNAL_acaad9ca" & " -V_OBJC_CCVERSION_921dbbb2" & " -VCC_OUTPUT_921dbbb2_58173849" & -- c89 " -VCC_OUTPUT_921dbbb2_9bdba57c" & -- c99 " -VCC_OUTPUT_921dbbb2_6a4fe7f5" & -- c11 " -VCC_OUTPUT_921dbbb2_6bcac02b" & -- gnu89 " -VCC_OUTPUT_921dbbb2_67d20829" & -- gnu99 " -VCC_OUTPUT_921dbbb2_bfa62e83" & -- gnu11 " -VCC_OUTPUT_921dbbb2_f0b4d593" & -- c++98 " -VCC_OUTPUT_921dbbb2_308abb44" & -- c++0x " -VCC_OUTPUT_921dbbb2_f00456e5" & -- c++11 " -VCC_OUTPUT_921dbbb2_65ad290d" & -- c++14 " -VCC_OUTPUT_921dbbb2_b2657cc3" & -- gnu++98 " -VCC_OUTPUT_921dbbb2_380987f7"; -- gnu++11 content : JT.Text; topline : JT.Text; status : Integer; vconf : TIO.File_Type; type result_range is range 1 .. 18; function create_OSRELEASE (OSRELEASE : String) return String is -- FreeBSD OSVERSION is 6 or 7 digits -- OSVERSION [M]MNNPPP -- DragonFly OSVERSION is 6 digits -- OSVERSION MNNNPP -- NetBSD OSVERSION is 9 or 10 digits -- OSVERSION [M]MNNrrPP00 len : constant Natural := OSRELEASE'Length; OSR : constant String (1 .. len) := OSRELEASE; MM : String (1 .. 2) := " "; NN : String (1 .. 2) := " "; PP : String (1 .. 2) := " "; FL : Natural; one_digit : Boolean := True; begin if len < 6 then return "1.0-SYNTH"; end if; case platform_type is when dragonfly => MM (2) := OSR (1); FL := 3; when freebsd => if len > 6 then one_digit := False; end if; FL := len - 4; when netbsd => if len > 9 then one_digit := False; end if; FL := len - 7; if OSR (FL + 4) = '0' then PP (2) := OSR (FL + 5); else PP := OSR (FL + 4 .. FL + 5); end if; when unknown => null; when linux | solaris => null; -- TBD end case; if one_digit then MM (2) := OSR (1); else MM := OSR (1 .. 2); end if; if OSR (FL) = '0' then NN (2) := OSR (FL + 1); else NN := OSR (FL .. FL + 1); end if; case software_framework is when ports_collection => return JT.trim (MM) & "." & JT.trim (NN) & "-SYNTH"; when pkgsrc => case platform_type is when netbsd => return JT.trim (MM) & "." & JT.trim (NN) & "." & JT.trim (PP); when others => return JT.trim (MM) & "." & JT.trim (NN); end case; end case; end create_OSRELEASE; procedure write_if_defined (varname, value : String) is begin if value /= "" then TIO.Put_Line (vconf, varname & "=" & value); end if; end write_if_defined; release : constant String := create_OSRELEASE (OSVER); begin builder_env := JT.blank; TIO.Create (File => vconf, Mode => TIO.Out_File, Name => path_to_mm & "/varcache.conf"); -- framework specific parts case software_framework is when ports_collection => content := Unix.piped_command (command, status); if status = 0 then for k in result_range loop JT.nextline (lineblock => content, firstline => topline); declare value : constant String := JT.USS (topline); begin case k is when 1 => TIO.Put_Line (vconf, "HAVE_COMPAT_IA32_KERN=" & value); when 2 => TIO.Put_Line (vconf, "CONFIGURE_MAX_CMD_LEN=" & value); when 3 => TIO.Put_Line (vconf, "_PERL5_FROM_BIN=" & value); when 4 => write_if_defined ("_CCVERSION_921dbbb2", value); when 5 => write_if_defined ("_CXXINTERNAL_acaad9ca", value); when 6 => write_if_defined ("_OBJC_CCVERSION_921dbbb2", value); when 7 => write_if_defined ("CC_OUTPUT_921dbbb2_58173849", value); when 8 => write_if_defined ("CC_OUTPUT_921dbbb2_9bdba57c", value); when 9 => write_if_defined ("CC_OUTPUT_921dbbb2_6a4fe7f5", value); when 10 => write_if_defined ("CC_OUTPUT_921dbbb2_6bcac02b", value); when 11 => write_if_defined ("CC_OUTPUT_921dbbb2_67d20829", value); when 12 => write_if_defined ("CC_OUTPUT_921dbbb2_bfa62e83", value); when 13 => write_if_defined ("CC_OUTPUT_921dbbb2_f0b4d593", value); when 14 => write_if_defined ("CC_OUTPUT_921dbbb2_308abb44", value); when 15 => write_if_defined ("CC_OUTPUT_921dbbb2_f00456e5", value); when 16 => write_if_defined ("CC_OUTPUT_921dbbb2_65ad290d", value); when 17 => write_if_defined ("CC_OUTPUT_921dbbb2_b2657cc3", value); when 18 => write_if_defined ("CC_OUTPUT_921dbbb2_380987f7", value); end case; end; end loop; end if; TIO.Put_Line (vconf, "_ALTCCVERSION_921dbbb2=none"); TIO.Put_Line (vconf, "_OBJC_ALTCCVERSION_921dbbb2=none"); TIO.Put_Line (vconf, "_SMP_CPUS=" & JT.int2str (Integer (smp_cores))); TIO.Put_Line (vconf, "UID=0"); TIO.Put_Line (vconf, "ARCH=" & ARCH); case platform_type is when freebsd => TIO.Put_Line (vconf, "OPSYS=FreeBSD"); TIO.Put_Line (vconf, "OSVERSION=" & OSVER); when dragonfly => TIO.Put_Line (vconf, "OPSYS=DragonFly"); TIO.Put_Line (vconf, "DFLYVERSION=" & OSVER); TIO.Put_Line (vconf, "OSVERSION=9999999"); when netbsd | linux | solaris => null; when unknown => null; end case; TIO.Put_Line (vconf, "OSREL=" & release (1 .. release'Last - 6)); TIO.Put_Line (vconf, "_OSRELEASE=" & release); TIO.Put_Line (vconf, "PYTHONBASE=/usr/local"); TIO.Put_Line (vconf, "_PKG_CHECKED=1"); when pkgsrc => TIO.Put_Line (vconf, "OS_VERSION= " & release); TIO.Put_Line (vconf, "HOST_MACHINE_ARCH= " & ARCH); case platform_type is when freebsd => TIO.Put_Line (vconf, "OPSYS= FreeBSD" & LAT.LF & "LOWER_OPSYS= freebsd" & LAT.LF & "MAKEFLAGS= OPSYS=FreeBSD"); when dragonfly => TIO.Put_Line (vconf, "OPSYS= DragonFly" & LAT.LF & "LOWER_OPSYS= dragonfly" & LAT.LF & "MAKEFLAGS= OPSYS=DragonFly"); when netbsd => TIO.Put_Line (vconf, "OPSYS= NetBSD" & LAT.LF & "LOWER_OPSYS= netbsd" & LAT.LF & "MAKEFLAGS= OPSYS=NetBSD"); when linux => TIO.Put_Line (vconf, "OPSYS= Linux" & LAT.LF & "LOWER_OPSYS= linux" & LAT.LF & "MAKEFLAGS= OPSYS=Linux"); when solaris => TIO.Put_Line (vconf, "OPSYS= SunOS" & LAT.LF & "LOWER_OPSYS= solaris" & LAT.LF & "MAKEFLAGS= OPSYS=SunOS"); when unknown => null; end case; TIO.Put_Line (vconf, "MAKEFLAGS+= OS_VERSION=" & release & LAT.LF & "MAKEFLAGS+= HOST_MACHINE_ARCH=" & ARCH & LAT.LF & "MAKEFLAGS+= _PKGSRCDIR=/xports"); end case; TIO.Close (vconf); case platform_type is when freebsd => JT.SU.Append (builder_env, "UNAME_s=FreeBSD " & "UNAME_v=FreeBSD\ " & release); when dragonfly => JT.SU.Append (builder_env, "UNAME_s=DragonFly " & "UNAME_v=DragonFly\ " & release); when netbsd => JT.SU.Append (builder_env, "UNAME_s=NetBSD " & "UNAME_v=NetBSD\ " & release); when linux => JT.SU.Append (builder_env, "UNAME_s=Linux " & "UNAME_v=Linux\ " & release); when solaris => JT.SU.Append (builder_env, "UNAME_s=SunOS " & "UNAME_v=SunOS\ " & release); when unknown => null; end case; -- The last entry of builder_env must be a blank space JT.SU.Append (builder_env, " UNAME_p=" & ARCH); JT.SU.Append (builder_env, " UNAME_m=" & ARCH); JT.SU.Append (builder_env, " UNAME_r=" & release & " "); end cache_port_variables; --------------------------------------- -- get_osversion_from_param_header -- --------------------------------------- function get_osversion_from_param_header return String is function get_pattern return String; function get_pattern return String is DFVER : constant String := "#define __DragonFly_version "; FBVER : constant String := "#define __FreeBSD_version "; NBVER : constant String := "#define" & LAT.HT & "__NetBSD_Version__" & LAT.HT; BADVER : constant String := "#define __Unknown_version "; begin case platform_type is when freebsd => return FBVER; when dragonfly => return DFVER; when netbsd => return NBVER; when linux => return BADVER; -- TBD when solaris => return BADVER; -- TBD when unknown => return BADVER; end case; end get_pattern; header : TIO.File_Type; badres : constant String := "100000"; pattern : constant String := get_pattern; paramh : constant String := JT.USS (PM.configuration.dir_system) & "/usr/include/sys/param.h"; begin TIO.Open (File => header, Mode => TIO.In_File, Name => paramh); while not TIO.End_Of_File (header) loop declare Line : constant String := TIO.Get_Line (header); begin if JT.contains (Line, pattern) then declare OSVER : constant String := JT.trim (JT.part_2 (Line, pattern)); len : constant Natural := OSVER'Length; final : Integer; begin exit when len < 7; TIO.Close (header); final := OSVER'First + 5; for x in final + 1 .. OSVER'Last loop case OSVER (x) is when '0' .. '9' => final := x; when others => return OSVER (OSVER'First .. final); end case; end loop; end; end if; end; end loop; TIO.Close (header); return badres; exception when others => if TIO.Is_Open (header) then TIO.Close (header); end if; return badres; end get_osversion_from_param_header; end Replicant.Platform;
-- 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/>. procedure Foo is procedure Nested (L, U : Integer) is subtype Small_Type is Integer range L .. U; type Record_Type (I : Small_Type := L) is record S : String (1 .. I); end record; type Array_Type is array (Integer range <>) of Record_Type; A1 : Array_Type := (1 => (I => 0, S => <>), 2 => (I => 1, S => "A"), 3 => (I => 2, S => "AB")); procedure Discard (R : Record_Type) is begin null; end Discard; begin Discard (A1 (1)); -- STOP end; begin Nested (0, 10); Nested (-10, 10); end Foo;
with Benchmark_S_Graph_1; separate (Benchmark) procedure Eval_S_Graph_1 (Count, Repetitions : Natural) is Base_Name : constant String := "s-graph-1"; begin for J in 0 .. Repetitions loop for I in 1 .. Count loop Measure (Base_Name, Integer (10 ** I * 0.25), J, "create", Benchmark_S_Graph_1.Create'Access); Measure (Base_Name, Integer (10 ** I * 0.25), J, "write", Benchmark_S_Graph_1.Write'Access); Measure (Base_Name, Integer (10 ** I * 0.25), J, "reset", Benchmark_S_Graph_1.Reset'Access); Measure (Base_Name, Integer (10 ** I * 0.25), J, "read", Benchmark_S_Graph_1.Read'Access); Measure (Base_Name, Integer (10 ** I * 0.50), J, "create", Benchmark_S_Graph_1.Create'Access); Measure (Base_Name, Integer (10 ** I * 0.50), J, "write", Benchmark_S_Graph_1.Write'Access); Measure (Base_Name, Integer (10 ** I * 0.50), J, "reset", Benchmark_S_Graph_1.Reset'Access); Measure (Base_Name, Integer (10 ** I * 0.50), J, "read", Benchmark_S_Graph_1.Read'Access); Measure (Base_Name, Integer (10 ** I * 0.75), J, "create", Benchmark_S_Graph_1.Create'Access); Measure (Base_Name, Integer (10 ** I * 0.75), J, "write", Benchmark_S_Graph_1.Write'Access); Measure (Base_Name, Integer (10 ** I * 0.75), J, "reset", Benchmark_S_Graph_1.Reset'Access); Measure (Base_Name, Integer (10 ** I * 0.75), J, "read", Benchmark_S_Graph_1.Read'Access); Measure (Base_Name, Integer (10 ** I * 1.00), J, "create", Benchmark_S_Graph_1.Create'Access); Measure (Base_Name, Integer (10 ** I * 1.00), J, "write", Benchmark_S_Graph_1.Write'Access); Measure (Base_Name, Integer (10 ** I * 1.00), J, "reset", Benchmark_S_Graph_1.Reset'Access); Measure (Base_Name, Integer (10 ** I * 1.00), J, "read", Benchmark_S_Graph_1.Read'Access); end loop; end loop; declare Function_Name : constant String := "create"; Print_Type : constant String := "time"; begin Ada.Text_IO.Put_Line ("\addplot+[smooth,color=blue,mark=square*,mark options={fill=white}] coordinates { % ada " & Base_Name & " " & Function_Name & " " & Print_Type); Print (Base_Name, Repetitions, Function_Name, Print_TIME); Ada.Text_IO.Put_Line ("};"); end; declare Function_Name : constant String := "write"; Print_Type : constant String := "time"; begin Ada.Text_IO.Put_Line ("\addplot+[smooth,color=black,mark=square*,mark options={fill=white}] coordinates { % ada " & Base_Name & " " & Function_Name & " " & Print_Type); Print (Base_Name, Repetitions, Function_Name, Print_TIME); Ada.Text_IO.Put_Line ("};"); end; declare Function_Name : constant String := "read"; Print_Type : constant String := "time"; begin Ada.Text_IO.Put_Line ("\addplot+[smooth,color=red,mark=square*,mark options={fill=white}] coordinates { % ada " & Base_Name & " " & Function_Name & " " & Print_Type); Print (Base_Name, Repetitions, Function_Name, Print_TIME); Ada.Text_IO.Put_Line ("};"); end; Ada.Text_IO.New_Line; declare Function_Name : constant String := "write"; Print_Type : constant String := "size"; begin Ada.Text_IO.Put_Line ("\addplot+[smooth,color=black,mark=square*,mark options={fill=white}] coordinates { % ada " & Base_Name & " " & Function_Name & " " & Print_Type); Print (Base_Name, Repetitions, Function_Name, Print_SIZE); Ada.Text_IO.Put_Line ("};"); end; Ada.Text_IO.New_Line; declare Function_Name : constant String := "write"; Print_Type : constant String := "throughput"; begin Ada.Text_IO.Put_Line ("\addplot+[smooth,color=black,mark=square*,mark options={fill=white}] coordinates { % ada " & Base_Name & " " & Function_Name & " " & Print_Type); Print (Base_Name, Repetitions, Function_Name, Print_THROUGHPUT); Ada.Text_IO.Put_Line ("};"); end; declare Function_Name : constant String := "read"; Print_Type : constant String := "throughput"; begin Ada.Text_IO.Put_Line ("\addplot+[smooth,color=red,mark=square*,mark options={fill=white}] coordinates { % ada " & Base_Name & " " & Function_Name & " " & Print_Type); Print (Base_Name, Repetitions, Function_Name, Print_THROUGHPUT); Ada.Text_IO.Put_Line ("};"); end; end Eval_S_Graph_1;
with impact.d3.Quaternions; with interfaces.c.Pointers; with Interfaces.C; with impact.d3.Scalar; package body impact.d3.Matrix is -- function to_Matrix (Q : in Quaternion) return Matrix_3x3 -- is -- the_Matrix : Matrix_3x3; -- begin -- setRotation (the_Matrix, Q); -- return the_Matrix; -- end; function to_Matrix (xx, xy, xz, yx, yy, yz, zx, zy, zz : in Real) return Matrix_3x3 is begin return (1 => (xx, xy, xz), 2 => (yx, yy, yz), 3 => (zx, zy, zz)); end to_Matrix; procedure setRotation (Self : out Matrix_3x3; From : in Quaternion) is use impact.d3.Quaternions; q : Quaternion renames From; d : constant Real := length2 (q); pragma Assert (d /= 0.0); s : constant Real := 2.0 / d; xs : constant Real := x (q) * s; ys : constant Real := y (q) * s; zs : constant Real := z (q) * s; wx : constant Real := w (q) * xs; wy : constant Real := w (q) * ys; wz : constant Real := w (q) * zs; xx : constant Real := x (q) * xs; xy : constant Real := x (q) * ys; xz : constant Real := x (q) * zs; yy : constant Real := y (q) * ys; yz : constant Real := y (q) * zs; zz : constant Real := z (q) * zs; begin Self := (1 => (1.0 - (yy + zz), xy - wz, xz + wy), 2 => (xy + wz, 1.0 - (xx + zz), yz - wx), 3 => (xz - wy, yz + wx, 1.0 - (xx + yy))); end setRotation; function getColumn (Self : in Matrix_3x3; Which : in math.Index) return Vector_3 is pragma Assert (Which >= 1 and then Which <= 3); begin return (Self (1, which), Self (2, which), Self (3, which)); end getColumn; function getRow (Self : in Matrix_3x3; Which : in math.Index) return Vector_3 is pragma Assert (Which >= 1 and then Which <= 3); begin return (Self (which, 1), Self (which, 2), Self (which, 3)); end getRow; function Row (Self : access Matrix_3x3; Which : in math.Index) return access Vector_3 is pragma Assert (Which >= 1 and then Which <= 3); the_Row : aliased Vector_3; for the_Row'Address use Self (Which, 1)'Address; begin return the_Row'Unchecked_Access; end Row; type Scalars is array (Natural range <>) of aliased Real; package scalar_Pointers is new interfaces.c.Pointers (Natural, Real, Scalars, 0.0); procedure setFromOpenGLSubMatrix (Self : in out Matrix_3x3; m : access Real) is the_Array : Scalars := scalar_Pointers.Value (m.all'Access); begin Self := (1 => (the_Array (0), the_Array (4), the_Array (8)), 2 => (the_Array (1), the_Array (5), the_Array (9)), 3 => (the_Array (2), the_Array (6), the_Array (10))); end setFromOpenGLSubMatrix; procedure setValue (Self : out Matrix_3x3; xx, xy, xz, yx, yy, yz, zx, zy, zz : in Real) is begin Self := (1 => (xx, xy, xz), 2 => (yx, yy, yz), 3 => (zx, zy, zz)); end setValue; procedure setEulerYPR (Self : out Matrix_3x3; yaw, pitch, roll : in Real) is begin setEulerZYX (Self, roll, pitch, yaw); end setEulerYPR; procedure setEulerZYX (Self : out Matrix_3x3; eulerX, eulerY, eulerZ : in Real) is use math.Functions; ci : constant Real := Cos (eulerX); cj : constant Real := Cos (eulerY); ch : constant Real := Cos (eulerZ); si : constant Real := Sin (eulerX); sj : constant Real := Sin (eulerY); sh : constant Real := Sin (eulerZ); cc : constant Real := ci * ch; cs : constant Real := ci * sh; sc : constant Real := si * ch; ss : constant Real := si * sh; begin -- todo: proposed to reverse this since it's labeled zyx but takes arguments xyz and it will match all other parts of the code setValue (Self, cj * ch, sj * sc - cs, sj * cc + ss, cj * sh, sj * ss + cc, sj * cs - sc, -sj, cj * si, cj * ci ); end setEulerZYX; procedure setIdentity (Self : out Matrix_3x3) is begin Self := getIdentity; end setIdentity; function getIdentity return Matrix_3x3 is begin return ((1.0, 0.0, 0.0), (0.0, 1.0, 0.0), (0.0, 0.0, 1.0)); end getIdentity; procedure getOpenGLSubMatrix (Self : in Matrix_3x3; matrix : access Real) is use scalar_Pointers, Interfaces; m : constant scalar_Pointers.Pointer := matrix.all'Access; procedure set (Offset : in c.ptrdiff_t; Value : in Real) is Target : constant scalar_Pointers.Pointer := m + Offset; begin Target.all := Value; end set; begin set (0, Self (1, 1)); set (1, Self (2, 1)); set (2, Self (3, 1)); set (3, 0.0); set (4, Self (1, 2)); set (5, Self (2, 2)); set (6, Self (3, 2)); set (7, 0.0); set (8, Self (1, 3)); set (9, Self (2, 3)); set (10, Self (3, 3)); set (11, 0.0); end getOpenGLSubMatrix; procedure getRotation (Self : in Matrix_3x3; q : out Quaternion) is use math.Functions; trace : constant Real := Self (1, 1) + Self (2, 2) + Self (3, 3); temp : array (1 .. 4) of Real; begin if trace > 0.0 then declare s : Real := sqRt (trace + 1.0); begin temp (4) := (s * 0.5); s := 0.5 / s; temp (1) := (Self (3, 2) - Self (2, 3)) * s; temp (2) := (Self (1, 3) - Self (3, 1)) * s; temp (3) := (Self (2, 1) - Self (1, 2)) * s; end; else declare function get_i return Integer is begin if Self (1, 1) < Self (2, 2) then if Self (2, 2) < Self (3, 3) then return 3; else return 2; end if; else if Self (1, 1) < Self (3, 3) then return 3; else return 1; end if; end if; end get_i; i : constant Integer := get_i; function get_j return Integer is begin if i = 3 then return 1; else return i + 1; end if; end get_j; function get_k return Integer is begin if i = 2 then return 1; elsif i = 3 then return 2; elsif i = 1 then return 3; else raise Program_Error; end if; end get_k; j : constant Integer := get_j; k : constant Integer := get_k; s : Real := sqRt (Self (i, i) - Self (j, j) - Self (k, k) + 1.0); begin temp (i) := s * 0.5; s := 0.5 / s; temp (4) := (Self (k, j) - Self (j, k)) * s; temp (j) := (Self (j, i) + Self (i, j)) * s; temp (k) := (Self (k, i) + Self (i, k)) * s; end; end if; q := (V => (temp (1), temp (2), temp (3)), R => temp (4)); end getRotation; procedure getEulerYPR (Self : in Matrix_3x3; yaw, pitch, roll : out Real) is use impact.d3.Scalar, math.Functions; begin -- first use the normal calculus -- yaw := arcTan (Self (2, 1), Self (1, 1)); pitch := arcSin (-Self (3, 1)); roll := arcTan (Self (3, 2), Self (3, 3)); -- on pitch = +/-HalfPI -- if abs (pitch) = SIMD_HALF_PI then if yaw > 0.0 then yaw := yaw - SIMD_PI; else yaw := yaw + SIMD_PI; end if; if roll > 0.0 then roll := roll - SIMD_PI; else roll := roll + SIMD_PI; end if; end if; end getEulerYPR; procedure getEulerZYX (Self : in Matrix_3x3; yaw, pitch, roll : out Real; solution_number : in Integer := 1) is use impact.d3.Scalar, math.Functions; type Euler is record yaw, pitch, roll : Real; end record; euler_out, euler_out2 : Euler; -- second solution the_Delta : Real; begin -- get the pointer to the raw data -- Check that pitch is not at a singularity if abs (Self (3, 1)) >= 1.0 then euler_out.yaw := 0.0; euler_out2.yaw := 0.0; -- From difference of angles formula the_Delta := arcTan (Self (1, 1), Self (1, 3)); if Self (3, 1) > 0.0 then -- gimbal locked up euler_out.pitch := SIMD_PI / 2.0; euler_out2.pitch := SIMD_PI / 2.0; euler_out.roll := euler_out.pitch + the_Delta; euler_out2.roll := euler_out.pitch + the_Delta; else -- gimbal locked down euler_out.pitch := -SIMD_PI / 2.0; euler_out2.pitch := -SIMD_PI / 2.0; euler_out.roll := -euler_out.pitch + the_Delta; euler_out2.roll := -euler_out.pitch + the_Delta; end if; else euler_out.pitch := -arcSin (Self (3, 1)); euler_out2.pitch := SIMD_PI - euler_out.pitch; euler_out.roll := arcTan (Self (3, 2) / Cos (euler_out.pitch), Self (3, 3) / Cos (euler_out.pitch)); euler_out2.roll := arcTan (Self (3, 2) / Cos (euler_out2.pitch), Self (3, 3) / Cos (euler_out2.pitch)); euler_out.yaw := arcTan (Self (2, 1) / Cos (euler_out.pitch), Self (1, 1) / Cos (euler_out.pitch)); euler_out2.yaw := arcTan (Self (2, 1) / Cos (euler_out2.pitch), Self (1, 1) / Cos (euler_out2.pitch)); end if; if solution_number = 1 then yaw := euler_out.yaw; pitch := euler_out.pitch; roll := euler_out.roll; else yaw := euler_out2.yaw; pitch := euler_out2.pitch; roll := euler_out2.roll; end if; end getEulerZYX; function Scaled (Self : in Matrix_3x3; s : in Vector_3) return Matrix_3x3 is begin return ((Self (1, 1) * s (1), Self (1, 2) * s (2), Self (1, 3) * s (3)), (Self (2, 1) * s (1), Self (2, 2) * s (2), Self (2, 3) * s (3)), (Self (3, 1) * s (1), Self (3, 2) * s (2), Self (3, 3) * s (3))); end Scaled; function adjoint (Self : in Matrix_3x3) return Matrix_3x3 is begin return ((cofac (Self, 2, 2, 3, 3), cofac (Self, 1, 3, 3, 2), cofac (Self, 1, 2, 2, 3)), (cofac (Self, 2, 3, 3, 1), cofac (Self, 1, 1, 3, 3), cofac (Self, 1, 3, 2, 1)), (cofac (Self, 2, 1, 3, 2), cofac (Self, 1, 2, 3, 1), cofac (Self, 1, 1, 2, 2))); end adjoint; function cofac (Self : in Matrix_3x3; r1, c1, r2, c2 : in Integer) return Real is begin return Self (r1, c1) * Self (r2, c2) - Self (r1, c2) * Self (r2, c1); end cofac; function absolute (Self : in Matrix_3x3) return Matrix_3x3 is begin return ((abs (Self (1, 1)), abs (Self (1, 2)), abs (Self (1, 3))), (abs (Self (2, 1)), abs (Self (2, 2)), abs (Self (2, 3))), (abs (Self (3, 1)), abs (Self (3, 2)), abs (Self (3, 3)))); end absolute; function transposeTimes (Self : in Matrix_3x3; m : in Matrix_3x3) return Matrix_3x3 is begin return ((Self (1, 1) * m (1, 1) + Self (2, 1) * m (2, 1) + Self (3, 1) * m (3, 1), Self (1, 1) * m (1, 2) + Self (2, 1) * m (2, 2) + Self (3, 1) * m (3, 2), Self (1, 1) * m (1, 3) + Self (2, 1) * m (2, 3) + Self (3, 1) * m (3, 3)), (Self (1, 2) * m (1, 1) + Self (2, 2) * m (2, 1) + Self (3, 2) * m (3, 1), Self (1, 2) * m (1, 2) + Self (2, 2) * m (2, 2) + Self (3, 2) * m (3, 2), Self (1, 2) * m (1, 3) + Self (2, 2) * m (2, 3) + Self (3, 2) * m (3, 3)), (Self (1, 3) * m (1, 1) + Self (2, 3) * m (2, 1) + Self (3, 3) * m (3, 1), Self (1, 3) * m (1, 2) + Self (2, 3) * m (2, 2) + Self (3, 3) * m (3, 2), Self (1, 3) * m (1, 3) + Self (2, 3) * m (2, 3) + Self (3, 3) * m (3, 3))); end transposeTimes; function timesTranspose (Self : in Matrix_3x3; m : in Matrix_3x3) return Matrix_3x3 is use math.Vectors; begin return ((getRow (Self, 1) * getRow (m, 1), getRow (Self, 1) * getRow (m, 2), getRow (Self, 1) * getRow (m, 3)), (getRow (Self, 2) * getRow (m, 1), getRow (Self, 2) * getRow (m, 2), getRow (Self, 2) * getRow (m, 3)), (getRow (Self, 3) * getRow (m, 1), getRow (Self, 3) * getRow (m, 2), getRow (Self, 3) * getRow (m, 3))); end timesTranspose; function tdotx (Self : in Matrix_3x3; v : in Vector_3) return Real is begin return Self (1, 1) * v (1) + Self (2, 1) * v (2) + Self (3, 1) * v (3); end tdotx; function tdoty (Self : in Matrix_3x3; v : in Vector_3) return Real is begin return Self (1, 2) * v (1) + Self (2, 2) * v (2) + Self (3, 2) * v (3); end tdoty; function tdotz (Self : in Matrix_3x3; v : in Vector_3) return Real is begin return Self (1, 3) * v (1) + Self (2, 3) * v (2) + Self (3, 3) * v (3); end tdotz; procedure diagonalize (Self : in out Matrix_3x3; rot : access Matrix_3x3; threshold : in Real; maxSteps : in Integer) is use impact.d3.Scalar; Step : Integer := maxSteps; begin setIdentity (rot.all); while Step > 0 loop -- Find off-diagonal element [p][q] with largest magnitude -- declare p : Integer := 1; q : Integer := 2; r : Integer := 3; max : Real := abs (Self (1, 2)); v : Real := abs (Self (1, 3)); t : Real; begin if v > max then q := 3; r := 2; max := v; end if; v := abs (Self (2, 3)); if v > max then p := 2; q := 3; r := 1; max := v; end if; t := threshold * (abs (Self (1, 1)) + abs (Self (3, 2)) + abs (Self (3, 3))); if max <= t then if max <= SIMD_EPSILON * t then return; end if; step := 1; end if; -- Compute Jacobi rotation J which leads to a zero for element [p][q] -- declare use math.Functions; mpq : constant Real := Self (p, q); theta : constant Real := (Self (q, q) - Self (p, p)) / (2.0 * mpq); theta2 : constant Real := theta * theta; cos : Real; sin : Real; mrp, mrq : Real; begin if theta2 * theta2 < 10.0 / SIMD_EPSILON then if theta >= 0.0 then t := 1.0 / (theta + sqRt (1.0 + theta2)); else t := 1.0 / (theta - sqRt (1.0 + theta2)); end if; cos := 1.0 / sqRt (1.0 + t * t); sin := cos * t; else -- Approximation for large theta-value (ie, a nearly diagonal matrix). t := 1.0 / (theta * (2.0 + 0.5 / theta2)); cos := 1.0 - 0.5 * t * t; sin := cos * t; end if; -- Apply rotation to matrix (this = J^T * this * J) -- Self (p, q) := 0.0; Self (q, p) := 0.0; Self (p, p) := Self (p, p) - t * mpq; Self (q, q) := Self (q, q) + t * mpq; mrp := Self (r, p); mrq := Self (r, q); Self (r, p) := cos * mrp - sin * mrq; Self (p, r) := Self (r, p); Self (r, q) := cos * mrq + sin * mrp; Self (q, r) := Self (r, q); -- Apply rotation to rot (rot = rot * J) -- for i in 1 .. 3 loop declare the_Row : constant access Vector_3 := Row (rot, i); begin mrp := the_Row (p); mrq := the_Row (q); the_Row (p) := cos * mrp - sin * mrq; the_Row (q) := cos * mrq + sin * mrp; end; end loop; end; end; step := step - 1; end loop; end diagonalize; end impact.d3.Matrix;
----------------------------------------------------------------------- -- gen-artifacts-mappings -- Type mapping artifact for Code Generator -- Copyright (C) 2011, 2012, 2015, 2018, 2019, 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 Util.Log.Loggers; with Gen.Utils; with Gen.Model; with Gen.Model.Mappings; -- The <b>Gen.Artifacts.Mappings</b> package is an artifact to map XML-based types -- into Ada types. package body Gen.Artifacts.Mappings is Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Gen.Artifacts.Query"); -- ------------------------------ -- 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) is procedure Register_Mapping (O : in out Gen.Model.Packages.Model_Definition; Node : in DOM.Core.Node); procedure Register_Mappings (Model : in out Gen.Model.Packages.Model_Definition; Node : in DOM.Core.Node); -- ------------------------------ -- Register a new type mapping. -- ------------------------------ procedure Register_Mapping (O : in out Gen.Model.Packages.Model_Definition; Node : in DOM.Core.Node) is procedure Register_Type (O : in out Gen.Model.Packages.Model_Definition; Node : in DOM.Core.Node); N : constant DOM.Core.Node := Gen.Utils.Get_Child (Node, "to"); To : constant String := Gen.Utils.Get_Data_Content (N); Kind : constant String := To_String (Gen.Utils.Get_Attribute (Node, "type")); Allow_Null : constant Boolean := Gen.Utils.Get_Attribute (Node, "allow-null", False); Kind_Type : Gen.Model.Mappings.Basic_Type; procedure Register_Type (O : in out Gen.Model.Packages.Model_Definition; Node : in DOM.Core.Node) is pragma Unreferenced (O); From : constant String := Gen.Utils.Get_Data_Content (Node); begin Gen.Model.Mappings.Register_Type (Target => To, From => From, Kind => Kind_Type, Allow_Null => Allow_Null); end Register_Type; procedure Iterate is new Gen.Utils.Iterate_Nodes (T => Gen.Model.Packages.Model_Definition, Process => Register_Type); begin if Kind = "date" or To = "Ada.Calendar.Time" then Kind_Type := Gen.Model.Mappings.T_DATE; elsif Kind = "identifier" or To = "ADO.Identifier" then Kind_Type := Gen.Model.Mappings.T_IDENTIFIER; elsif Kind = "boolean" then Kind_Type := Gen.Model.Mappings.T_BOOLEAN; elsif Kind = "float" then Kind_Type := Gen.Model.Mappings.T_FLOAT; elsif Kind = "string" or To = "Ada.Strings.Unbounded.Unbounded_String" then Kind_Type := Gen.Model.Mappings.T_STRING; elsif Kind = "blob" or To = "ADO.Blob_Ref" then Kind_Type := Gen.Model.Mappings.T_BLOB; elsif Kind = "entity_type" or To = "ADO.Entity_Type" then Kind_Type := Gen.Model.Mappings.T_ENTITY_TYPE; else Kind_Type := Gen.Model.Mappings.T_INTEGER; end if; Iterate (O, Node, "from"); end Register_Mapping; -- ------------------------------ -- Register a model mapping -- ------------------------------ procedure Register_Mappings (Model : in out Gen.Model.Packages.Model_Definition; Node : in DOM.Core.Node) is procedure Iterate is new Gen.Utils.Iterate_Nodes (T => Gen.Model.Packages.Model_Definition, Process => Register_Mapping); Name : constant String := Gen.Utils.Get_Attribute (Node, "name"); begin Gen.Model.Mappings.Set_Mapping_Name (Name); Iterate (Model, Node, "mapping"); end Register_Mappings; procedure Iterate is new Gen.Utils.Iterate_Nodes (T => Gen.Model.Packages.Model_Definition, Process => Register_Mappings); begin Log.Debug ("Initializing mapping artifact for the configuration"); Gen.Artifacts.Artifact (Handler).Initialize (Path, Node, Model, Context); Iterate (Gen.Model.Packages.Model_Definition (Model), Node, "mappings"); end Initialize; end Gen.Artifacts.Mappings;
-- Copyright 2008 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 Types; use Types; procedure Foo is R : Rectangle := (1, 2, 3, 4); S : Object'Class := Ident (R); begin Do_Nothing (R); -- STOP Do_Nothing (S); end Foo;
package Memory.Transform.EOR is type EOR_Type is new Transform_Type with private; type EOR_Pointer is access all EOR_Type'Class; function Create_EOR return EOR_Pointer; function Random_EOR(next : access Memory_Type'Class; generator : Distribution_Type; max_cost : Cost_Type) return Memory_Pointer; overriding function Clone(mem : EOR_Type) return Memory_Pointer; overriding procedure Permute(mem : in out EOR_Type; generator : in Distribution_Type; max_cost : in Cost_Type); overriding function Is_Empty(mem : EOR_Type) return Boolean; overriding function Get_Name(mem : EOR_Type) return String; private type EOR_Type is new Transform_Type with null record; overriding function Apply(mem : EOR_Type; address : Address_Type; dir : Boolean) return Address_Type; overriding function Get_Alignment(mem : EOR_Type) return Positive; overriding function Get_Transform_Length(mem : EOR_Type) return Natural; end Memory.Transform.EOR;
-- $Id: Source.md,v 1.5 1993/08/18 17:28:53 grosch rel $ package Source is function BeginSource (FileName: String) return Integer; -- BeginSource is called from the scanner to open files. -- If not called then input is read form standard input. procedure GetLine (File: Integer; Buffer: out String; Size: Integer; Last: out Integer); -- GetLine is called to fill a buffer starting at address 'Buffer' -- with a block of maximal 'Size' characters. Lines are terminated -- by newline characters (ASCII = 0xa). GetLine returns the number -- of characters transferred. Reasonable block sizes are between 128 -- and 2048 or the length of a line. Smaller block sizes - -- especially block size 1 - will drastically slow down the scanner. procedure CloseSource (File: Integer); -- CloseSource is called from the scanner at end of file or -- at end of input, respectively. It can be used to close files. end Source;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding -- -- -- -- Terminal_Interface.Curses.Text_IO -- -- -- -- B O D Y -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998-2009,2011 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control: -- $Revision: 1.20 $ -- $Date: 2011/03/22 23:38:49 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ package body Terminal_Interface.Curses.Text_IO is Default_Window : Window := Null_Window; procedure Set_Window (Win : Window) is begin Default_Window := Win; end Set_Window; function Get_Window return Window is begin if Default_Window = Null_Window then return Standard_Window; else return Default_Window; end if; end Get_Window; pragma Inline (Get_Window); procedure Flush (Win : Window) is begin Refresh (Win); end Flush; procedure Flush is begin Flush (Get_Window); end Flush; -------------------------------------------- -- Specification of line and page lengths -- -------------------------------------------- -- There are no set routines in this package. I assume, that you allocate -- the window with an appropriate size. -- A scroll-window is interpreted as an page with unbounded page length, -- i.e. it returns the conventional 0 as page length. function Line_Length (Win : Window) return Count is N_Lines : Line_Count; N_Cols : Column_Count; begin Get_Size (Win, N_Lines, N_Cols); -- if Natural (N_Cols) > Natural (Count'Last) then -- raise Layout_Error; -- end if; return Count (N_Cols); end Line_Length; function Line_Length return Count is begin return Line_Length (Get_Window); end Line_Length; function Page_Length (Win : Window) return Count is N_Lines : Line_Count; N_Cols : Column_Count; begin if Scrolling_Allowed (Win) then return 0; else Get_Size (Win, N_Lines, N_Cols); -- if Natural (N_Lines) > Natural (Count'Last) then -- raise Layout_Error; -- end if; return Count (N_Lines); end if; end Page_Length; function Page_Length return Count is begin return Page_Length (Get_Window); end Page_Length; ------------------------------------ -- Column, Line, and Page Control -- ------------------------------------ procedure New_Line (Win : Window; Spacing : Positive_Count := 1) is P_Size : constant Count := Page_Length (Win); begin if not Spacing'Valid then raise Constraint_Error; end if; for I in 1 .. Spacing loop if P_Size > 0 and then Line (Win) >= P_Size then New_Page (Win); else Add (Win, ASCII.LF); end if; end loop; end New_Line; procedure New_Line (Spacing : Positive_Count := 1) is begin New_Line (Get_Window, Spacing); end New_Line; procedure New_Page (Win : Window) is begin Clear (Win); end New_Page; procedure New_Page is begin New_Page (Get_Window); end New_Page; procedure Set_Col (Win : Window; To : Positive_Count) is Y : Line_Position; X1 : Column_Position; X2 : Column_Position; N : Natural; begin if not To'Valid then raise Constraint_Error; end if; Get_Cursor_Position (Win, Y, X1); N := Natural (To); N := N - 1; X2 := Column_Position (N); if X1 > X2 then New_Line (Win, 1); X1 := 0; end if; if X1 < X2 then declare Filler : constant String (Integer (X1) .. (Integer (X2) - 1)) := (others => ' '); begin Put (Win, Filler); end; end if; end Set_Col; procedure Set_Col (To : Positive_Count) is begin Set_Col (Get_Window, To); end Set_Col; procedure Set_Line (Win : Window; To : Positive_Count) is Y1 : Line_Position; Y2 : Line_Position; X : Column_Position; N : Natural; begin if not To'Valid then raise Constraint_Error; end if; Get_Cursor_Position (Win, Y1, X); pragma Unreferenced (X); N := Natural (To); N := N - 1; Y2 := Line_Position (N); if Y2 < Y1 then New_Page (Win); Y1 := 0; end if; if Y1 < Y2 then New_Line (Win, Positive_Count (Y2 - Y1)); end if; end Set_Line; procedure Set_Line (To : Positive_Count) is begin Set_Line (Get_Window, To); end Set_Line; function Col (Win : Window) return Positive_Count is Y : Line_Position; X : Column_Position; N : Natural; begin Get_Cursor_Position (Win, Y, X); N := Natural (X); N := N + 1; -- if N > Natural (Count'Last) then -- raise Layout_Error; -- end if; return Positive_Count (N); end Col; function Col return Positive_Count is begin return Col (Get_Window); end Col; function Line (Win : Window) return Positive_Count is Y : Line_Position; X : Column_Position; N : Natural; begin Get_Cursor_Position (Win, Y, X); N := Natural (Y); N := N + 1; -- if N > Natural (Count'Last) then -- raise Layout_Error; -- end if; return Positive_Count (N); end Line; function Line return Positive_Count is begin return Line (Get_Window); end Line; ----------------------- -- Characters Output -- ----------------------- procedure Put (Win : Window; Item : Character) is P_Size : constant Count := Page_Length (Win); Y : Line_Position; X : Column_Position; L : Line_Count; C : Column_Count; begin if P_Size > 0 then Get_Cursor_Position (Win, Y, X); Get_Size (Win, L, C); if (Y + 1) = L and then (X + 1) = C then New_Page (Win); end if; end if; Add (Win, Item); end Put; procedure Put (Item : Character) is begin Put (Get_Window, Item); end Put; -------------------- -- Strings-Output -- -------------------- procedure Put (Win : Window; Item : String) is P_Size : constant Count := Page_Length (Win); Y : Line_Position; X : Column_Position; L : Line_Count; C : Column_Count; begin if P_Size > 0 then Get_Cursor_Position (Win, Y, X); Get_Size (Win, L, C); if (Y + 1) = L and then (X + 1 + Item'Length) >= C then New_Page (Win); end if; end if; Add (Win, Item); end Put; procedure Put (Item : String) is begin Put (Get_Window, Item); end Put; procedure Put_Line (Win : Window; Item : String) is begin Put (Win, Item); New_Line (Win, 1); end Put_Line; procedure Put_Line (Item : String) is begin Put_Line (Get_Window, Item); end Put_Line; end Terminal_Interface.Curses.Text_IO;
with Test_Solution; use Test_Solution; with Ada.Text_IO; use Ada.Text_IO; with Ada.Numerics.Elementary_Functions; package problem_21 is type Int64 is range -2**63 .. 2**63 - 1; function Solution_1 return Int64; procedure Test_Solution_1; function Get_Solutions return Solution_Case; end problem_21;
------------------------------------------------------------------------------ -- -- -- 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.Any_Types is pragma Preelaborate; type OCL_Any_Type is limited interface and AMF.UML.Classifiers.UML_Classifier; type OCL_Any_Type_Access is access all OCL_Any_Type'Class; for OCL_Any_Type_Access'Storage_Size use 0; end AMF.OCL.Any_Types;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- ADA.STRINGS.BOUNDED.LESS_CASE_INSENSITIVE -- -- -- -- B o d y -- -- -- -- Copyright (C) 2011, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Strings.Less_Case_Insensitive; function Ada.Strings.Bounded.Less_Case_Insensitive (Left, Right : Bounded.Bounded_String) return Boolean is begin return Ada.Strings.Less_Case_Insensitive (Left => Bounded.To_String (Left), Right => Bounded.To_String (Right)); end Ada.Strings.Bounded.Less_Case_Insensitive;
-- Based on libgasandbox.draw.h and draw.cpp with Ada.Text_IO; use Ada.Text_IO; with GL; with GL.Attributes; with GL.Objects.Buffers; with GL.Objects.Vertex_Arrays; with GL.Rasterization; with GL.Types; use GL.Types; with Utilities; with Maths; with GA_Utilities; with Palet; with Shader_Manager; package body Plane is type Surface_Type is (Back_Surface, Front_Surface); -- ------------------------------------------------------------------------ procedure Add_To_Array (theArray : in out Singles.Vector3_Array; Current_Index : Int; Addition : Singles.Vector3_Array) is begin for index in Int range 1 .. 6 loop theArray (Current_Index + index) := Addition (index); end loop; end Add_To_Array; -- ------------------------------------------------------------------------ function Build_Quad_Vertices (Bottom_Left : Singles.Vector3; Step_Size : Single) return Singles.Vector3_Array is X : constant Single := Bottom_Left (GL.X); Y : constant Single := Bottom_Left (GL.Y); Z : constant Single := Bottom_Left (GL.Z); Quad_Vertices : constant Singles.Vector3_Array (1 .. 6) := (Bottom_Left, (X, Y + Step_Size, Z), (X + Step_Size, Y + Step_Size, Z), (Bottom_Left), (X + Step_Size, Y, Z), (X + Step_Size, Y + Step_Size, Z)); begin return Quad_Vertices; end Build_Quad_Vertices; -- ------------------------------------------------------------------------ procedure Display_Plane (Vertex_Buffer, Normals_Buffer : GL.Objects.Buffers.Buffer; Num_Vertices : Int) is begin GL.Attributes.Enable_Vertex_Attrib_Array (0); GL.Objects.Buffers.Array_Buffer.Bind (Vertex_Buffer); GL.Attributes.Set_Vertex_Attrib_Pointer (0, 3, Single_Type, False, 0, 0); GL.Attributes.Enable_Vertex_Attrib_Array (1); GL.Objects.Buffers.Array_Buffer.Bind (Normals_Buffer); GL.Attributes.Set_Vertex_Attrib_Pointer (1, 3, Single_Type, False, 0, 0); GL.Objects.Vertex_Arrays.Draw_Arrays (Mode => Triangle_Strip, First => 0, Count => Num_Vertices); GL.Attributes.Disable_Vertex_Attrib_Array (0); GL.Attributes.Disable_Vertex_Attrib_Array (1); exception when others => Put_Line ("An exception occurred in Plane.Display_Plane."); raise; end Display_Plane; -- ------------------------------------------------------------------------ procedure Draw_Plane (Render_Program : GL.Objects.Programs.Program; Point, X_Dir, Y_Dir, Normal : C3GA.Vector_E3; Weight : Float := 1.0) is -- Attitude: Normal is perpendicular to plane of Ortho_1 and Ortho_2. use GL.Objects.Buffers; use Palet; use Singles; Vertex_Array : GL.Objects.Vertex_Arrays.Vertex_Array_Object; Vertex_Buffer : GL.Objects.Buffers.Buffer; Normals_Buffer : GL.Objects.Buffers.Buffer; Model_Matrix : Matrix4 := Identity4; Plane_Size : constant Single := Single (Palet.Get_Plane_Size); -- 6.0 Scale_Magnitude : constant Single := Single (Weight); Step_Size : constant Single := 0.1; Scaled_Step_Size : constant Single := Step_Size * Plane_Size; Num_Vertices : constant Int := Int (2.0 * Plane_Size / Step_Size); Scale_Matrix : constant Matrix4 := Maths.Scaling_Matrix ((Scale_Magnitude, Scale_Magnitude, Scale_Magnitude)); V_Index : Int := 0; Vertices : Vector3_Array (1 .. Num_Vertices) := (others => (others => 0.0)); Normals : Vector3_Array (1 .. Num_Vertices) := (others => (others => 0.0)); X : Single; Y : Single; YY_Dir : Vector3; QY : Vector3; Quad_Vertices : Singles.Vector3_Array (1 .. 6); Quad_Normals : Singles.Vector3_Array (1 .. 6); begin Vertex_Array.Initialize_Id; Vertex_Array.Bind; GL.Objects.Programs.Use_Program (Render_Program); if Palet.Get_Draw_Mode.Magnitude then Model_Matrix := Scale_Matrix * Model_Matrix; end if; Shader_Manager.Set_Model_Matrix (Model_Matrix); GA_Utilities.Print_E3_Vector ("Plane.Draw_Plane Point", Point); GA_Utilities.Print_E3_Vector ("Plane.Draw_Plane X_Dir", X_Dir); GA_Utilities.Print_E3_Vector ("Plane.Draw_Plane Y_Dir", Y_Dir); -- draw both front and back side individually for Surface in Surface_Type'Range loop if Wireframe or (Surface = Back_Surface and Palet.Orientation) then GL.Rasterization.Set_Polygon_Mode (GL.Rasterization.Line); else GL.Rasterization.Set_Polygon_Mode (GL.Rasterization.Fill); end if; Y := -Plane_Size; while Y < Plane_Size - Scaled_Step_Size loop V_Index := 0; YY_Dir := Y * Y_Dir; X := -Plane_Size; -- for each Y value draw a triangle strip (rectangle) of -- "length" 2 Plane_Size and "height" YY_Dir -- The "length" in Scaled_Step_Size ^ 2 quad increments -- with each quad drawn as 2 triangles -- X_Dir and Y_Dir are orthogonal while X < Plane_Size - Scaled_Step_Size loop if Surface = Front_Surface then QY := YY_Dir; else QY := Scaled_Step_Size * YY_Dir; end if; Quad_Vertices := Build_Quad_Vertices ((Point - X * X_Dir + QY), Scaled_Step_Size); Add_To_Array (Vertices, V_Index, Quad_Vertices); if Palet.Get_Draw_Mode.Magnitude then Quad_Normals := Build_Quad_Vertices (Point + X * Normal + YY_Dir, Scaled_Step_Size); Add_To_Array (Normals, V_Index, Quad_Normals); end if; X := X + Scaled_Step_Size; V_Index := V_Index + 6; end loop; if Surface = Back_Surface then for n in Int range 1 .. Num_Vertices loop Normals (n) := -Normals (n); end loop; end if; Vertex_Buffer.Initialize_Id; Array_Buffer.Bind (Vertex_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, Vertices, Static_Draw); -- if Palet.Get_Draw_Mode.Magnitude then -- draw normals -- -- ??? GL.Rasterization.Set_Polygon_Mode (GL.Rasterization.Fill); Normals_Buffer.Initialize_Id; Array_Buffer.Bind (Normals_Buffer); Utilities.Load_Vertex_Buffer (Array_Buffer, Normals, Static_Draw); -- end if; Display_Plane (Vertex_Buffer, Normals_Buffer, Num_Vertices); Y := Y + Scaled_Step_Size; end loop; end loop; exception when others => Put_Line ("An exception occurred in Plane.Draw_Plane."); raise; end Draw_Plane; -- ------------------------------------------------------------------------ end Plane;
----------------------------------------------------------------------- -- Ada Labs -- -- -- -- Copyright (C) 2008-2009, AdaCore -- -- -- -- Labs 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. 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. -- ----------------------------------------------------------------------- with Display; use Display; with Display.Basic; use Display.Basic; package Solar_System is -- define type Bodies_Enum as an enumeration of Sun, Earth, Moon, Satellite type Bodies_Enum is (Sun, Earth, Moon, Satellite, Comet, Black_Hole, Asteroid_1, Asteroid_2); procedure Init_Body (B : Bodies_Enum; Radius : Float; Color : RGBA_T; Distance : Float; Speed : Float; Turns_Around : Bodies_Enum; Angle : Float := 0.0; Tail : Boolean := False; Visible : Boolean := True); procedure Enable_Random_Color_Mode; private type Position is record X : Float := 0.0; Y : Float := 0.0; end record; type Tail_Length is new Integer range 1 .. 10; type T_Tail is array (Tail_Length) of Position; type Body_Type is record Pos : Position; Distance : Float; Speed : Float; Angle : Float; Radius : Float; Color : RGBA_T; Visible : Boolean := True; Turns_Around : Bodies_Enum; With_Tail : Boolean := False; Tail : T_Tail := (others => (0.0, 0.0)); end record; protected Dispatch_Tasks is procedure Get_Next_Body (B : out Bodies_Enum); private Current : Bodies_Enum := Bodies_Enum'First; end Dispatch_Tasks; task type T_Move_Body; type Task_Array is array (Bodies_Enum) of T_Move_Body; Tasks : Task_Array; protected type P_Body is function Get_Data return Body_Type; procedure Set_Data (B : Body_Type); private Data : Body_Type; end P_Body; type Bodies_Array is array (Bodies_Enum) of P_Body; Bodies : Bodies_Array; procedure Move (Body_To_Move : in out Body_Type; Turns_Around : Body_Type); task T_Change_Color_To_Random; end Solar_System;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ A G G R -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2000 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Types; use Types; package Exp_Aggr is procedure Expand_N_Aggregate (N : Node_Id); procedure Expand_N_Extension_Aggregate (N : Node_Id); function Is_Delayed_Aggregate (N : Node_Id) return Boolean; -- returns True if N is a delayed aggregate of some kind procedure Convert_Aggr_In_Object_Decl (N : Node_Id); -- N is a N_Object_Declaration with an expression which must be -- an N_Aggregate or N_Extension_Aggregate with Expansion_Delayed -- This procedure performs in-place aggregate assignment. procedure Convert_Aggr_In_Allocator (Decl, Aggr : Node_Id); -- Decl is an access N_Object_Declaration (produced during -- allocator expansion), Aggr is the initial expression aggregate -- of an allocator. This procedure perform in-place aggregate -- assignent in the newly allocated object. procedure Convert_Aggr_In_Assignment (N : Node_Id); -- Decl is an access N_Object_Declaration (produced during -- allocator expansion), Aggr is the initial expression aggregate -- of an allocator. This procedure perform in-place aggregate -- assignent in the newly allocated object. end Exp_Aggr;
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of ada.ads file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.IO_Exceptions; package Ada.Streams.Stream_IO is type Stream_Access is access all Root_Stream_Type'Class; type File_Type is limited private; type File_Mode is (In_File, Out_File, Append_File); type Count is range 0 .. implementation-defined; subtype Positive_Count is Count range 1 .. Count'Last; -- Index into file, in stream elements. procedure Create (File : in out File_Type; Mode : in File_Mode := Out_File; Name : in String := ""; Form : in String := ""); procedure Open (File : in out File_Type; Mode : in File_Mode; Name : in String; Form : in String := ""); procedure Close (File : in out File_Type); procedure Delete (File : in out File_Type); procedure Reset (File : in out File_Type; Mode : in File_Mode); procedure Reset (File : in out File_Type); function Mode (File : in File_Type) return File_Mode; function Name (File : in File_Type) return String; function Form (File : in File_Type) return String; function Is_Open (File : in File_Type) return Boolean; function End_Of_File (File : in File_Type) return Boolean; function Stream (File : in File_Type) return Stream_Access; -- Return stream access for use with T'Input and T'Output -- Read array of stream elements from file procedure Read (File : in File_Type; Item : out Stream_Element_Array; Last : out Stream_Element_Offset; From : in Positive_Count); procedure Read (File : in File_Type; Item : out Stream_Element_Array; Last : out Stream_Element_Offset); -- Write array of stream elements into file procedure Write (File : in File_Type; Item : in Stream_Element_Array; To : in Positive_Count); procedure Write (File : in File_Type; Item : in Stream_Element_Array); -- Operations on position within file procedure Set_Index(File : in File_Type; To : in Positive_Count); function Index(File : in File_Type) return Positive_Count; function Size (File : in File_Type) return Count; procedure Set_Mode(File : in out File_Type; Mode : in File_Mode); procedure Flush(File : in out File_Type); -- exceptions Status_Error : exception renames IO_Exceptions.Status_Error; Mode_Error : exception renames IO_Exceptions.Mode_Error; Name_Error : exception renames IO_Exceptions.Name_Error; Use_Error : exception renames IO_Exceptions.Use_Error; Device_Error : exception renames IO_Exceptions.Device_Error; End_Error : exception renames IO_Exceptions.End_Error; Data_Error : exception renames IO_Exceptions.Data_Error; private pragma Import (Ada, File_Type); end Ada.Streams.Stream_IO;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_flush_request_t is -- Item -- type Item is record major_opcode : aliased Interfaces.Unsigned_8; minor_opcode : aliased Interfaces.Unsigned_8; length : aliased Interfaces.Unsigned_16; context_tag : aliased xcb.xcb_glx_context_tag_t; end record; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_glx_flush_request_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_flush_request_t.Item, Element_Array => xcb.xcb_glx_flush_request_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_glx_flush_request_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_flush_request_t.Pointer, Element_Array => xcb.xcb_glx_flush_request_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_flush_request_t;
------------------------------------------------------------------------------ -- -- -- 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$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.CMOF.Associations; with AMF.CMOF.Classes.Collections; with AMF.CMOF.Classifiers.Collections; with AMF.CMOF.Comments.Collections; with AMF.CMOF.Constraints.Collections; with AMF.CMOF.Data_Types; with AMF.CMOF.Element_Imports.Collections; with AMF.CMOF.Elements.Collections; with AMF.CMOF.Enumeration_Literals.Collections; with AMF.CMOF.Enumerations; with AMF.CMOF.Expressions; with AMF.CMOF.Features.Collections; with AMF.CMOF.Holders.Parameter_Direction_Kinds; with AMF.CMOF.Holders.Visibility_Kinds; with AMF.CMOF.Named_Elements.Collections; with AMF.CMOF.Namespaces; with AMF.CMOF.Opaque_Expressions; with AMF.CMOF.Operations.Collections; with AMF.CMOF.Package_Imports.Collections; with AMF.CMOF.Package_Merges.Collections; with AMF.CMOF.Packageable_Elements.Collections; with AMF.CMOF.Packages.Collections; with AMF.CMOF.Parameters.Collections; with AMF.CMOF.Primitive_Types; with AMF.CMOF.Properties.Collections; with AMF.CMOF.Redefinable_Elements.Collections; with AMF.CMOF.Tags; with AMF.CMOF.Types.Collections; with AMF.CMOF.Value_Specifications.Collections; with AMF.Holders.Elements; with AMF.Internals.Helpers; with AMF.Internals.Holders.CMOF_Holders; with AMF.Internals.Tables.CMOF_Element_Table; with AMF.Internals.Tables.CMOF_Metamodel; with AMF.Internals.Tables.CMOF_Types; with AMF.String_Collections.Internals; with League.Holders.Booleans; package body AMF.Internals.Tables.CMOF_Reflection is --------- -- Get -- --------- function Get (Self : AMF.Internals.AMF_Element; Property : CMOF_Element) return League.Holders.Holder is function CMOF_Association_Get return League.Holders.Holder; -- Returns attribute's value of instance of Association class. function CMOF_Class_Get return League.Holders.Holder; -- Returns attribute's value of instance of Class class. function CMOF_Comment_Get return League.Holders.Holder; -- Returns attribute's value of instance of Comment class. function CMOF_Constraint_Get return League.Holders.Holder; -- Returns attribute's value of instance of Constraint class. function CMOF_Data_Type_Get return League.Holders.Holder; -- Returns attribute's value of instance of DataType class. function CMOF_Element_Import_Get return League.Holders.Holder; -- Returns attribute's value of instance of ElementImport class. function CMOF_Enumeration_Get return League.Holders.Holder; -- Returns attribute's value of instance of Enumeration class. function CMOF_Enumeration_Literal_Get return League.Holders.Holder; -- Returns attribute's value of instance of EnumerationLiteral class. function CMOF_Expression_Get return League.Holders.Holder; -- Returns attribute's value of instance of Expression class. function CMOF_Opaque_Expression_Get return League.Holders.Holder; -- Returns attribute's value of instance of OpaqueExpression class. function CMOF_Operation_Get return League.Holders.Holder; -- Returns attribute's value of instance of Operation class. function CMOF_Package_Get return League.Holders.Holder; -- Returns attribute's value of instance of Package class. function CMOF_Package_Import_Get return League.Holders.Holder; -- Returns attribute's value of instance of PackageImport class. function CMOF_Package_Merge_Get return League.Holders.Holder; -- Returns attribute's value of instance of PackageMerge class. function CMOF_Parameter_Get return League.Holders.Holder; -- Returns attribute's value of instance of Parameter class. function CMOF_Primitive_Type_Get return League.Holders.Holder; -- Returns attribute's value of instance of PrimitiveType class. function CMOF_Property_Get return League.Holders.Holder; -- Returns attribute's value of instance of Property class. function CMOF_Tag_Get return League.Holders.Holder; -- Returns attribute's value of instance of Tag class. -------------------------- -- CMOF_Association_Get -- -------------------------- function CMOF_Association_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Attribute_A_Classifier then -- Classifier::attribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Association_End_Type_A_Association then -- Association::endType : Type return AMF.CMOF.Types.Collections.CMOF_Type_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_End_Type); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Feature_Feature_Featuring_Classifier then -- Classifier::feature : Feature return AMF.CMOF.Features.Collections.CMOF_Feature_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Feature); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_General_A_Classifier then -- Classifier::general : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_General); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Inherited_Member_A_Classifier then -- Classifier::inheritedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Inherited_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Association_Is_Derived then -- Association::isDerived : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Derived); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Final_Specialization); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Association_Member_End_Property_Association then -- Association::memberEnd : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member_End); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Association_Navigable_Owned_End_A_Association then -- Association::navigableOwnedEnd : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Navigable_Owned_End); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Association_Owned_End_Property_Owning_Association then -- Association::ownedEnd : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_End); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Relationship_Related_Element_A_Relationship then -- Relationship::relatedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Related_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Association_Get; -------------------- -- CMOF_Class_Get -- -------------------- function CMOF_Class_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Attribute_A_Classifier then -- Classifier::attribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Feature_Feature_Featuring_Classifier then -- Classifier::feature : Feature return AMF.CMOF.Features.Collections.CMOF_Feature_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Feature); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_General_A_Classifier then -- Classifier::general : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_General); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Inherited_Member_A_Classifier then -- Classifier::inheritedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Inherited_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Class_Is_Abstract then -- Class::isAbstract : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Abstract); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Final_Specialization); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Class_Owned_Attribute_Property_Class then -- Class::ownedAttribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Class_Owned_Operation_Operation_Class then -- Class::ownedOperation : Operation return AMF.CMOF.Operations.Collections.CMOF_Operation_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Operation); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Class_Super_Class_A_Class then -- Class::superClass : Class return AMF.CMOF.Classes.Collections.CMOF_Class_Collections.Internals.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Super_Class); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Class_Get; ---------------------- -- CMOF_Comment_Get -- ---------------------- function CMOF_Comment_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Comment_Annotated_Element_A_Comment then -- Comment::annotatedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Comments.CMOF_Comment_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Annotated_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Comment_Body then -- Comment::body : String return AMF.Holders.To_Holder (AMF.CMOF.Comments.CMOF_Comment_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Body); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Comments.CMOF_Comment_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Comments.CMOF_Comment_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Comments.CMOF_Comment_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); else raise Program_Error; end if; end CMOF_Comment_Get; ------------------------- -- CMOF_Constraint_Get -- ------------------------- function CMOF_Constraint_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Constraint_Constrained_Element_A_Constraint then -- Constraint::constrainedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Constrained_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Constraint_Context_Namespace_Owned_Rule then -- Constraint::context : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Context)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Constraint_Specification_A_Owning_Constraint then -- Constraint::specification : ValueSpecification return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Value_Specifications.CMOF_Value_Specification_Access' (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Specification)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Constraint_Get; ------------------------ -- CMOF_Data_Type_Get -- ------------------------ function CMOF_Data_Type_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Attribute_A_Classifier then -- Classifier::attribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Feature_Feature_Featuring_Classifier then -- Classifier::feature : Feature return AMF.CMOF.Features.Collections.CMOF_Feature_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Feature); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_General_A_Classifier then -- Classifier::general : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_General); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Inherited_Member_A_Classifier then -- Classifier::inheritedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Inherited_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Final_Specialization); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Data_Type_Owned_Attribute_Property_Datatype then -- DataType::ownedAttribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Data_Type_Owned_Operation_Operation_Datatype then -- DataType::ownedOperation : Operation return AMF.CMOF.Operations.Collections.CMOF_Operation_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Operation); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Data_Type_Get; ----------------------------- -- CMOF_Element_Import_Get -- ----------------------------- function CMOF_Element_Import_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Alias then -- ElementImport::alias : String return AMF.Holders.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Alias); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Imported_Element_A_Element_Import then -- ElementImport::importedElement : PackageableElement return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packageable_Elements.CMOF_Packageable_Element_Access' (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Element)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Importing_Namespace_Namespace_Element_Import then -- ElementImport::importingNamespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Importing_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Relationship_Related_Element_A_Relationship then -- Relationship::relatedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Related_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Directed_Relationship_Source_A_Directed_Relationship then -- DirectedRelationship::source : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Source); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Directed_Relationship_Target_A_Directed_Relationship then -- DirectedRelationship::target : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Target); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Visibility then -- ElementImport::visibility : VisibilityKind return AMF.CMOF.Holders.Visibility_Kinds.To_Holder (AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Element_Import_Get; -------------------------- -- CMOF_Enumeration_Get -- -------------------------- function CMOF_Enumeration_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Attribute_A_Classifier then -- Classifier::attribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Feature_Feature_Featuring_Classifier then -- Classifier::feature : Feature return AMF.CMOF.Features.Collections.CMOF_Feature_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Feature); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_General_A_Classifier then -- Classifier::general : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_General); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Inherited_Member_A_Classifier then -- Classifier::inheritedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Inherited_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Final_Specialization); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Data_Type_Owned_Attribute_Property_Datatype then -- DataType::ownedAttribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Enumeration_Owned_Literal_Enumeration_Literal_Enumeration then -- Enumeration::ownedLiteral : EnumerationLiteral return AMF.CMOF.Enumeration_Literals.Collections.CMOF_Enumeration_Literal_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Literal); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Data_Type_Owned_Operation_Operation_Datatype then -- DataType::ownedOperation : Operation return AMF.CMOF.Operations.Collections.CMOF_Operation_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Operation); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Enumeration_Get; ---------------------------------- -- CMOF_Enumeration_Literal_Get -- ---------------------------------- function CMOF_Enumeration_Literal_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Enumeration_Literal_Enumeration_Enumeration_Owned_Literal then -- EnumerationLiteral::enumeration : Enumeration return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Enumerations.CMOF_Enumeration_Access' (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Enumeration)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Enumeration_Literal_Get; ------------------------- -- CMOF_Expression_Get -- ------------------------- function CMOF_Expression_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Expression_Operand_A_Expression then -- Expression::operand : ValueSpecification return AMF.CMOF.Value_Specifications.Collections.CMOF_Value_Specification_Collections.Internals.To_Holder (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Operand); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Types.CMOF_Type_Access' (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Type)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Expression_Get; -------------------------------- -- CMOF_Opaque_Expression_Get -- -------------------------------- function CMOF_Opaque_Expression_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Opaque_Expression_Body then -- OpaqueExpression::body : String return AMF.String_Collections.Internals.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Body); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Opaque_Expression_Language then -- OpaqueExpression::language : String return AMF.String_Collections.Internals.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Language); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Types.CMOF_Type_Access' (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Type)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Opaque_Expression_Get; ------------------------ -- CMOF_Operation_Get -- ------------------------ function CMOF_Operation_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Body_Condition_A_Body_Context then -- Operation::bodyCondition : Constraint return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Constraints.CMOF_Constraint_Access' (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Body_Condition)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Class_Class_Owned_Operation then -- Operation::class : Class return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access' (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Class)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Datatype_Data_Type_Owned_Operation then -- Operation::datatype : DataType return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access' (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Datatype)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Feature_Featuring_Classifier_Classifier_Feature then -- Feature::featuringClassifier : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Featuring_Classifier); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Is_Leaf then -- RedefinableElement::isLeaf : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Leaf); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Is_Ordered then -- Operation::isOrdered : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Ordered); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Is_Query then -- Operation::isQuery : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Query); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Is_Unique then -- Operation::isUnique : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Unique); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Lower then -- Operation::lower : Integer return AMF.Holders.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Lower); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Owned_Parameter_Parameter_Operation then -- Operation::ownedParameter : Parameter return AMF.CMOF.Parameters.Collections.CMOF_Parameter_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Parameter); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Behavioral_Feature_Owned_Parameter_A_Owner_Formal_Param then -- BehavioralFeature::ownedParameter : Parameter return AMF.CMOF.Parameters.Collections.CMOF_Parameter_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Parameter); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Postcondition_A_Post_Context then -- Operation::postcondition : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Postcondition); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Precondition_A_Pre_Context then -- Operation::precondition : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Precondition); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Raised_Exception_A_Operation then -- Operation::raisedException : Type return AMF.CMOF.Types.Collections.CMOF_Type_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Raised_Exception); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Behavioral_Feature_Raised_Exception_A_Behavioral_Feature then -- BehavioralFeature::raisedException : Type return AMF.CMOF.Types.Collections.CMOF_Type_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Raised_Exception); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Redefined_Element_A_Redefinable_Element then -- RedefinableElement::redefinedElement : RedefinableElement return AMF.CMOF.Redefinable_Elements.Collections.CMOF_Redefinable_Element_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Redefined_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Redefined_Operation_A_Operation then -- Operation::redefinedOperation : Operation return AMF.CMOF.Operations.Collections.CMOF_Operation_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Redefined_Operation); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Redefinition_Context_A_Redefinable_Element then -- RedefinableElement::redefinitionContext : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Redefinition_Context); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Type_A_Operation then -- Operation::type : Type return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Types.CMOF_Type_Access' (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Type)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Upper then -- Operation::upper : UnlimitedNatural return AMF.Holders.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Upper); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Operation_Get; ---------------------- -- CMOF_Package_Get -- ---------------------- function CMOF_Package_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Nested_Package_Package_Nesting_Package then -- Package::nestedPackage : Package return AMF.CMOF.Packages.Collections.CMOF_Package_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Nested_Package); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Nesting_Package_Package_Nested_Package then -- Package::nestingPackage : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Nesting_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Owned_Type_Type_Package then -- Package::ownedType : Type return AMF.CMOF.Types.Collections.CMOF_Type_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Type); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Package_Merge_Package_Merge_Receiving_Package then -- Package::packageMerge : PackageMerge return AMF.CMOF.Package_Merges.Collections.CMOF_Package_Merge_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Merge); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Packaged_Element_A_Owning_Package then -- Package::packagedElement : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Packaged_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Uri then -- Package::uri : String return AMF.Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Uri); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Package_Get; ----------------------------- -- CMOF_Package_Import_Get -- ----------------------------- function CMOF_Package_Import_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Import_Imported_Package_A_Package_Import then -- PackageImport::importedPackage : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Import_Importing_Namespace_Namespace_Package_Import then -- PackageImport::importingNamespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Importing_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Relationship_Related_Element_A_Relationship then -- Relationship::relatedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Related_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Directed_Relationship_Source_A_Directed_Relationship then -- DirectedRelationship::source : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Source); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Directed_Relationship_Target_A_Directed_Relationship then -- DirectedRelationship::target : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Target); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Import_Visibility then -- PackageImport::visibility : VisibilityKind return AMF.CMOF.Holders.Visibility_Kinds.To_Holder (AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Package_Import_Get; ---------------------------- -- CMOF_Package_Merge_Get -- ---------------------------- function CMOF_Package_Merge_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Merge_Merged_Package_A_Package_Merge then -- PackageMerge::mergedPackage : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Merged_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Merge_Receiving_Package_Package_Package_Merge then -- PackageMerge::receivingPackage : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Receiving_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Relationship_Related_Element_A_Relationship then -- Relationship::relatedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Related_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Directed_Relationship_Source_A_Directed_Relationship then -- DirectedRelationship::source : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Source); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Directed_Relationship_Target_A_Directed_Relationship then -- DirectedRelationship::target : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Target); else raise Program_Error; end if; end CMOF_Package_Merge_Get; ------------------------ -- CMOF_Parameter_Get -- ------------------------ function CMOF_Parameter_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Parameter_Default then -- Parameter::default : String return AMF.Holders.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Default); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Parameter_Direction then -- Parameter::direction : ParameterDirectionKind return AMF.CMOF.Holders.Parameter_Direction_Kinds.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Direction); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Ordered then -- MultiplicityElement::isOrdered : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Ordered); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Unique then -- MultiplicityElement::isUnique : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Unique); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Lower then -- MultiplicityElement::lower : Integer return AMF.Holders.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Lower); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Parameter_Operation_Operation_Owned_Parameter then -- Parameter::operation : Operation return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Operations.CMOF_Operation_Access' (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Operation)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Types.CMOF_Type_Access' (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Type)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Upper then -- MultiplicityElement::upper : UnlimitedNatural return AMF.Holders.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Upper); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Parameter_Get; ----------------------------- -- CMOF_Primitive_Type_Get -- ----------------------------- function CMOF_Primitive_Type_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Attribute_A_Classifier then -- Classifier::attribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Element_Import_Element_Import_Importing_Namespace then -- Namespace::elementImport : ElementImport return AMF.CMOF.Element_Imports.Collections.CMOF_Element_Import_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Feature_Feature_Featuring_Classifier then -- Classifier::feature : Feature return AMF.CMOF.Features.Collections.CMOF_Feature_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Feature); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_General_A_Classifier then -- Classifier::general : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_General); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Imported_Member_A_Namespace then -- Namespace::importedMember : PackageableElement return AMF.CMOF.Packageable_Elements.Collections.CMOF_Packageable_Element_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Imported_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Inherited_Member_A_Classifier then -- Classifier::inheritedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Inherited_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Final_Specialization); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Member_A_Namespace then -- Namespace::member : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Data_Type_Owned_Attribute_Property_Datatype then -- DataType::ownedAttribute : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Attribute); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Member_Named_Element_Namespace then -- Namespace::ownedMember : NamedElement return AMF.CMOF.Named_Elements.Collections.CMOF_Named_Element_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Member); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Data_Type_Owned_Operation_Operation_Datatype then -- DataType::ownedOperation : Operation return AMF.CMOF.Operations.Collections.CMOF_Operation_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Operation); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Owned_Rule_Constraint_Context then -- Namespace::ownedRule : Constraint return AMF.CMOF.Constraints.Collections.CMOF_Constraint_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Rule); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Packages.CMOF_Package_Access' (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Namespace_Package_Import_Package_Import_Importing_Namespace then -- Namespace::packageImport : PackageImport return AMF.CMOF.Package_Imports.Collections.CMOF_Package_Import_Collections.Internals.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Package_Import); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Primitive_Type_Get; ----------------------- -- CMOF_Property_Get -- ----------------------- function CMOF_Property_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Association_Association_Member_End then -- Property::association : Association return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Association)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Class_Class_Owned_Attribute then -- Property::class : Class return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Classes.CMOF_Class_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Class)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Datatype_Data_Type_Owned_Attribute then -- Property::datatype : DataType return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Data_Types.CMOF_Data_Type_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Datatype)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Default then -- Property::default : String return AMF.Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Default); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Feature_Featuring_Classifier_Classifier_Feature then -- Feature::featuringClassifier : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Featuring_Classifier); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Composite then -- Property::isComposite : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Composite); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Derived then -- Property::isDerived : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Derived); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Derived_Union then -- Property::isDerivedUnion : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Derived_Union); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Is_Leaf then -- RedefinableElement::isLeaf : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Leaf); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Ordered then -- MultiplicityElement::isOrdered : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Ordered); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Read_Only then -- Property::isReadOnly : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Read_Only); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Unique then -- MultiplicityElement::isUnique : Boolean return League.Holders.Booleans.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Is_Unique); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Lower then -- MultiplicityElement::lower : Integer return AMF.Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Lower); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String return AMF.Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Namespace_Namespace_Owned_Member then -- NamedElement::namespace : Namespace return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Namespaces.CMOF_Namespace_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Namespace)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Opposite_A_Property then -- Property::opposite : Property return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Opposite)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Owning_Association_Association_Owned_End then -- Property::owningAssociation : Association return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Associations.CMOF_Association_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owning_Association)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Qualified_Name then -- NamedElement::qualifiedName : String return AMF.Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Qualified_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Redefined_Element_A_Redefinable_Element then -- RedefinableElement::redefinedElement : RedefinableElement return AMF.CMOF.Redefinable_Elements.Collections.CMOF_Redefinable_Element_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Redefined_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Redefined_Property_A_Property then -- Property::redefinedProperty : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Redefined_Property); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Redefinition_Context_A_Redefinable_Element then -- RedefinableElement::redefinitionContext : Classifier return AMF.CMOF.Classifiers.Collections.CMOF_Classifier_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Redefinition_Context); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Subsetted_Property_A_Property then -- Property::subsettedProperty : Property return AMF.CMOF.Properties.Collections.CMOF_Property_Collections.Internals.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Subsetted_Property); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Types.CMOF_Type_Access' (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Type)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Upper then -- MultiplicityElement::upper : UnlimitedNatural return AMF.Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Upper); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind return AMF.CMOF.Holders.To_Holder (AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Visibility); else raise Program_Error; end if; end CMOF_Property_Get; ------------------ -- CMOF_Tag_Get -- ------------------ function CMOF_Tag_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Element_A_Tag then -- Tag::element : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Name then -- Tag::name : String return League.Holders.To_Holder (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Name); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Comment_A_Owning_Element then -- Element::ownedComment : Comment return AMF.CMOF.Comments.Collections.CMOF_Comment_Collections.Internals.To_Holder (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Comment); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owned_Element_Element_Owner then -- Element::ownedElement : Element return AMF.CMOF.Elements.Collections.CMOF_Element_Collections.Internals.To_Holder (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owned_Element); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Owner_Element_Owned_Element then -- Element::owner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Tag_Owner_A_Owned_Tag then -- Tag::tagOwner : Element return AMF.Internals.Holders.CMOF_Holders.To_Holder (AMF.CMOF.Elements.CMOF_Element_Access' (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Tag_Owner)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Value then -- Tag::value : String return League.Holders.To_Holder (AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Value); else raise Program_Error; end if; end CMOF_Tag_Get; begin case AMF.Internals.Tables.CMOF_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.CMOF_Types.E_None => raise Program_Error; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Association => return CMOF_Association_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Class => return CMOF_Class_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Comment => return CMOF_Comment_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Constraint => return CMOF_Constraint_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Data_Type => return CMOF_Data_Type_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Element_Import => return CMOF_Element_Import_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Enumeration => return CMOF_Enumeration_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Enumeration_Literal => return CMOF_Enumeration_Literal_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Expression => return CMOF_Expression_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Opaque_Expression => return CMOF_Opaque_Expression_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Operation => return CMOF_Operation_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package => return CMOF_Package_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package_Import => return CMOF_Package_Import_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package_Merge => return CMOF_Package_Merge_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Parameter => return CMOF_Parameter_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Primitive_Type => return CMOF_Primitive_Type_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Property => return CMOF_Property_Get; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Tag => return CMOF_Tag_Get; end case; end Get; -------------------- -- Get_Meta_Class -- -------------------- function Get_Meta_Class (Self : AMF.Internals.AMF_Element) return CMOF_Element is begin case CMOF_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.CMOF_Types.E_None => return 0; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Association => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Association; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Class => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Class; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Comment => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Comment; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Constraint => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Constraint; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Data_Type => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Data_Type; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Element_Import => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Element_Import; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Enumeration => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Enumeration; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Enumeration_Literal => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Enumeration_Literal; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Expression => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Expression; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Opaque_Expression => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Opaque_Expression; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Operation => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Operation; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Package; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package_Import => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Package_Import; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package_Merge => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Package_Merge; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Parameter => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Parameter; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Primitive_Type => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Primitive_Type; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Property => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Property; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Tag => return AMF.Internals.Tables.CMOF_Metamodel.MC_CMOF_Tag; end case; end Get_Meta_Class; --------- -- Set -- --------- procedure Set (Self : AMF.Internals.AMF_Element; Property : CMOF_Element; Value : League.Holders.Holder) is procedure CMOF_Association_Set; -- Sets attribute's value of instance of Association class. procedure CMOF_Class_Set; -- Sets attribute's value of instance of Class class. procedure CMOF_Comment_Set; -- Sets attribute's value of instance of Comment class. procedure CMOF_Constraint_Set; -- Sets attribute's value of instance of Constraint class. procedure CMOF_Data_Type_Set; -- Sets attribute's value of instance of DataType class. procedure CMOF_Element_Import_Set; -- Sets attribute's value of instance of ElementImport class. procedure CMOF_Enumeration_Set; -- Sets attribute's value of instance of Enumeration class. procedure CMOF_Enumeration_Literal_Set; -- Sets attribute's value of instance of EnumerationLiteral class. procedure CMOF_Expression_Set; -- Sets attribute's value of instance of Expression class. procedure CMOF_Opaque_Expression_Set; -- Sets attribute's value of instance of OpaqueExpression class. procedure CMOF_Operation_Set; -- Sets attribute's value of instance of Operation class. procedure CMOF_Package_Set; -- Sets attribute's value of instance of Package class. procedure CMOF_Package_Import_Set; -- Sets attribute's value of instance of PackageImport class. procedure CMOF_Package_Merge_Set; -- Sets attribute's value of instance of PackageMerge class. procedure CMOF_Parameter_Set; -- Sets attribute's value of instance of Parameter class. procedure CMOF_Primitive_Type_Set; -- Sets attribute's value of instance of PrimitiveType class. procedure CMOF_Property_Set; -- Sets attribute's value of instance of Property class. procedure CMOF_Tag_Set; -- Sets attribute's value of instance of Tag class. -------------------------- -- CMOF_Association_Set -- -------------------------- procedure CMOF_Association_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Association_Is_Derived then -- Association::isDerived : Boolean AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Derived (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Final_Specialization (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Associations.CMOF_Association_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Association_Set; -------------------- -- CMOF_Class_Set -- -------------------- procedure CMOF_Class_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Class_Is_Abstract then -- Class::isAbstract : Boolean AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Abstract (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Final_Specialization (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Classes.CMOF_Class_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Class_Set; ---------------------- -- CMOF_Comment_Set -- ---------------------- procedure CMOF_Comment_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Comment_Body then -- Comment::body : String AMF.CMOF.Comments.CMOF_Comment_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Body (AMF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Comment_Set; ------------------------- -- CMOF_Constraint_Set -- ------------------------- procedure CMOF_Constraint_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Constraint_Context_Namespace_Owned_Rule then -- Constraint::context : Namespace AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Context (AMF.CMOF.Namespaces.CMOF_Namespace_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Constraint_Specification_A_Owning_Constraint then -- Constraint::specification : ValueSpecification AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Specification (AMF.CMOF.Value_Specifications.CMOF_Value_Specification_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Constraint_Set; ------------------------ -- CMOF_Data_Type_Set -- ------------------------ procedure CMOF_Data_Type_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Final_Specialization (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Data_Type_Set; ----------------------------- -- CMOF_Element_Import_Set -- ----------------------------- procedure CMOF_Element_Import_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Alias then -- ElementImport::alias : String AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Alias (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Imported_Element_A_Element_Import then -- ElementImport::importedElement : PackageableElement AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Imported_Element (AMF.CMOF.Packageable_Elements.CMOF_Packageable_Element_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Importing_Namespace_Namespace_Element_Import then -- ElementImport::importingNamespace : Namespace AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Importing_Namespace (AMF.CMOF.Namespaces.CMOF_Namespace_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Element_Import_Visibility then -- ElementImport::visibility : VisibilityKind AMF.CMOF.Element_Imports.CMOF_Element_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Visibility_Kinds.Element (Value)); else raise Program_Error; end if; end CMOF_Element_Import_Set; -------------------------- -- CMOF_Enumeration_Set -- -------------------------- procedure CMOF_Enumeration_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Final_Specialization (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Enumeration_Set; ---------------------------------- -- CMOF_Enumeration_Literal_Set -- ---------------------------------- procedure CMOF_Enumeration_Literal_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Enumeration_Literal_Enumeration_Enumeration_Owned_Literal then -- EnumerationLiteral::enumeration : Enumeration AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Enumeration (AMF.CMOF.Enumerations.CMOF_Enumeration_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Enumeration_Literals.CMOF_Enumeration_Literal_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Enumeration_Literal_Set; ------------------------- -- CMOF_Expression_Set -- ------------------------- procedure CMOF_Expression_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Type (AMF.CMOF.Types.CMOF_Type_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Expressions.CMOF_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Expression_Set; -------------------------------- -- CMOF_Opaque_Expression_Set -- -------------------------------- procedure CMOF_Opaque_Expression_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Type (AMF.CMOF.Types.CMOF_Type_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Opaque_Expressions.CMOF_Opaque_Expression_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Opaque_Expression_Set; ------------------------ -- CMOF_Operation_Set -- ------------------------ procedure CMOF_Operation_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Body_Condition_A_Body_Context then -- Operation::bodyCondition : Constraint AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Body_Condition (AMF.CMOF.Constraints.CMOF_Constraint_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Class_Class_Owned_Operation then -- Operation::class : Class AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Class (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Datatype_Data_Type_Owned_Operation then -- Operation::datatype : DataType AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Datatype (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Is_Leaf then -- RedefinableElement::isLeaf : Boolean AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Leaf (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Operation_Is_Query then -- Operation::isQuery : Boolean AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Query (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Operation_Set; ---------------------- -- CMOF_Package_Set -- ---------------------- procedure CMOF_Package_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Nesting_Package_Package_Nested_Package then -- Package::nestingPackage : Package AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Nesting_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Uri then -- Package::uri : String AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Uri (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Packages.CMOF_Package_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Package_Set; ----------------------------- -- CMOF_Package_Import_Set -- ----------------------------- procedure CMOF_Package_Import_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Import_Imported_Package_A_Package_Import then -- PackageImport::importedPackage : Package AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Imported_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Import_Importing_Namespace_Namespace_Package_Import then -- PackageImport::importingNamespace : Namespace AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Importing_Namespace (AMF.CMOF.Namespaces.CMOF_Namespace_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Import_Visibility then -- PackageImport::visibility : VisibilityKind AMF.CMOF.Package_Imports.CMOF_Package_Import_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Visibility_Kinds.Element (Value)); else raise Program_Error; end if; end CMOF_Package_Import_Set; ---------------------------- -- CMOF_Package_Merge_Set -- ---------------------------- procedure CMOF_Package_Merge_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Merge_Merged_Package_A_Package_Merge then -- PackageMerge::mergedPackage : Package AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Merged_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Package_Merge_Receiving_Package_Package_Package_Merge then -- PackageMerge::receivingPackage : Package AMF.CMOF.Package_Merges.CMOF_Package_Merge_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Receiving_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end CMOF_Package_Merge_Set; ------------------------ -- CMOF_Parameter_Set -- ------------------------ procedure CMOF_Parameter_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Parameter_Default then -- Parameter::default : String AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Default (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Parameter_Direction then -- Parameter::direction : ParameterDirectionKind AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Direction (AMF.CMOF.Holders.Parameter_Direction_Kinds.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Ordered then -- MultiplicityElement::isOrdered : Boolean AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Ordered (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Unique then -- MultiplicityElement::isUnique : Boolean AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Unique (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Lower then -- MultiplicityElement::lower : Integer AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Lower (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Parameter_Operation_Operation_Owned_Parameter then -- Parameter::operation : Operation AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Operation (AMF.CMOF.Operations.CMOF_Operation_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Type (AMF.CMOF.Types.CMOF_Type_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Upper then -- MultiplicityElement::upper : UnlimitedNatural AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Upper (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Parameters.CMOF_Parameter_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Parameter_Set; ----------------------------- -- CMOF_Primitive_Type_Set -- ----------------------------- procedure CMOF_Primitive_Type_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Classifier_Is_Final_Specialization then -- Classifier::isFinalSpecialization : Boolean AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Final_Specialization (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Type_Package_Package_Owned_Type then -- Type::package : Package AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Package (AMF.CMOF.Packages.CMOF_Package_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Primitive_Types.CMOF_Primitive_Type_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Primitive_Type_Set; ----------------------- -- CMOF_Property_Set -- ----------------------- procedure CMOF_Property_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Association_Association_Member_End then -- Property::association : Association AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Association (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Class_Class_Owned_Attribute then -- Property::class : Class AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Class (AMF.CMOF.Classes.CMOF_Class_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Datatype_Data_Type_Owned_Attribute then -- Property::datatype : DataType AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Datatype (AMF.CMOF.Data_Types.CMOF_Data_Type_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Default then -- Property::default : String AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Default (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Composite then -- Property::isComposite : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Composite (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Derived then -- Property::isDerived : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Derived (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Derived_Union then -- Property::isDerivedUnion : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Derived_Union (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Redefinable_Element_Is_Leaf then -- RedefinableElement::isLeaf : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Leaf (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Ordered then -- MultiplicityElement::isOrdered : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Ordered (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Is_Read_Only then -- Property::isReadOnly : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Read_Only (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Is_Unique then -- MultiplicityElement::isUnique : Boolean AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Is_Unique (League.Holders.Booleans.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Lower then -- MultiplicityElement::lower : Integer AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Lower (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Name then -- NamedElement::name : String AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Property_Owning_Association_Association_Owned_End then -- Property::owningAssociation : Association AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Owning_Association (AMF.CMOF.Associations.CMOF_Association_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Typed_Element_Type_A_Typed_Element then -- TypedElement::type : Type AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Type (AMF.CMOF.Types.CMOF_Type_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Multiplicity_Element_Upper then -- MultiplicityElement::upper : UnlimitedNatural AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Upper (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Named_Element_Visibility then -- NamedElement::visibility : VisibilityKind AMF.CMOF.Properties.CMOF_Property_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Visibility (AMF.CMOF.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Property_Set; ------------------ -- CMOF_Tag_Set -- ------------------ procedure CMOF_Tag_Set is begin if Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Name then -- Tag::name : String AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Name (League.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Tag_Owner_A_Owned_Tag then -- Tag::tagOwner : Element AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Tag_Owner (AMF.CMOF.Elements.CMOF_Element_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.CMOF_Metamodel.MP_CMOF_Tag_Value then -- Tag::value : String AMF.CMOF.Tags.CMOF_Tag_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Value (League.Holders.Element (Value)); else raise Program_Error; end if; end CMOF_Tag_Set; begin case CMOF_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.CMOF_Types.E_None => raise Program_Error; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Association => CMOF_Association_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Class => CMOF_Class_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Comment => CMOF_Comment_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Constraint => CMOF_Constraint_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Data_Type => CMOF_Data_Type_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Element_Import => CMOF_Element_Import_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Enumeration => CMOF_Enumeration_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Enumeration_Literal => CMOF_Enumeration_Literal_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Expression => CMOF_Expression_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Opaque_Expression => CMOF_Opaque_Expression_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Operation => CMOF_Operation_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package => CMOF_Package_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package_Import => CMOF_Package_Import_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Package_Merge => CMOF_Package_Merge_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Parameter => CMOF_Parameter_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Primitive_Type => CMOF_Primitive_Type_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Property => CMOF_Property_Set; when AMF.Internals.Tables.CMOF_Types.E_CMOF_Tag => CMOF_Tag_Set; end case; end Set; end AMF.Internals.Tables.CMOF_Reflection;
----------------------------------------------------------------------- -- awa-events-dispatchers-actions -- Event dispatcher to Ada bean actions -- Copyright (C) 2012, 2017 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Containers.Doubly_Linked_Lists; with EL.Expressions; with EL.Beans; with AWA.Events.Queues; with AWA.Applications; -- The <b>AWA.Events.Dispatchers.Actions</b> package implements an event dispatcher -- which calls a set of Ada bean action methods that have been registered on the dispatcher -- during configuration time. package AWA.Events.Dispatchers.Actions is -- ------------------------------ -- Event action dispatcher -- ------------------------------ type Action_Dispatcher (Application : AWA.Applications.Application_Access) is new Dispatcher with private; -- Dispatch the event identified by <b>Event</b>. -- The event actions which are associated with the event are executed synchronously. overriding procedure Dispatch (Manager : in Action_Dispatcher; Event : in Module_Event'Class); -- Add an action invoked when an event is dispatched through this dispatcher. -- When the event queue dispatches the event, the Ada bean identified by the method action -- represented by <b>Action</b> is created and initialized by evaluating and setting the -- parameters defined in <b>Params</b>. The action method is then invoked. overriding procedure Add_Action (Manager : in out Action_Dispatcher; Action : in EL.Expressions.Method_Expression; Params : in EL.Beans.Param_Vectors.Vector); -- Create a new dispatcher associated with the application. function Create_Dispatcher (Application : in AWA.Applications.Application_Access) return Dispatcher_Access; private -- An event action records a method expression which identifies an Ada bean and a method -- that must be invoked when the event is dispatched. The Ada bean instance is populated -- by evaluating and setting the set of properties before calling the action method. type Event_Action is record Action : EL.Expressions.Method_Expression; Properties : EL.Beans.Param_Vectors.Vector; end record; -- A list of event actions. package Event_Action_Lists is new Ada.Containers.Doubly_Linked_Lists (Element_Type => Event_Action); -- The dispatcher maintains a list of event actions to which the events are dispatched. type Action_Dispatcher (Application : AWA.Applications.Application_Access) is new Dispatcher with record Actions : Event_Action_Lists.List; Queue : AWA.Events.Queues.Queue_Ref; end record; end AWA.Events.Dispatchers.Actions;
-- Copyright 2015-2016 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. package Aux_Pck is procedure Ambiguous_Func; procedure Ambiguous_Proc; end Aux_Pck;
with Asis.Statements; package body Asis_Adapter.Element.Exception_Handlers is ----------------------------- -- EXPORTED: ----------------------------- procedure Do_Pre_Child_Processing (Element : in Asis.Element; State : in out Class) is Parent_Name : constant String := Module_Name; Module_Name : constant String := Parent_Name & ".Process_Exception_Handler"; Result : a_nodes_h.Exception_Handler_Struct := a_nodes_h.Support.Default_Exception_Handler_Struct; procedure Add_Choice_Parameter_Specification is ID : constant a_nodes_h.Element_ID := Get_Element_ID (Asis.Statements.Choice_Parameter_Specification (Element)); begin State.Add_To_Dot_Label_And_Edge ("Choice_Parameter_Specification", ID); Result.Choice_Parameter_Specification := ID; end; procedure Add_Exception_Choices is begin Add_Element_List (This => State, Elements_In => Asis.Statements.Exception_Choices (Element), Dot_Label_Name => "Exception_Choices", List_Out => Result.Exception_Choices, Add_Edges => True); end; procedure Add_Handler_Statements is begin Add_Element_List (This => State, Elements_In => Asis.Statements.Handler_Statements (Element), Dot_Label_Name => "Handler_Statements", List_Out => Result.Handler_Statements, Add_Edges => True); end; begin Add_Choice_Parameter_Specification; Add_Exception_Choices; Add_Handler_Statements; State.A_Element.Element_Kind := a_nodes_h.An_Exception_Handler; State.A_Element.the_union.exception_handler := Result; end Do_Pre_Child_Processing; end Asis_Adapter.Element.Exception_Handlers;
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; package bits_uintn_identity_h is -- Inline functions to return unsigned integer values unchanged. -- Copyright (C) 2017-2021 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <https://www.gnu.org/licenses/>. -- These inline functions are to ensure the appropriate type -- conversions and associated diagnostics from macros that convert to -- a given endianness. -- skipped func __uint16_identity -- skipped func __uint32_identity -- skipped func __uint64_identity end bits_uintn_identity_h;
----------------------------------------------------------------------- -- -- File: nt_console.adb -- Description: Win95/NT console support -- Rev: 0.3 -- Date: 08-june-1999 -- Author: Jerry van Dijk -- Mail: jdijk@acm.org -- -- Copyright (c) Jerry van Dijk, 1997, 1998, 1999 -- Billie Holidaystraat 28 -- 2324 LK LEIDEN -- THE NETHERLANDS -- tel int + 31 71 531 43 65 -- -- Permission granted to use for any purpose, provided this copyright -- remains attached and unmodified. -- -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- ----------------------------------------------------------------------- pragma C_Pass_By_Copy (128); with Interfaces; use Interfaces; package body NT_Console is --pragma Linker_Options ("-luser"); pragma Linker_Options ("-luser32"); --------------------- -- WIN32 INTERFACE -- --------------------- Beep_Error : exception; Fill_Char_Error : exception; Cursor_Get_Error : exception; Cursor_Set_Error : exception; Cursor_Pos_Error : exception; Buffer_Info_Error : exception; Set_Attribute_Error : exception; Invalid_Handle_Error : exception; Fill_Attribute_Error : exception; Cursor_Position_Error : exception; subtype DWORD is Unsigned_32; subtype HANDLE is Unsigned_32; subtype WORD is Unsigned_16; subtype SHORT is Short_Integer; subtype WINBOOL is Integer; type LPDWORD is access all DWORD; pragma Convention (C, LPDWORD); type Nibble is mod 2 ** 4; for Nibble'Size use 4; type Attribute is record Foreground : Nibble; Background : Nibble; Reserved : Unsigned_8 := 0; end record; for Attribute use record Foreground at 0 range 0 .. 3; Background at 0 range 4 .. 7; Reserved at 1 range 0 .. 7; end record; for Attribute'Size use 16; pragma Convention (C, Attribute); type COORD is record X : SHORT; Y : SHORT; end record; pragma Convention (C, COORD); type SMALL_RECT is record Left : SHORT; Top : SHORT; Right : SHORT; Bottom : SHORT; end record; pragma Convention (C, SMALL_RECT); type CONSOLE_SCREEN_BUFFER_INFO is record Size : COORD; Cursor_Pos : COORD; Attrib : Attribute; Window : SMALL_RECT; Max_Size : COORD; end record; pragma Convention (C, CONSOLE_SCREEN_BUFFER_INFO); type PCONSOLE_SCREEN_BUFFER_INFO is access all CONSOLE_SCREEN_BUFFER_INFO; pragma Convention (C, PCONSOLE_SCREEN_BUFFER_INFO); type CONSOLE_CURSOR_INFO is record Size : DWORD; Visible : WINBOOL; end record; pragma Convention (C, CONSOLE_CURSOR_INFO); type PCONSOLE_CURSOR_INFO is access all CONSOLE_CURSOR_INFO; pragma Convention (C, PCONSOLE_CURSOR_INFO); function GetCh return Integer; pragma Import (C, GetCh, "_getch"); function KbHit return Integer; pragma Import (C, KbHit, "_kbhit"); function MessageBeep (Kind : DWORD) return DWORD; pragma Import (StdCall, MessageBeep, "MessageBeep"); function GetStdHandle (Value : DWORD) return HANDLE; pragma Import (StdCall, GetStdHandle, "GetStdHandle"); function GetConsoleCursorInfo (Buffer : HANDLE; Cursor : PCONSOLE_CURSOR_INFO) return WINBOOL; pragma Import (StdCall, GetConsoleCursorInfo, "GetConsoleCursorInfo"); function SetConsoleCursorInfo (Buffer : HANDLE; Cursor : PCONSOLE_CURSOR_INFO) return WINBOOL; pragma Import (StdCall, SetConsoleCursorInfo, "SetConsoleCursorInfo"); function SetConsoleCursorPosition (Buffer : HANDLE; Pos : COORD) return DWORD; pragma Import (StdCall, SetConsoleCursorPosition, "SetConsoleCursorPosition"); function SetConsoleTextAttribute (Buffer : HANDLE; Attr : Attribute) return DWORD; pragma Import (StdCall, SetConsoleTextAttribute, "SetConsoleTextAttribute"); function GetConsoleScreenBufferInfo (Buffer : HANDLE; Info : PCONSOLE_SCREEN_BUFFER_INFO) return DWORD; pragma Import (StdCall, GetConsoleScreenBufferInfo, "GetConsoleScreenBufferInfo"); function FillConsoleOutputCharacter (Console : HANDLE; Char : Character; Length : DWORD; Start : COORD; Written : LPDWORD) return DWORD; pragma Import (Stdcall, FillConsoleOutputCharacter, "FillConsoleOutputCharacterA"); function FillConsoleOutputAttribute (Console : Handle; Attr : Attribute; Length : DWORD; Start : COORD; Written : LPDWORD) return DWORD; pragma Import (Stdcall, FillConsoleOutputAttribute, "FillConsoleOutputAttribute"); WIN32_ERROR : constant DWORD := 0; INVALID_HANDLE_VALUE : constant HANDLE := -1; STD_OUTPUT_HANDLE : constant DWORD := -11; Color_Value : constant array (Color_Type) of Nibble := (0, 1, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 15); Color_Type_Value : constant array (Nibble) of Color_Type := (Black, Blue, Green, Cyan, Red, Magenta, Brown, Gray, Black, Light_Blue, Light_Green, Light_Cyan, Light_Red, Light_Magenta, Yellow, White); ----------------------- -- PACKAGE VARIABLES -- ----------------------- Output_Buffer : HANDLE; Num_Bytes : aliased DWORD; Num_Bytes_Access : LPDWORD := Num_Bytes'Access; Buffer_Info_Rec : aliased CONSOLE_SCREEN_BUFFER_INFO; Buffer_Info : PCONSOLE_SCREEN_BUFFER_INFO := Buffer_Info_Rec'Access; ------------------------- -- SUPPORTING SERVICES -- ------------------------- procedure Get_Buffer_Info is begin if GetConsoleScreenBufferInfo (Output_Buffer, Buffer_Info) = WIN32_ERROR then raise Buffer_Info_Error; end if; end Get_Buffer_Info; -------------------- -- CURSOR CONTROL -- -------------------- function Cursor_Visible return Boolean is Cursor : aliased CONSOLE_CURSOR_INFO; begin if GetConsoleCursorInfo (Output_Buffer, Cursor'Unchecked_Access) = 0 then raise Cursor_Get_Error; end if; return Cursor.Visible = 1; end Cursor_Visible; procedure Set_Cursor (Visible : in Boolean) is Cursor : aliased CONSOLE_CURSOR_INFO; begin if GetConsoleCursorInfo (Output_Buffer, Cursor'Unchecked_Access) = 0 then raise Cursor_Get_Error; end if; if Visible = True then Cursor.Visible := 1; else Cursor.Visible := 0; end if; if SetConsoleCursorInfo (Output_Buffer, Cursor'Unchecked_Access) = 0 then raise Cursor_Set_Error; end if; end Set_Cursor; function Where_X return X_Pos is begin Get_Buffer_Info; return X_Pos (Buffer_Info_Rec.Cursor_Pos.X); end Where_X; function Where_Y return Y_Pos is begin Get_Buffer_Info; return Y_Pos (Buffer_Info_Rec.Cursor_Pos.Y); end Where_Y; procedure Goto_XY (X : in X_Pos := X_Pos'First; Y : in Y_Pos := Y_Pos'First) is New_Pos : COORD := (SHORT (X), SHORT (Y)); begin Get_Buffer_Info; if New_Pos.X > Buffer_Info_Rec.Size.X then New_Pos.X := Buffer_Info_Rec.Size.X; end if; if New_Pos.Y > Buffer_Info_Rec.Size.Y then New_Pos.Y := Buffer_Info_Rec.Size.Y; end if; if SetConsoleCursorPosition (Output_Buffer, New_Pos) = WIN32_ERROR then raise Cursor_Pos_Error; end if; end Goto_XY; ------------------- -- COLOR CONTROL -- ------------------- function Get_Foreground return Color_Type is begin Get_Buffer_Info; return Color_Type_Value (Buffer_Info_Rec.Attrib.Foreground); end Get_Foreground; function Get_Background return Color_Type is begin Get_Buffer_Info; return Color_Type_Value (Buffer_Info_Rec.Attrib.Background); end Get_Background; procedure Set_Foreground (Color : in Color_Type := Gray) is Attr : Attribute; begin Get_Buffer_Info; Attr.Foreground := Color_Value (Color); Attr.Background := Buffer_Info_Rec.Attrib.Background; if SetConsoleTextAttribute (Output_Buffer, Attr) = WIN32_ERROR then raise Set_Attribute_Error; end if; end Set_Foreground; procedure Set_Background (Color : in Color_Type := Black) is Attr : Attribute; begin Get_Buffer_Info; Attr.Foreground := Buffer_Info_Rec.Attrib.Foreground; Attr.Background := Color_Value (Color); if SetConsoleTextAttribute (Output_Buffer, Attr) = WIN32_ERROR then raise Set_Attribute_Error; end if; end Set_Background; -------------------- -- SCREEN CONTROL -- -------------------- procedure Clear_Screen (Color : in Color_Type := Black) is Length : DWORD; Attr : Attribute; Home : COORD := (0, 0); begin Get_Buffer_Info; Length := DWORD (Buffer_Info_Rec.Size.X) * DWORD (Buffer_Info_Rec.Size.Y); Attr.Background := Color_Value (Color); Attr.Foreground := Buffer_Info_Rec.Attrib.Foreground; if SetConsoleTextAttribute (Output_Buffer, Attr) = WIN32_ERROR then raise Set_Attribute_Error; end if; if FillConsoleOutputAttribute (Output_Buffer, Attr, Length, Home, Num_Bytes_Access) = WIN32_ERROR then raise Fill_Attribute_Error; end if; if FillConsoleOutputCharacter (Output_Buffer, ' ', Length, Home, Num_Bytes_Access) = WIN32_ERROR then raise Fill_Char_Error; end if; if SetConsoleCursorPosition (Output_Buffer, Home) = WIN32_ERROR then raise Cursor_Position_Error; end if; end Clear_Screen; ------------------- -- SOUND CONTROL -- ------------------- procedure Bleep is begin if MessageBeep (16#FFFFFFFF#) = WIN32_ERROR then raise Beep_Error; end if; end Bleep; ------------------- -- INPUT CONTROL -- ------------------- function Get_Key return Character is Temp : Integer; begin Temp := GetCh; if Temp = 16#00E0# then Temp := 0; end if; return Character'Val (Temp); end Get_Key; function Key_Available return Boolean is begin if KbHit = 0 then return False; else return True; end if; end Key_Available; begin -------------------------- -- WIN32 INITIALIZATION -- -------------------------- Output_Buffer := GetStdHandle (STD_OUTPUT_HANDLE); if Output_Buffer = INVALID_HANDLE_VALUE then raise Invalid_Handle_Error; end if; end NT_Console;
----------------------------------------------------------------------- -- atlas-server -- Application server -- Copyright (C) 2011, 2012, 2013, 2016, 2017, 2018, 2019, 2020, 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 Util.Log.Loggers; with Util.Commands; with AWS.Net.SSL; with Servlet.Server.Web; with AWA.Commands.Drivers; with AWA.Commands.Start; with AWA.Commands.Setup; with AWA.Commands.Stop; with AWA.Commands.List; with AWA.Commands.Info; with ADO.Drivers; -- with ADO.Sqlite; -- with ADO.Mysql; -- with ADO.Postgresql; with Atlas.Applications; procedure Atlas.Server is package Server_Commands is new AWA.Commands.Drivers (Driver_Name => "atlas", Container_Type => Servlet.Server.Web.AWS_Container); package List_Command is new AWA.Commands.List (Server_Commands); package Start_Command is new AWA.Commands.Start (Server_Commands); package Stop_Command is new AWA.Commands.Stop (Server_Commands); package Info_Command is new AWA.Commands.Info (Server_Commands); package Setup_Command is new AWA.Commands.Setup (Start_Command); Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Atlas.Server"); App : constant Atlas.Applications.Application_Access := new Atlas.Applications.Application; WS : Servlet.Server.Web.AWS_Container renames Server_Commands.WS; Context : AWA.Commands.Context_Type; Arguments : Util.Commands.Dynamic_Argument_List; begin -- Initialize the database drivers (all of them or specific ones). ADO.Drivers.Initialize; -- ADO.Sqlite.Initialize; -- ADO.Mysql.Initialize; -- ADO.Postgresql.Initialize; WS.Register_Application (Atlas.Applications.CONTEXT_PATH, App.all'Access); if not AWS.Net.SSL.Is_Supported then Log.Error ("SSL is not supported by AWS."); Log.Error ("SSL is required for the OAuth2/OpenID connector to " & "connect to OAuth2/OpenID providers."); Log.Error ("Please, rebuild AWS with SSL support."); end if; Log.Info ("Connect you browser to: http://localhost:8080{0}/index.html", Atlas.Applications.CONTEXT_PATH); Server_Commands.Run (Context, Arguments); exception when E : others => Context.Print (E); end Atlas.Server;
pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; limited with context_h; limited with tileset_h; limited with console_h; with utypes_uuint32_t_h; with Interfaces.C.Strings; with System; with error_h; package renderer_sdl2_h is -- BSD 3-Clause License -- * -- * Copyright © 2008-2021, Jice and the libtcod contributors. -- * All rights reserved. -- * -- * 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. -- type SDL_Texture is null record; -- incomplete struct --* -- An SDL2 tileset atlas. This prepares a tileset for use with SDL2. -- \rst -- .. versionadded:: 1.16 -- \endrst -- --* The renderer used to create this atlas. type TCOD_TilesetAtlasSDL2 is record renderer : access context_h.SDL_Renderer; -- renderer_sdl2.h:54 texture : access SDL_Texture; -- renderer_sdl2.h:56 tileset : access tileset_h.TCOD_Tileset; -- renderer_sdl2.h:58 observer : access tileset_h.TCOD_TilesetObserver; -- renderer_sdl2.h:60 texture_columns : aliased int; -- renderer_sdl2.h:62 end record with Convention => C_Pass_By_Copy; -- renderer_sdl2.h:52 --* The atlas texture. --* The tileset used to create this atlas. Internal use only. --* Internal use only. --* Internal use only. --* -- The renderer data for an SDL2 rendering context. -- Internal use only. -- type TCOD_RendererSDL2 is record window : access context_h.SDL_Window; -- renderer_sdl2.h:70 renderer : access context_h.SDL_Renderer; -- renderer_sdl2.h:71 atlas : access TCOD_TilesetAtlasSDL2; -- renderer_sdl2.h:72 cache_console : access console_h.TCOD_Console; -- renderer_sdl2.h:73 cache_texture : access SDL_Texture; -- renderer_sdl2.h:74 sdl_subsystems : aliased utypes_uuint32_t_h.uint32_t; -- renderer_sdl2.h:75 last_offset_x : aliased double; -- renderer_sdl2.h:77 last_offset_y : aliased double; -- renderer_sdl2.h:78 last_scale_x : aliased double; -- renderer_sdl2.h:79 last_scale_y : aliased double; -- renderer_sdl2.h:80 end record with Convention => C_Pass_By_Copy; -- renderer_sdl2.h:69 -- Mouse cursor transform values of the last viewport used. --* -- Return a libtcod rendering context using an SDL2 renderer. -- function TCOD_renderer_init_sdl2 (arg1 : int; arg2 : int; arg3 : int; arg4 : int; arg5 : Interfaces.C.Strings.chars_ptr; arg6 : int; arg7 : int; arg8 : access tileset_h.TCOD_Tileset) return access context_h.TCOD_Context -- renderer_sdl2.h:88 with Import => True, Convention => C, External_Name => "TCOD_renderer_init_sdl2"; --* -- Return a new SDL2 atlas created from a tileset for an SDL2 renderer. -- You may delete the tileset if you no longer have use for it. -- Will return NULL on an error, you can check the error with -- `TCOD_get_error`. -- function TCOD_sdl2_atlas_new (arg1 : access context_h.SDL_Renderer; arg2 : access tileset_h.TCOD_Tileset) return access TCOD_TilesetAtlasSDL2 -- renderer_sdl2.h:105 with Import => True, Convention => C, External_Name => "TCOD_sdl2_atlas_new"; --* -- Delete an SDL2 tileset atlas. -- procedure TCOD_sdl2_atlas_delete (atlas : access TCOD_TilesetAtlasSDL2) -- renderer_sdl2.h:110 with Import => True, Convention => C, External_Name => "TCOD_sdl2_atlas_delete"; --* -- Setup a cache and target texture for rendering. -- `atlas` is an SDL2 atlas created with `TCOD_sdl2_atlas_new`. -- The renderer used to make this `atlas` must support -- `SDL_RENDERER_TARGETTEXTURE`. -- `console` is a non-NULL pointer to the libtcod console you want to render. -- `cache` can be NULL, or be pointer to a console pointer. -- If `*cache` is NULL then a console will be created. -- If `*cache` isn't NULL then the console pointed to might be deleted or -- recreated if it does not match the size of `console`. -- `target` must be a pointer to where you want the output texture to be placed. -- The texture at `*target` may be deleted or recreated. When this function -- is successful then the texture at `*target` will be non-NULL and will be -- exactly fitted to the size of `console` and the tile size of `atlas`. -- If SDL2 ever provides a `SDL_RENDER_TARGETS_RESET` event then the console -- at `*cache` must be deleted and set to NULL, or else the next render will -- only partially update the texture at `*target`. -- Returns a negative value on an error, check `TCOD_get_error`. -- \rst -- .. versionadded:: 1.16 -- \endrst -- function TCOD_sdl2_render_texture_setup (atlas : access constant TCOD_TilesetAtlasSDL2; console : access constant console_h.TCOD_Console; cache : System.Address; target : System.Address) return error_h.TCOD_Error -- renderer_sdl2.h:140 with Import => True, Convention => C, External_Name => "TCOD_sdl2_render_texture_setup"; --* -- Render a console onto a managed target texture. -- This function assumes that `cache` and `target` are valid. -- You can use `TCOD_sdl2_render_texture_setup` to automatically prepare these -- objects for use with this function. -- `atlas` is an SDL2 atlas created with `TCOD_sdl2_atlas_new`. -- The renderer used to make this `atlas` must support -- `SDL_RENDERER_TARGETTEXTURE`, unless `target` is NULL. -- `console` is a non-NULL pointer to the libtcod console you want to render. -- `cache` can be NULL, or point to a console the same size as `console`. -- `target` can be NULL, or be pointer an SDL2 texture used as the output. -- If `target` is not NULL then it should be the size of the console times the -- size of the individual tiles to fit the entire output. -- If `target` is NULL then the current render target is used instead, the -- drawn area will not be scaled to fit the render target. -- If SDL2 ever provides a `SDL_RENDER_TARGETS_RESET` event then the console -- at `cache` must be cleared, or else the next render will only partially -- update the texture of `target`. -- Returns a negative value on an error, check `TCOD_get_error`. -- \rst -- .. versionadded:: 1.16 -- \endrst -- function TCOD_sdl2_render_texture (atlas : access constant TCOD_TilesetAtlasSDL2; console : access constant console_h.TCOD_Console; cache : access console_h.TCOD_Console; target : access SDL_Texture) return error_h.TCOD_Error -- renderer_sdl2.h:177 with Import => True, Convention => C, External_Name => "TCOD_sdl2_render_texture"; -- extern "C" end renderer_sdl2_h;
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. package body Stories.Test_Data is procedure Set_Up(Gnattest_T: in out Test) is pragma Unreferenced(Gnattest_T); begin null; end Set_Up; procedure Tear_Down(Gnattest_T: in out Test) is pragma Unreferenced(Gnattest_T); begin null; end Tear_Down; end Stories.Test_Data;
------------------------------------------------------------------------------ -- EMAIL: <darkestkhan@gmail.com> -- -- License: ISC License (see COPYING file) -- -- -- -- Copyright © 2012 - 2015 darkestkhan -- ------------------------------------------------------------------------------ -- Permission to use, copy, modify, and/or distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- The software is provided "as is" and the author disclaims all warranties -- -- with regard to this software including all implied warranties of -- -- merchantability and fitness. In no event shall the author be liable for -- -- any special, direct, indirect, or consequential damages or any damages -- -- whatsoever resulting from loss of use, data or profits, whether in an -- -- action of contract, negligence or other tortious action, arising out of -- -- or in connection with the use or performance of this software. -- ------------------------------------------------------------------------------ -- Utility subprograms for ANSI/VT100 API wrapper package VT100.Utils is function Lines return Natural; -- return number of lines displayed on screen function Columns return Natural; -- return number of column displayed on screen end VT100.Utils;
with System; with Utils; use Utils; package body Drivers.CC1101 is type Register_Type is ( IOCFG2, IOCFG1, IOCFG0, FIFOTHR, SYNC1, SYNC0, PKTLEN, PKTCTRL1, PKTCTRL0, ADDR, CHANNR, FSCTRL1, FSCTRL0, FREQ2, FREQ1, FREQ0, MDMCFG4, MDMCFG3, MDMCFG2, MDMCFG1, MDMCFG0, DEVIATN, MCSM2, MCSM1, MCSM0, FOCCFG, BSCFG, AGCCTRL2, AGCCTRL1, AGCCTRL0, WOREVT1, WOREVT0, WORCTRL, FREND1, FREND0, FSCAL3, FSCAL2, FSCAL1, FSCAL0, RCCTRL1, RCCTRL0, FSTEST, PTEST, AGCTEST, TEST2, TEST1, TEST0, PARTNUM, VERSION, FREQEST, LQI, RSSI, MARCSTATE, WORTIME1, WORTIME0, PKTSTATUS, VCO_VC_DAC, TXBYTES, RXBYTES, RCCTRL1_STATUS, RCCTRL0_STATUS); for Register_Type use ( IOCFG2 => 16#00#, IOCFG1 => 16#01#, IOCFG0 => 16#02#, FIFOTHR => 16#03#, SYNC1 => 16#04#, SYNC0 => 16#05#, PKTLEN => 16#06#, PKTCTRL1 => 16#07#, PKTCTRL0 => 16#08#, ADDR => 16#09#, CHANNR => 16#0A#, FSCTRL1 => 16#0B#, FSCTRL0 => 16#0C#, FREQ2 => 16#0D#, FREQ1 => 16#0E#, FREQ0 => 16#0F#, MDMCFG4 => 16#10#, MDMCFG3 => 16#11#, MDMCFG2 => 16#12#, MDMCFG1 => 16#13#, MDMCFG0 => 16#14#, DEVIATN => 16#15#, MCSM2 => 16#16#, MCSM1 => 16#17#, MCSM0 => 16#18#, FOCCFG => 16#19#, BSCFG => 16#1A#, AGCCTRL2 => 16#1B#, AGCCTRL1 => 16#1C#, AGCCTRL0 => 16#1D#, WOREVT1 => 16#1E#, WOREVT0 => 16#1F#, WORCTRL => 16#20#, FREND1 => 16#21#, FREND0 => 16#22#, FSCAL3 => 16#23#, FSCAL2 => 16#24#, FSCAL1 => 16#25#, FSCAL0 => 16#26#, RCCTRL1 => 16#27#, RCCTRL0 => 16#28#, FSTEST => 16#29#, PTEST => 16#2A#, AGCTEST => 16#2B#, TEST2 => 16#2C#, TEST1 => 16#2D#, TEST0 => 16#2E#, PARTNUM => 16#30#, VERSION => 16#31#, FREQEST => 16#32#, LQI => 16#33#, RSSI => 16#34#, MARCSTATE => 16#35#, WORTIME1 => 16#36#, WORTIME0 => 16#37#, PKTSTATUS => 16#38#, VCO_VC_DAC => 16#39#, TXBYTES => 16#3A#, RXBYTES => 16#3B#, RCCTRL1_STATUS => 16#3C#, RCCTRL0_STATUS => 16#3D#); type Commands is ( SRES, SFSTXON, SXOFF, SCAL, SRX, STX, SIDLE, SWOR, SPWD, SFRX, SFTX, SWORRST, SNOP); for Commands use ( SRES => 16#30#, SFSTXON => 16#31#, SXOFF => 16#32#, SCAL => 16#33#, SRX => 16#34#, STX => 16#35#, SIDLE => 16#36#, SWOR => 16#38#, SPWD => 16#39#, SFRX => 16#3A#, SFTX => 16#3B#, SWORRST => 16#3C#, SNOP => 16#3D#); type Init_Value is record Register : Register_Type; Value : Byte; end record; Init_Values : constant array (1 .. 29) of Init_Value := ( (IOCFG0, 16#41#), -- CHIP_RDYn (IOCFG2, 16#07#), -- RX with CRC ok (FIFOTHR, 16#47#), -- RX attenuation 6dB, 33/32 byte threshold (PKTLEN, 16#3D#), -- 62 bytes max packet length (PKTCTRL1, 16#0C#), -- CRC autoflush, status append (PKTCTRL0, 16#05#), -- TX/RX CRC enabled, variable packet length (FSCTRL1, 16#06#), -- 152kHz IF frequency (FREQ2, 16#10#), -- 434 MHz carrier frequency (FREQ1, 16#B1#), (FREQ0, 16#3B#), (MDMCFG4, 16#FA#), -- 135kHz channel bandwidth (MDMCFG3, 16#83#), -- 38.4kbps symbol rate (MDMCFG2, 16#31#), -- OOK, 16/16 sync word detection -- (MDMCFG2, 16#06#), -- 2-FSK, 16/16 sync word detection, carrier sense (MDMCFG1, 16#42#), -- 8 bytes preamble (DEVIATN, 16#27#), -- 11.9kHz FSK deviation (MCSM1, 16#3c#), (MCSM0, 16#18#), (FOCCFG, 16#16#), (WORCTRL, 16#FB#), (FSCAL3, 16#E9#), (FSCAL2, 16#2A#), (FSCAL1, 16#00#), (FSCAL0, 16#1F#), (AGCCTRL2, 16#04#), (AGCCTRL1, 16#00#), (AGCCTRL0, 16#91#), (TEST2, 16#81#), (TEST1, 16#35#), (TEST0, 16#09#)); procedure Write_Register (Register : Register_Type; Value : Byte); procedure Read_Register (Register : Register_Type; Value : out Byte); function Read_Register (Register : Register_Type) return Byte; procedure Write_Register (Register : Register_Type; Value : Byte) is begin Chip_Select.Clear; SPI.Send (Register'Enum_Rep); SPI.Send (Value); Chip_Select.Set; end Write_Register; procedure Read_Register (Register : Register_Type; Value : out Byte) is begin Chip_Select.Clear; SPI.Send (16#80# + Register'Enum_Rep); SPI.Receive (Value); Chip_Select.Set; end Read_Register; function Read_Register (Register : Register_Type) return Byte is Value : Byte; begin Chip_Select.Clear; SPI.Send (16#80# + Register'Enum_Rep); SPI.Receive (Value); Chip_Select.Set; return Value; end Read_Register; procedure Read_Status (Register : Register_Type; Value : out Byte) is begin Chip_Select.Clear; SPI.Send (16#C0# + Register'Enum_Rep); SPI.Receive (Value); Chip_Select.Set; end Read_Status; function Read_Status (Register : Register_Type) return Byte is Value : Byte; begin Chip_Select.Clear; SPI.Send (16#C0# + Register'Enum_Rep); SPI.Receive (Value); Chip_Select.Set; return Value; end Read_Status; procedure Read_Registers (Registers : out Raw_Register_Array) is begin for R in Register_Type loop if R'Enum_Rep < PARTNUM'Enum_Rep then Read_Register (R, Registers (R'Enum_Rep)); else Read_Status (R, Registers (R'Enum_Rep)); end if; end loop; end Read_Registers; procedure Init is begin for I of Init_Values loop Write_Register (I.Register, I.Value); end loop; end Init; procedure Print_Registers is begin Put_Line ( "PARTNUM:" & To_Hex_String (Unsigned_8 (Read_Status (PARTNUM))) & " VERSION:" & To_Hex_String (Unsigned_8 (Read_Status (VERSION))) & " SYNC0:" & To_Hex_String (Unsigned_8 (Read_Register (SYNC0))) & " SYNC1:" & To_Hex_String (Unsigned_8 (Read_Register (SYNC1))) & " FREQ:" & To_Hex_String (Unsigned_8 (Read_Register (FREQ0))) & To_Hex_String (Unsigned_8 (Read_Register (FREQ1))) & To_Hex_String (Unsigned_8 (Read_Register (FREQ2)))); end Print_Registers; procedure Set_Sync_Word (Word : Unsigned_16) is begin null; end Set_Sync_Word; function Get_Sync_Word return Unsigned_16 is begin return Unsigned_16 (Read_Register (SYNC1)) * 2 ** 8 + Unsigned_16 (Read_Register (SYNC0)); end Get_Sync_Word; procedure TX_Mode is begin null; end TX_Mode; procedure RX_Mode is begin Chip_Select.Clear; SPI.Send (SIDLE'Enum_Rep); SPI.Send (SFRX'Enum_Rep); SPI.Send (SRX'Enum_Rep); Chip_Select.Set; end RX_Mode; procedure TX (Packet: Packet_Type) is begin Chip_Select.Clear; SPI.Send (SFTX'Enum_Rep); Chip_Select.Clear; SPI.Send (16#3F# + 16#40#); for D of Packet loop SPI.Send (D); end loop; Chip_Select.Set; Chip_Select.Clear; SPI.Send (STX'Enum_Rep); Chip_Select.Set; end TX; function Wait_For_RX return Boolean is begin loop exit when RX_Available; end loop; return True; -- IRQ.Clear_Trigger; -- IRQ.Wait_For_Trigger; -- return IRQ.Triggered; end Wait_For_RX; function RX_Available return Boolean is begin return Read_Status (RXBYTES) > 0; end RX_Available; procedure Clear_IRQ is begin IRQ.Clear_Trigger; end Clear_IRQ; procedure RX (Packet : out Packet_Type; Length : out Natural) is N : Natural; begin N := Natural (Read_Status (RXBYTES)); Chip_Select.Clear; SPI.Send (16#3F# + 16#C0#); for I in 1 .. N loop SPI.Receive (Packet (I)); end loop; Chip_Select.Set; Length := N; end RX; procedure Power_Down is begin null; end Power_Down; procedure Cancel is begin null; end Cancel; end Drivers.CC1101;
-- ----------------------------------------------------------------- -- -- -- -- This is free software; you can redistribute it and/or -- -- modify it under the terms of the GNU General Public -- -- License as published by the Free Software Foundation; either -- -- version 2 of the License, or (at your option) any later version. -- -- -- -- This software is distributed in the hope that it will be useful, -- -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- -- General Public License for more details. -- -- -- -- You should have received a copy of the GNU General Public -- -- License along with this library; if not, write to the -- -- Free Software Foundation, Inc., 59 Temple Place - Suite 330, -- -- Boston, MA 02111-1307, USA. -- -- -- -- ----------------------------------------------------------------- -- -- ----------------------------------------------------------------- -- -- This is a translation, to the Ada programming language, of the -- -- original C test files written by Sam Lantinga - www.libsdl.org -- -- translation made by Antonio F. Vargas - www.adapower.net/~avargas -- -- ----------------------------------------------------------------- -- with Interfaces.C; with Ada.Numerics.Discrete_Random; with SDL.Video; package TestPalette_Sprogs is package Vd renames SDL.Video; package C renames Interfaces.C; package Random_Integer is new Ada.Numerics.Discrete_Random (Integer); Integer_Generator : Random_Integer.Generator; SCRW : constant := 640; -- 800; -- 640; SCRH : constant := 480; -- 600; -- 480; SPEED : constant := 2; NBOATS : constant := 5; procedure sdlerr (when_err : String); function make_bg (screen : Vd.Surface_ptr; startcol : C.int) return Vd.Surface_ptr; function hflip (s : Vd.Surface_ptr) return Vd.Surface_ptr; -- wave colours: Made by taking a narrow cross-section of a wave picture -- in Gimp, saving in PPM ascii format and formatting with Emacs macros. type wavemap_Array is array (0 .. 63) of aliased Vd.Color; wavemap : wavemap_Array := (( 0, 2,103,0), ( 0, 7,110,0), ( 0, 13,117,0), ( 0, 19,125,0), ( 0, 25,133,0), ( 0, 31,141,0), ( 0, 37,150,0), ( 0, 43,158,0), ( 0, 49,166,0), ( 0, 55,174,0), ( 0, 61,182,0), ( 0, 67,190,0), ( 0, 73,198,0), ( 0, 79,206,0), ( 0, 86,214,0), ( 0, 96,220,0), ( 5,105,224,0), ( 12,112,226,0), ( 19,120,227,0), ( 26,128,229,0), ( 33,135,230,0), ( 40,143,232,0), ( 47,150,234,0), ( 54,158,236,0), ( 61,165,238,0), ( 68,173,239,0), ( 75,180,241,0), ( 82,188,242,0), ( 89,195,244,0), ( 96,203,246,0), (103,210,248,0), (112,218,250,0), (124,224,250,0), (135,226,251,0), (146,229,251,0), (156,231,252,0), (167,233,252,0), (178,236,252,0), (189,238,252,0), (200,240,252,0), (211,242,252,0), (222,244,252,0), (233,247,252,0), (242,249,252,0), (237,250,252,0), (209,251,252,0), (174,251,252,0), (138,252,252,0), (102,251,252,0), ( 63,250,252,0), ( 24,243,252,0), ( 7,225,252,0), ( 4,203,252,0), ( 3,181,252,0), ( 2,158,252,0), ( 1,136,251,0), ( 0,111,248,0), ( 0, 82,234,0), ( 0, 63,213,0), ( 0, 50,192,0), ( 0, 39,172,0), ( 0, 28,152,0), ( 0, 17,132,0), ( 0, 7,114,0)); cmap : Vd.Colors_Array (0 .. 255); end TestPalette_Sprogs;
-- ----------------------------------------------------------------------------- -- 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. -- ----------------------------------------------------------------------------- -- ----------------------------------------------------------------------------- -- Procedure: Smk.Main specification -- -- Purpose: -- -- Effects: -- -- Limitations: -- -- Performance: -- ----------------------------------------------------------------------------- private procedure Smk.Main;
-- This package is intended to set up and tear down the test environment. -- Once created by GNATtest, this package will never be overwritten -- automatically. Contents of this package can be modified in any way -- except for sections surrounded by a 'read only' marker. with AUnit.Test_Fixtures; package Ships.Test_Data is -- begin read only type Test is new AUnit.Test_Fixtures.Test_Fixture -- end read only with null record; procedure Set_Up(Gnattest_T: in out Test); procedure Tear_Down(Gnattest_T: in out Test); end Ships.Test_Data;
------------------------------------------------------------------------------ -- -- -- 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.Elements.Generic_Hash; function AMF.OCL.Expression_In_Ocls.Hash is new AMF.Elements.Generic_Hash (OCL_Expression_In_Ocl, OCL_Expression_In_Ocl_Access);