CombinedText
stringlengths
4
3.42M
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . O R D E R E D _ M A P S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004-2021, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- This unit was originally developed by Matthew J Heaney. -- ------------------------------------------------------------------------------ with Ada.Iterator_Interfaces; private with Ada.Containers.Red_Black_Trees; private with Ada.Finalization; private with Ada.Streams; private with Ada.Strings.Text_Buffers; generic type Key_Type is private; type Element_Type is private; with function "<" (Left, Right : Key_Type) return Boolean is <>; with function "=" (Left, Right : Element_Type) return Boolean is <>; package Ada.Containers.Ordered_Maps with SPARK_Mode => Off is pragma Annotate (CodePeer, Skip_Analysis); pragma Preelaborate; pragma Remote_Types; function Equivalent_Keys (Left, Right : Key_Type) return Boolean; type Map is tagged private with Constant_Indexing => Constant_Reference, Variable_Indexing => Reference, Default_Iterator => Iterate, Iterator_Element => Element_Type, Aggregate => (Empty => Empty, Add_Named => Insert); pragma Preelaborable_Initialization (Map); type Cursor is private; pragma Preelaborable_Initialization (Cursor); Empty_Map : constant Map; function Empty return Map; pragma Ada_2022 (Empty); No_Element : constant Cursor; function Has_Element (Position : Cursor) return Boolean; package Map_Iterator_Interfaces is new Ada.Iterator_Interfaces (Cursor, Has_Element); function "=" (Left, Right : Map) return Boolean; function Length (Container : Map) return Count_Type; function Is_Empty (Container : Map) return Boolean; procedure Clear (Container : in out Map); function Key (Position : Cursor) return Key_Type; function Element (Position : Cursor) return Element_Type; procedure Replace_Element (Container : in out Map; Position : Cursor; New_Item : Element_Type); procedure Query_Element (Position : Cursor; Process : not null access procedure (Key : Key_Type; Element : Element_Type)); procedure Update_Element (Container : in out Map; Position : Cursor; Process : not null access procedure (Key : Key_Type; 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 Map; Position : Cursor) return Constant_Reference_Type; pragma Inline (Constant_Reference); function Reference (Container : aliased in out Map; Position : Cursor) return Reference_Type; pragma Inline (Reference); function Constant_Reference (Container : aliased Map; Key : Key_Type) return Constant_Reference_Type; pragma Inline (Constant_Reference); function Reference (Container : aliased in out Map; Key : Key_Type) return Reference_Type; pragma Inline (Reference); procedure Assign (Target : in out Map; Source : Map); function Copy (Source : Map) return Map; procedure Move (Target : in out Map; Source : in out Map); procedure Insert (Container : in out Map; Key : Key_Type; New_Item : Element_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Map; Key : Key_Type; Position : out Cursor; Inserted : out Boolean); procedure Insert (Container : in out Map; Key : Key_Type; New_Item : Element_Type); procedure Include (Container : in out Map; Key : Key_Type; New_Item : Element_Type); procedure Replace (Container : in out Map; Key : Key_Type; New_Item : Element_Type); procedure Exclude (Container : in out Map; Key : Key_Type); procedure Delete (Container : in out Map; Key : Key_Type); procedure Delete (Container : in out Map; Position : in out Cursor); procedure Delete_First (Container : in out Map); procedure Delete_Last (Container : in out Map); function First (Container : Map) return Cursor; function First_Element (Container : Map) return Element_Type; function First_Key (Container : Map) return Key_Type; function Last (Container : Map) return Cursor; function Last_Element (Container : Map) return Element_Type; function Last_Key (Container : Map) return Key_Type; function Next (Position : Cursor) return Cursor; procedure Next (Position : in out Cursor); function Previous (Position : Cursor) return Cursor; procedure Previous (Position : in out Cursor); function Find (Container : Map; Key : Key_Type) return Cursor; function Element (Container : Map; Key : Key_Type) return Element_Type; function Floor (Container : Map; Key : Key_Type) return Cursor; function Ceiling (Container : Map; Key : Key_Type) return Cursor; function Contains (Container : Map; Key : Key_Type) return Boolean; function "<" (Left, Right : Cursor) return Boolean; function ">" (Left, Right : Cursor) return Boolean; function "<" (Left : Cursor; Right : Key_Type) return Boolean; function ">" (Left : Cursor; Right : Key_Type) return Boolean; function "<" (Left : Key_Type; Right : Cursor) return Boolean; function ">" (Left : Key_Type; Right : Cursor) return Boolean; procedure Iterate (Container : Map; Process : not null access procedure (Position : Cursor)); procedure Reverse_Iterate (Container : Map; Process : not null access procedure (Position : Cursor)); -- The map container supports iteration in both the forward and reverse -- directions, hence these constructor functions return an object that -- supports the Reversible_Iterator interface. function Iterate (Container : Map) return Map_Iterator_Interfaces.Reversible_Iterator'class; function Iterate (Container : Map; Start : Cursor) return Map_Iterator_Interfaces.Reversible_Iterator'class; private pragma Inline (Next); pragma Inline (Previous); type Node_Type; type Node_Access is access Node_Type; type Node_Type is limited record Parent : Node_Access; Left : Node_Access; Right : Node_Access; Color : Red_Black_Trees.Color_Type := Red_Black_Trees.Red; Key : Key_Type; Element : aliased Element_Type; end record; package Tree_Types is new Red_Black_Trees.Generic_Tree_Types (Node_Type, Node_Access); type Map is new Ada.Finalization.Controlled with record Tree : Tree_Types.Tree_Type; end record with Put_Image => Put_Image; procedure Put_Image (S : in out Ada.Strings.Text_Buffers.Root_Buffer_Type'Class; V : Map); overriding procedure Adjust (Container : in out Map); overriding procedure Finalize (Container : in out Map) renames Clear; use Red_Black_Trees; use Tree_Types, Tree_Types.Implementation; use Ada.Finalization; use Ada.Streams; procedure Write (Stream : not null access Root_Stream_Type'Class; Container : Map); for Map'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Container : out Map); for Map'Read use Read; type Map_Access is access all Map; for Map_Access'Storage_Size use 0; type Cursor is record Container : Map_Access; Node : Node_Access; end record; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Cursor); for Cursor'Write use Write; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Cursor); for Cursor'Read use Read; subtype Reference_Control_Type is Implementation.Reference_Control_Type; -- It is necessary to rename this here, so that the compiler can find it type Constant_Reference_Type (Element : not null access constant Element_Type) is record Control : Reference_Control_Type := raise Program_Error with "uninitialized reference"; -- The RM says, "The default initialization of an object of -- type Constant_Reference_Type or Reference_Type propagates -- Program_Error." end record; procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Constant_Reference_Type); for Constant_Reference_Type'Read use Read; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Constant_Reference_Type); for Constant_Reference_Type'Write use Write; 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 Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type); for Reference_Type'Read use Read; procedure Write (Stream : not null access Root_Stream_Type'Class; Item : Reference_Type); for Reference_Type'Write use Write; -- Three operations are used to optimize in the expansion of "for ... of" -- loops: the Next(Cursor) procedure in the visible part, and the following -- Pseudo_Reference and Get_Element_Access functions. See Sem_Ch5 for -- details. function Pseudo_Reference (Container : aliased Map'Class) return Reference_Control_Type; pragma Inline (Pseudo_Reference); -- Creates an object of type Reference_Control_Type pointing to the -- container, and increments the Lock. Finalization of this object will -- decrement the Lock. type Element_Access is access all Element_Type with Storage_Size => 0; function Get_Element_Access (Position : Cursor) return not null Element_Access; -- Returns a pointer to the element designated by Position. Empty_Map : constant Map := (Controlled with others => <>); function Empty return Map is (Empty_Map); No_Element : constant Cursor := Cursor'(null, null); type Iterator is new Limited_Controlled and Map_Iterator_Interfaces.Reversible_Iterator with record Container : Map_Access; Node : Node_Access; end record with Disable_Controlled => not T_Check; overriding procedure Finalize (Object : in out Iterator); overriding function First (Object : Iterator) return Cursor; overriding function Last (Object : Iterator) return Cursor; overriding function Next (Object : Iterator; Position : Cursor) return Cursor; overriding function Previous (Object : Iterator; Position : Cursor) return Cursor; end Ada.Containers.Ordered_Maps;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ -- A generalization is a taxonomic relationship between a more general -- classifier and a more specific classifier. Each instance of the specific -- classifier is also an indirect instance of the general classifier. Thus, -- the specific classifier inherits the features of the more general -- classifier. -- -- A generalization relates a specific classifier to a more general -- classifier, and is owned by the specific classifier. ------------------------------------------------------------------------------ limited with AMF.UML.Classifiers; with AMF.UML.Directed_Relationships; limited with AMF.UML.Generalization_Sets.Collections; package AMF.UML.Generalizations is pragma Preelaborate; type UML_Generalization is limited interface and AMF.UML.Directed_Relationships.UML_Directed_Relationship; type UML_Generalization_Access is access all UML_Generalization'Class; for UML_Generalization_Access'Storage_Size use 0; not overriding function Get_General (Self : not null access constant UML_Generalization) return AMF.UML.Classifiers.UML_Classifier_Access is abstract; -- Getter of Generalization::general. -- -- References the general classifier in the Generalization relationship. not overriding procedure Set_General (Self : not null access UML_Generalization; To : AMF.UML.Classifiers.UML_Classifier_Access) is abstract; -- Setter of Generalization::general. -- -- References the general classifier in the Generalization relationship. not overriding function Get_Generalization_Set (Self : not null access constant UML_Generalization) return AMF.UML.Generalization_Sets.Collections.Set_Of_UML_Generalization_Set is abstract; -- Getter of Generalization::generalizationSet. -- -- Designates a set in which instances of Generalization is considered -- members. not overriding function Get_Is_Substitutable (Self : not null access constant UML_Generalization) return AMF.Optional_Boolean is abstract; -- Getter of Generalization::isSubstitutable. -- -- Indicates whether the specific classifier can be used wherever the -- general classifier can be used. If true, the execution traces of the -- specific classifier will be a superset of the execution traces of the -- general classifier. not overriding procedure Set_Is_Substitutable (Self : not null access UML_Generalization; To : AMF.Optional_Boolean) is abstract; -- Setter of Generalization::isSubstitutable. -- -- Indicates whether the specific classifier can be used wherever the -- general classifier can be used. If true, the execution traces of the -- specific classifier will be a superset of the execution traces of the -- general classifier. not overriding function Get_Specific (Self : not null access constant UML_Generalization) return AMF.UML.Classifiers.UML_Classifier_Access is abstract; -- Getter of Generalization::specific. -- -- References the specializing classifier in the Generalization -- relationship. not overriding procedure Set_Specific (Self : not null access UML_Generalization; To : AMF.UML.Classifiers.UML_Classifier_Access) is abstract; -- Setter of Generalization::specific. -- -- References the specializing classifier in the Generalization -- relationship. end AMF.UML.Generalizations;
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ I N T E R F A C E -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-2001 Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is a OpenVMS/Alpha version of this package. -- This package encapsulates all direct interfaces to OS services -- that are needed by children of System. -- PLEASE DO NOT add any with-clauses to this package -- or remove the pragma Elaborate_Body. -- It is designed to be a bottom-level (leaf) package. with Interfaces.C; package System.OS_Interface is pragma Preelaborate; pragma Linker_Options ("--for-linker=sys$library:pthread$rtl.exe"); -- Link in the DEC threads library. -- pragma Linker_Options ("--for-linker=/threads_enable"); -- Enable upcalls and multiple kernel threads. subtype int is Interfaces.C.int; subtype short is Interfaces.C.short; subtype long is Interfaces.C.long; subtype unsigned is Interfaces.C.unsigned; subtype unsigned_short is Interfaces.C.unsigned_short; subtype unsigned_long is Interfaces.C.unsigned_long; subtype unsigned_char is Interfaces.C.unsigned_char; subtype plain_char is Interfaces.C.plain_char; subtype size_t is Interfaces.C.size_t; ----------------------------- -- Signals (Interrupt IDs) -- ----------------------------- -- Type signal has an arbitrary limit of 31 Max_Interrupt : constant := 31; type Signal is new unsigned range 0 .. Max_Interrupt; for Signal'Size use unsigned'Size; type sigset_t is array (Signal) of Boolean; pragma Pack (sigset_t); -- Interrupt_Number_Type -- Unsigned long integer denoting the number of an interrupt subtype Interrupt_Number_Type is unsigned_long; -- OpenVMS system services return values of type Cond_Value_Type. subtype Cond_Value_Type is unsigned_long; subtype Short_Cond_Value_Type is unsigned_short; type IO_Status_Block_Type is record Status : Short_Cond_Value_Type; Count : unsigned_short; Dev_Info : unsigned_long; end record; type AST_Handler is access procedure (Param : Address); No_AST_Handler : constant AST_Handler := null; CMB_M_READONLY : constant := 16#00000001#; CMB_M_WRITEONLY : constant := 16#00000002#; AGN_M_READONLY : constant := 16#00000001#; AGN_M_WRITEONLY : constant := 16#00000002#; IO_WRITEVBLK : constant := 48; -- WRITE VIRTUAL BLOCK IO_READVBLK : constant := 49; -- READ VIRTUAL BLOCK ---------------- -- Sys_Assign -- ---------------- -- -- Assign I/O Channel -- -- Status = returned status -- Devnam = address of device name or logical name string -- descriptor -- Chan = address of word to receive channel number assigned -- Acmode = access mode associated with channel -- Mbxnam = address of mailbox logical name string descriptor, if -- mailbox associated with device -- Flags = optional channel flags longword for specifying options -- for the $ASSIGN operation -- procedure Sys_Assign (Status : out Cond_Value_Type; Devnam : in String; Chan : out unsigned_short; Acmode : in unsigned_short := 0; Mbxnam : in String := String'Null_Parameter; Flags : in unsigned_long := 0); pragma Interface (External, Sys_Assign); pragma Import_Valued_Procedure (Sys_Assign, "SYS$ASSIGN", (Cond_Value_Type, String, unsigned_short, unsigned_short, String, unsigned_long), (Value, Descriptor (s), Reference, Value, Descriptor (s), Value), Flags); ---------------- -- Sys_Cantim -- ---------------- -- -- Cancel Timer -- -- Status = returned status -- Reqidt = ID of timer to be cancelled -- Acmode = Access mode -- procedure Sys_Cantim (Status : out Cond_Value_Type; Reqidt : in Address; Acmode : in unsigned); pragma Interface (External, Sys_Cantim); pragma Import_Valued_Procedure (Sys_Cantim, "SYS$CANTIM", (Cond_Value_Type, Address, unsigned), (Value, Value, Value)); ---------------- -- Sys_Crembx -- ---------------- -- -- Create mailbox -- -- Status = returned status -- Prmflg = permanent flag -- Chan = channel -- Maxmsg = maximum message -- Bufquo = buufer quote -- Promsk = protection mast -- Acmode = access mode -- Lognam = logical name -- Flags = flags -- procedure Sys_Crembx (Status : out Cond_Value_Type; Prmflg : in Boolean; Chan : out unsigned_short; Maxmsg : in unsigned_long := 0; Bufquo : in unsigned_long := 0; Promsk : in unsigned_short := 0; Acmode : in unsigned_short := 0; Lognam : in String; Flags : in unsigned_long := 0); pragma Interface (External, Sys_Crembx); pragma Import_Valued_Procedure (Sys_Crembx, "SYS$CREMBX", (Cond_Value_Type, Boolean, unsigned_short, unsigned_long, unsigned_long, unsigned_short, unsigned_short, String, unsigned_long), (Value, Value, Reference, Value, Value, Value, Value, Descriptor (s), Value)); ------------- -- Sys_QIO -- ------------- -- -- Queue I/O -- -- Status = Returned status of call -- EFN = event flag to be set when I/O completes -- Chan = channel -- Func = function -- Iosb = I/O status block -- Astadr = system trap to be generated when I/O completes -- Astprm = AST parameter -- P1-6 = optional parameters procedure Sys_QIO (Status : out Cond_Value_Type; EFN : in unsigned_long := 0; Chan : in unsigned_short; Func : in unsigned_long := 0; Iosb : out IO_Status_Block_Type; Astadr : in AST_Handler := No_AST_Handler; Astprm : in Address := Null_Address; P1 : in unsigned_long := 0; P2 : in unsigned_long := 0; P3 : in unsigned_long := 0; P4 : in unsigned_long := 0; P5 : in unsigned_long := 0; P6 : in unsigned_long := 0); procedure Sys_QIO (Status : out Cond_Value_Type; EFN : in unsigned_long := 0; Chan : in unsigned_short; Func : in unsigned_long := 0; Iosb : in Address := Null_Address; Astadr : in AST_Handler := No_AST_Handler; Astprm : in Address := Null_Address; P1 : in unsigned_long := 0; P2 : in unsigned_long := 0; P3 : in unsigned_long := 0; P4 : in unsigned_long := 0; P5 : in unsigned_long := 0; P6 : in unsigned_long := 0); pragma Interface (External, Sys_QIO); pragma Import_Valued_Procedure (Sys_QIO, "SYS$QIO", (Cond_Value_Type, unsigned_long, unsigned_short, unsigned_long, IO_Status_Block_Type, AST_Handler, Address, unsigned_long, unsigned_long, unsigned_long, unsigned_long, unsigned_long, unsigned_long), (Value, Value, Value, Value, Reference, Value, Value, Value, Value, Value, Value, Value, Value)); pragma Import_Valued_Procedure (Sys_QIO, "SYS$QIO", (Cond_Value_Type, unsigned_long, unsigned_short, unsigned_long, Address, AST_Handler, Address, unsigned_long, unsigned_long, unsigned_long, unsigned_long, unsigned_long, unsigned_long), (Value, Value, Value, Value, Value, Value, Value, Value, Value, Value, Value, Value, Value)); ---------------- -- Sys_Setimr -- ---------------- -- -- Set Timer -- -- Status = Returned status of call -- EFN = event flag to be set when timer expires -- Tim = expiration time -- AST = system trap to be generated when timer expires -- Redidt = returned ID of timer (e.g. to cancel timer) -- Flags = flags -- procedure Sys_Setimr (Status : out Cond_Value_Type; EFN : in unsigned_long; Tim : in Long_Integer; AST : in AST_Handler; Reqidt : in Address; Flags : in unsigned_long); pragma Interface (External, Sys_Setimr); pragma Import_Valued_Procedure (Sys_Setimr, "SYS$SETIMR", (Cond_Value_Type, unsigned_long, Long_Integer, AST_Handler, Address, unsigned_long), (Value, Value, Reference, Value, Value, Value)); Interrupt_ID_0 : constant := 0; Interrupt_ID_1 : constant := 1; Interrupt_ID_2 : constant := 2; Interrupt_ID_3 : constant := 3; Interrupt_ID_4 : constant := 4; Interrupt_ID_5 : constant := 5; Interrupt_ID_6 : constant := 6; Interrupt_ID_7 : constant := 7; Interrupt_ID_8 : constant := 8; Interrupt_ID_9 : constant := 9; Interrupt_ID_10 : constant := 10; Interrupt_ID_11 : constant := 11; Interrupt_ID_12 : constant := 12; Interrupt_ID_13 : constant := 13; Interrupt_ID_14 : constant := 14; Interrupt_ID_15 : constant := 15; Interrupt_ID_16 : constant := 16; Interrupt_ID_17 : constant := 17; Interrupt_ID_18 : constant := 18; Interrupt_ID_19 : constant := 19; Interrupt_ID_20 : constant := 20; Interrupt_ID_21 : constant := 21; Interrupt_ID_22 : constant := 22; Interrupt_ID_23 : constant := 23; Interrupt_ID_24 : constant := 24; Interrupt_ID_25 : constant := 25; Interrupt_ID_26 : constant := 26; Interrupt_ID_27 : constant := 27; Interrupt_ID_28 : constant := 28; Interrupt_ID_29 : constant := 29; Interrupt_ID_30 : constant := 30; Interrupt_ID_31 : constant := 31; ----------- -- Errno -- ----------- function errno return int; pragma Import (C, errno, "__get_errno"); EINTR : constant := 4; -- Interrupted system call EAGAIN : constant := 11; -- No more processes ENOMEM : constant := 12; -- Not enough core ------------------------- -- Priority Scheduling -- ------------------------- SCHED_FIFO : constant := 1; SCHED_RR : constant := 2; SCHED_OTHER : constant := 3; SCHED_BG : constant := 4; SCHED_LFI : constant := 5; SCHED_LRR : constant := 6; ------------- -- Process -- ------------- type pid_t is private; function kill (pid : pid_t; sig : Signal) return int; pragma Import (C, kill); function getpid return pid_t; pragma Import (C, getpid); ------------- -- Threads -- ------------- type Thread_Body is access function (arg : System.Address) return System.Address; type pthread_t is private; subtype Thread_Id is pthread_t; type pthread_mutex_t is limited private; type pthread_cond_t is limited private; type pthread_attr_t is limited private; type pthread_mutexattr_t is limited private; type pthread_condattr_t is limited private; type pthread_key_t is private; PTHREAD_CREATE_JOINABLE : constant := 0; PTHREAD_CREATE_DETACHED : constant := 1; PTHREAD_CANCEL_DISABLE : constant := 0; PTHREAD_CANCEL_ENABLE : constant := 1; PTHREAD_CANCEL_DEFERRED : constant := 0; PTHREAD_CANCEL_ASYNCHRONOUS : constant := 1; -- Don't use ERRORCHECK mutexes, they don't work when a thread is not -- the owner. AST's, at least, unlock others threads mutexes. Even -- if the error is ignored, they don't work. PTHREAD_MUTEX_NORMAL_NP : constant := 0; PTHREAD_MUTEX_RECURSIVE_NP : constant := 1; PTHREAD_MUTEX_ERRORCHECK_NP : constant := 2; PTHREAD_INHERIT_SCHED : constant := 0; PTHREAD_EXPLICIT_SCHED : constant := 1; function pthread_cancel (thread : pthread_t) return int; pragma Import (C, pthread_cancel, "PTHREAD_CANCEL"); procedure pthread_testcancel; pragma Import (C, pthread_testcancel, "PTHREAD_TESTCANCEL"); function pthread_setcancelstate (newstate : int; oldstate : access int) return int; pragma Import (C, pthread_setcancelstate, "PTHREAD_SETCANCELSTATE"); function pthread_setcanceltype (newtype : int; oldtype : access int) return int; pragma Import (C, pthread_setcanceltype, "PTHREAD_SETCANCELTYPE"); --------------------------- -- POSIX.1c Section 3 -- --------------------------- function pthread_lock_global_np return int; pragma Import (C, pthread_lock_global_np, "PTHREAD_LOCK_GLOBAL_NP"); function pthread_unlock_global_np return int; pragma Import (C, pthread_unlock_global_np, "PTHREAD_UNLOCK_GLOBAL_NP"); ---------------------------- -- POSIX.1c Section 11 -- ---------------------------- function pthread_mutexattr_init (attr : access pthread_mutexattr_t) return int; pragma Import (C, pthread_mutexattr_init, "PTHREAD_MUTEXATTR_INIT"); function pthread_mutexattr_destroy (attr : access pthread_mutexattr_t) return int; pragma Import (C, pthread_mutexattr_destroy, "PTHREAD_MUTEXATTR_DESTROY"); function pthread_mutexattr_settype_np (attr : access pthread_mutexattr_t; mutextype : int) return int; pragma Import (C, pthread_mutexattr_settype_np, "PTHREAD_MUTEXATTR_SETTYPE_NP"); function pthread_mutex_init (mutex : access pthread_mutex_t; attr : access pthread_mutexattr_t) return int; pragma Import (C, pthread_mutex_init, "PTHREAD_MUTEX_INIT"); function pthread_mutex_destroy (mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_mutex_destroy, "PTHREAD_MUTEX_DESTROY"); function pthread_mutex_lock (mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_mutex_lock, "PTHREAD_MUTEX_LOCK"); function pthread_mutex_unlock (mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_mutex_unlock, "PTHREAD_MUTEX_UNLOCK"); function pthread_condattr_init (attr : access pthread_condattr_t) return int; pragma Import (C, pthread_condattr_init, "PTHREAD_CONDATTR_INIT"); function pthread_condattr_destroy (attr : access pthread_condattr_t) return int; pragma Import (C, pthread_condattr_destroy, "PTHREAD_CONDATTR_DESTROY"); function pthread_cond_init (cond : access pthread_cond_t; attr : access pthread_condattr_t) return int; pragma Import (C, pthread_cond_init, "PTHREAD_COND_INIT"); function pthread_cond_destroy (cond : access pthread_cond_t) return int; pragma Import (C, pthread_cond_destroy, "PTHREAD_COND_DESTROY"); function pthread_cond_signal (cond : access pthread_cond_t) return int; pragma Import (C, pthread_cond_signal, "PTHREAD_COND_SIGNAL"); function pthread_cond_signal_int_np (cond : access pthread_cond_t) return int; pragma Import (C, pthread_cond_signal_int_np, "PTHREAD_COND_SIGNAL_INT_NP"); function pthread_cond_wait (cond : access pthread_cond_t; mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_cond_wait, "PTHREAD_COND_WAIT"); -------------------------- -- POSIX.1c Section 13 -- -------------------------- function pthread_mutexattr_setprotocol (attr : access pthread_mutexattr_t; protocol : int) return int; pragma Import (C, pthread_mutexattr_setprotocol, "PTHREAD_MUTEXATTR_SETPROTOCOL"); type struct_sched_param is record sched_priority : int; -- scheduling priority end record; for struct_sched_param'Size use 8*4; pragma Convention (C, struct_sched_param); function pthread_setschedparam (thread : pthread_t; policy : int; param : access struct_sched_param) return int; pragma Import (C, pthread_setschedparam, "PTHREAD_SETSCHEDPARAM"); function pthread_attr_setscope (attr : access pthread_attr_t; contentionscope : int) return int; pragma Import (C, pthread_attr_setscope, "PTHREAD_ATTR_SETSCOPE"); function pthread_attr_setinheritsched (attr : access pthread_attr_t; inheritsched : int) return int; pragma Import (C, pthread_attr_setinheritsched, "PTHREAD_ATTR_SETINHERITSCHED"); function pthread_attr_setschedpolicy (attr : access pthread_attr_t; policy : int) return int; pragma Import (C, pthread_attr_setschedpolicy, "PTHREAD_ATTR_SETSCHEDPOLICY"); function pthread_attr_setschedparam (attr : access pthread_attr_t; sched_param : int) return int; pragma Import (C, pthread_attr_setschedparam, "PTHREAD_ATTR_SETSCHEDPARAM"); function sched_yield return int; ----------------------------- -- P1003.1c - Section 16 -- ----------------------------- function pthread_attr_init (attributes : access pthread_attr_t) return int; pragma Import (C, pthread_attr_init, "PTHREAD_ATTR_INIT"); function pthread_attr_destroy (attributes : access pthread_attr_t) return int; pragma Import (C, pthread_attr_destroy, "PTHREAD_ATTR_DESTROY"); function pthread_attr_setdetachstate (attr : access pthread_attr_t; detachstate : int) return int; pragma Import (C, pthread_attr_setdetachstate, "PTHREAD_ATTR_SETDETACHSTATE"); function pthread_attr_setstacksize (attr : access pthread_attr_t; stacksize : size_t) return int; pragma Import (C, pthread_attr_setstacksize, "PTHREAD_ATTR_SETSTACKSIZE"); function pthread_create (thread : access pthread_t; attributes : access pthread_attr_t; start_routine : Thread_Body; arg : System.Address) return int; pragma Import (C, pthread_create, "PTHREAD_CREATE"); procedure pthread_exit (status : System.Address); pragma Import (C, pthread_exit, "PTHREAD_EXIT"); function pthread_self return pthread_t; pragma Import (C, pthread_self, "PTHREAD_SELF"); -------------------------- -- POSIX.1c Section 17 -- -------------------------- function pthread_setspecific (key : pthread_key_t; value : System.Address) return int; pragma Import (C, pthread_setspecific, "PTHREAD_SETSPECIFIC"); function pthread_getspecific (key : pthread_key_t) return System.Address; pragma Import (C, pthread_getspecific, "PTHREAD_GETSPECIFIC"); type destructor_pointer is access procedure (arg : System.Address); function pthread_key_create (key : access pthread_key_t; destructor : destructor_pointer) return int; pragma Import (C, pthread_key_create, "PTHREAD_KEY_CREATE"); private type pid_t is new int; type pthreadLongAddr_p is mod 2 ** Long_Integer'Size; type pthreadLongAddr_t is mod 2 ** Long_Integer'Size; type pthreadLongAddr_t_ptr is mod 2 ** Long_Integer'Size; type pthreadLongString_t is mod 2 ** Long_Integer'Size; type pthreadLongUint_t is mod 2 ** Long_Integer'Size; type pthreadLongUint_array is array (Natural range <>) of pthreadLongUint_t; type pthread_t is mod 2 ** Long_Integer'Size; type pthread_cond_t is record state : unsigned; valid : unsigned; name : pthreadLongString_t; arg : unsigned; sequence : unsigned; block : pthreadLongAddr_t_ptr; end record; for pthread_cond_t'Size use 8*32; pragma Convention (C, pthread_cond_t); type pthread_attr_t is record valid : long; name : pthreadLongString_t; arg : pthreadLongUint_t; reserved : pthreadLongUint_array (0 .. 18); end record; for pthread_attr_t'Size use 8*176; pragma Convention (C, pthread_attr_t); type pthread_mutex_t is record lock : unsigned; valid : unsigned; name : pthreadLongString_t; arg : unsigned; sequence : unsigned; block : pthreadLongAddr_p; owner : unsigned; depth : unsigned; end record; for pthread_mutex_t'Size use 8*40; pragma Convention (C, pthread_mutex_t); type pthread_mutexattr_t is record valid : long; reserved : pthreadLongUint_array (0 .. 14); end record; for pthread_mutexattr_t'Size use 8*128; pragma Convention (C, pthread_mutexattr_t); type pthread_condattr_t is record valid : long; reserved : pthreadLongUint_array (0 .. 12); end record; for pthread_condattr_t'Size use 8*112; pragma Convention (C, pthread_condattr_t); type pthread_key_t is new unsigned; end System.OS_Interface;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2016, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f429i_discovery.c -- -- @author MCD Application Team -- -- @version V1.1.0 -- -- @date 19-June-2014 -- -- @brief This file provides set of firmware functions to manage Leds -- -- and push-button available on Pixracer V1 board Kit from -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ with HAL.SPI; package body STM32.Board is ------------------ -- All_LEDs_Off -- ------------------ procedure All_LEDs_Off is begin Set (All_LEDs); -- leds are invertedly driven end All_LEDs_Off; ----------------- -- All_LEDs_On -- ----------------- procedure All_LEDs_On is begin Clear (All_LEDs); -- leds are invertedly driven end All_LEDs_On; --------------------- -- Initialize_LEDs -- --------------------- procedure Initialize_LEDs is Conf : GPIO_Port_Configuration; begin Enable_Clock (All_LEDs); Conf.Mode := Mode_Out; Conf.Output_Type := Push_Pull; Conf.Speed := Speed_100MHz; Conf.Resistors := Floating; Configure_IO (All_LEDs, Conf); end Initialize_LEDs; end STM32.Board;
----------------------------------------------------------------------- -- util-texts-builders_tests -- Unit tests for text builders -- Copyright (C) 2013 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Text_IO; with Util.Test_Caller; with Util.Texts.Builders; with Util.Measures; package body Util.Texts.Builders_Tests is package String_Builder is new Util.Texts.Builders (Element_Type => Character, Input => String, Chunk_Size => 100); package Caller is new Util.Test_Caller (Test, "Texts.Builders"); procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite) is begin Caller.Add_Test (Suite, "Test Util.Texts.Builders.Length", Test_Length'Access); Caller.Add_Test (Suite, "Test Util.Texts.Builders.Append", Test_Append'Access); Caller.Add_Test (Suite, "Test Util.Texts.Builders.Clear", Test_Clear'Access); Caller.Add_Test (Suite, "Test Util.Texts.Builders.Iterate", Test_Iterate'Access); Caller.Add_Test (Suite, "Test Util.Texts.Builders.Perf", Test_Perf'Access); end Add_Tests; -- ------------------------------ -- Test the length operation. -- ------------------------------ procedure Test_Length (T : in out Test) is B : String_Builder.Builder (10); begin Util.Tests.Assert_Equals (T, 0, String_Builder.Length (B), "Invalid length"); Util.Tests.Assert_Equals (T, 10, String_Builder.Capacity (B), "Invalid capacity"); end Test_Length; -- ------------------------------ -- Test the append operation. -- ------------------------------ procedure Test_Append (T : in out Test) is S : constant String := "0123456789"; B : String_Builder.Builder (3); begin String_Builder.Append (B, "a string"); Util.Tests.Assert_Equals (T, 8, String_Builder.Length (B), "Invalid length"); Util.Tests.Assert_Equals (T, "a string", String_Builder.To_Array (B), "Invalid content"); Util.Tests.Assert_Equals (T, 100 + 3, String_Builder.Capacity (B), "Invalid capacity"); -- Append new string and check content. String_Builder.Append (B, " b string"); Util.Tests.Assert_Equals (T, 17, String_Builder.Length (B), "Invalid length"); Util.Tests.Assert_Equals (T, "a string b string", String_Builder.To_Array (B), "Invalid content"); Util.Tests.Assert_Equals (T, 100 + 3, String_Builder.Capacity (B), "Invalid capacity"); String_Builder.Clear (B); for I in S'Range loop String_Builder.Append (B, S (I)); end loop; Util.Tests.Assert_Equals (T, 10, String_Builder.Length (B), "Invalid length"); Util.Tests.Assert_Equals (T, S, String_Builder.To_Array (B), "Invalid append"); end Test_Append; -- ------------------------------ -- Test the clear operation. -- ------------------------------ procedure Test_Clear (T : in out Test) is B : String_Builder.Builder (7); begin for I in 1 .. 10 loop String_Builder.Append (B, "a string"); end loop; Util.Tests.Assert_Equals (T, 8 * 10, String_Builder.Length (B), "Invalid length"); Util.Tests.Assert_Equals (T, 100 + 7, String_Builder.Capacity (B), "Invalid capacity"); String_Builder.Clear (B); Util.Tests.Assert_Equals (T, 0, String_Builder.Length (B), "Invalid length after clear"); Util.Tests.Assert_Equals (T, 7, String_Builder.Capacity (B), "Invalid capacity after clear"); end Test_Clear; -- ------------------------------ -- Test the iterate operation. -- ------------------------------ procedure Test_Iterate (T : in out Test) is procedure Process (S : in String); B : String_Builder.Builder (13); R : Ada.Strings.Unbounded.Unbounded_String; procedure Process (S : in String) is begin Ada.Strings.Unbounded.Append (R, S); end Process; begin for I in 1 .. 100 loop String_Builder.Append (B, "The Iterate procedure avoids the string copy " & "on the secondary stack"); end loop; String_Builder.Iterate (B, Process'Access); Util.Tests.Assert_Equals (T, String_Builder.Length (B), Ada.Strings.Unbounded.Length (R), "Invalid length in iterate string"); Util.Tests.Assert_Equals (T, String_Builder.To_Array (B), Ada.Strings.Unbounded.To_String (R), "Invalid Iterate"); end Test_Iterate; -- ------------------------------ -- Test the append and iterate performance. -- ------------------------------ procedure Test_Perf (T : in out Test) is Perf : Ada.Text_IO.File_Type; begin Ada.Text_IO.Create (File => Perf, Name => Util.Tests.Get_Test_Path ("string-append.csv")); Ada.Text_IO.Put_Line (Perf, "Block_Size,Append Time,To_Array Time,Iterate Time"); for Block_Size in 1 .. 300 loop declare B : String_Builder.Builder (10); N : constant String := Natural'Image (Block_Size * 10) & ","; begin String_Builder.Set_Block_Size (B, Block_Size * 10); declare S : Util.Measures.Stamp; begin for I in 1 .. 1000 loop String_Builder.Append (B, "some item"); end loop; Util.Measures.Report (S, Perf, N, Util.Measures.Microseconds); end; declare S : Util.Measures.Stamp; R : constant String := String_Builder.To_Array (B); begin Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); T.Assert (R'Length > 0, "Invalid string length"); end; declare Count : Natural := 0; procedure Process (Item : in String); procedure Process (Item : in String) is pragma Unreferenced (Item); begin Count := Count + 1; end Process; S : Util.Measures.Stamp; begin String_Builder.Iterate (B, Process'Access); Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); T.Assert (Count > 0, "The string builder was empty"); end; end; Ada.Text_IO.New_Line (Perf); end loop; Ada.Text_IO.Close (Perf); Ada.Text_IO.Create (File => Perf, Name => Util.Tests.Get_Test_Path ("string.csv")); Ada.Text_IO.Put_Line (Perf, "Size,Append (100),Append (512)," & "Append (1024),Unbounded,Iterate Time"); for I in 1 .. 4000 loop declare N : constant String := Natural'Image (I) & ","; B : String_Builder.Builder (10); B2 : String_Builder.Builder (10); B3 : String_Builder.Builder (10); U : Ada.Strings.Unbounded.Unbounded_String; S : Util.Measures.Stamp; begin for J in 1 .. I loop String_Builder.Append (B, "some item"); end loop; Util.Measures.Report (S, Perf, N, Util.Measures.Microseconds); String_Builder.Set_Block_Size (B2, 512); for J in 1 .. I loop String_Builder.Append (B2, "some item"); end loop; Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); String_Builder.Set_Block_Size (B3, 1024); for J in 1 .. I loop String_Builder.Append (B3, "some item"); end loop; Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); for J in 1 .. I loop Ada.Strings.Unbounded.Append (U, "some item"); end loop; Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); declare R : constant String := String_Builder.To_Array (B); pragma Unreferenced (R); begin Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); end; declare R : constant String := Ada.Strings.Unbounded.To_String (U); pragma Unreferenced (R); begin Util.Measures.Report (S, Perf, ",", Util.Measures.Microseconds); end; end; Ada.Text_IO.New_Line (Perf); end loop; end Test_Perf; end Util.Texts.Builders_Tests;
-- C67002C.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 ALL OPERATOR SYMBOLS CAN BE USED IN (OVERLOADED) -- FUNCTION SPECIFICATIONS WITH THE REQUIRED NUMBER OF PARAMETERS. -- THIS TEST CHECKS FORMAL SUBPROGRAM PARAMETERS. -- SUBTESTS ARE: -- (A) THROUGH (P): "=", "AND", "OR", "XOR", "<", "<=", -- ">", ">=", "&", "*", "/", "MOD", "REM", "**", "+", "-", -- RESPECTIVELY. ALL OF THESE HAVE TWO PARAMETERS. -- (Q), (R), (S), AND (T): "+", "-", "NOT", "ABS", RESPECTIVELY, -- WITH ONE PARAMETER. -- CPP 6/26/84 WITH REPORT; USE REPORT; PROCEDURE C67002C IS FUNCTION TWO_PARAMS (I1, I2 : INTEGER) RETURN CHARACTER IS BEGIN IF I1 > I2 THEN RETURN 'G'; ELSE RETURN 'L'; END IF; END TWO_PARAMS; FUNCTION ONE_PARAM (I1 : INTEGER) RETURN CHARACTER IS BEGIN IF I1 < IDENT_INT(0) THEN RETURN 'N'; ELSE RETURN 'P'; END IF; END ONE_PARAM; BEGIN TEST ("C67002C", "USE OF OPERATOR SYMBOLS IN " & "(OVERLOADED) FUNCTION SPECIFICATIONS"); ------------------------------------------------- DECLARE -- (A) PACKAGE EQU IS TYPE LP IS LIMITED PRIVATE; FUNCTION "=" (LPA, LPB : LP) RETURN BOOLEAN; PRIVATE TYPE LP IS NEW INTEGER; END EQU; USE EQU; LP1, LP2 : LP; PACKAGE BODY EQU IS FUNCTION "=" (LPA, LPB : LP) RETURN BOOLEAN IS BEGIN RETURN LPA > LPB; END "="; BEGIN LP1 := LP (IDENT_INT (7)); LP2 := LP (IDENT_INT (8)); END EQU; GENERIC WITH FUNCTION "=" (LPA, LPB : LP) RETURN BOOLEAN; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (LP1 = LP2) OR NOT (LP2 = LP1) OR (LP1 = LP1) OR (LP2 /= LP1) THEN FAILED ("OVERLOADING OF ""="" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE EQUAL IS NEW PKG ("=" => EQU."="); BEGIN -- (A) NULL; END; -- (A) ------------------------------------------------- DECLARE -- (B) GENERIC WITH FUNCTION "AND" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) AND 1) /= 'G' OR (5 AND 10) /= 'L' THEN FAILED ("OVERLOADING OF ""AND"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("AND" => TWO_PARAMS); BEGIN -- (B) NULL; END; -- (B) ------------------------------------------------- DECLARE -- (C) GENERIC WITH FUNCTION "OR" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) OR 1) /= 'G' OR (5 OR 10) /= 'L' THEN FAILED ("OVERLOADING OF ""OR"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("OR" => TWO_PARAMS); BEGIN -- (C) NULL; END; -- (C) ------------------------------------------------- DECLARE -- (D) GENERIC WITH FUNCTION "XOR" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) XOR 1) /= 'G' OR (5 XOR 10) /= 'L' THEN FAILED ("OVERLOADING OF ""XOR"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("XOR" => TWO_PARAMS); BEGIN -- (D) NULL; END; -- (D) ------------------------------------------------- DECLARE -- (E) GENERIC WITH FUNCTION "<" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) < 1) /= 'G' OR (5 < 10) /= 'L' THEN FAILED ("OVERLOADING OF ""<"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("<" => TWO_PARAMS); BEGIN -- (E) NULL; END; -- (E) ------------------------------------------------- DECLARE -- (F) GENERIC WITH FUNCTION "<=" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) <= 1) /= 'G' OR (5 <= 10) /= 'L' THEN FAILED ("OVERLOADING OF ""<="" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("<=" => TWO_PARAMS); BEGIN -- (F) NULL; END; -- (F) ------------------------------------------------- DECLARE -- (G) GENERIC WITH FUNCTION ">" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) > 1) /= 'G' OR (5 > 10) /= 'L' THEN FAILED ("OVERLOADING OF "">"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG (">" => TWO_PARAMS); BEGIN -- (G) NULL; END; -- (G) ------------------------------------------------- DECLARE -- (H) GENERIC WITH FUNCTION ">=" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) >= 1) /= 'G' OR (5 >= 10) /= 'L' THEN FAILED ("OVERLOADING OF "">="" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG (">=" => TWO_PARAMS); BEGIN -- (H) NULL; END; -- (H) ------------------------------------------------- DECLARE -- (I) GENERIC WITH FUNCTION "&" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) & 1) /= 'G' OR (5 & 10) /= 'L' THEN FAILED ("OVERLOADING OF ""&"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("&" => TWO_PARAMS); BEGIN -- (I) NULL; END; -- (I) ------------------------------------------------- DECLARE -- (J) GENERIC WITH FUNCTION "*" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) * 1) /= 'G' OR (5 * 10) /= 'L' THEN FAILED ("OVERLOADING OF ""*"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("*" => TWO_PARAMS); BEGIN -- (J) NULL; END; -- (J) ------------------------------------------------- DECLARE -- (K) GENERIC WITH FUNCTION "/" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) / 1) /= 'G' OR (5 / 10) /= 'L' THEN FAILED ("OVERLOADING OF ""/"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("/" => TWO_PARAMS); BEGIN -- (K) NULL; END; -- (K) ------------------------------------------------- DECLARE -- (L) GENERIC WITH FUNCTION "MOD" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) MOD 1) /= 'G' OR (5 MOD 10) /= 'L' THEN FAILED ("OVERLOADING OF ""MOD"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("MOD" => TWO_PARAMS); BEGIN -- (L) NULL; END; -- (L) ------------------------------------------------- DECLARE -- (M) GENERIC WITH FUNCTION "REM" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) REM 1) /= 'G' OR (5 REM 10) /= 'L' THEN FAILED ("OVERLOADING OF ""REM"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("REM" => TWO_PARAMS); BEGIN -- (M) NULL; END; -- (M) ------------------------------------------------- DECLARE -- (N) GENERIC WITH FUNCTION "**" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) ** 1) /= 'G' OR (5 ** 10) /= 'L' THEN FAILED ("OVERLOADING OF ""**"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("**" => TWO_PARAMS); BEGIN -- (N) NULL; END; -- (N) ------------------------------------------------- DECLARE -- (O) GENERIC WITH FUNCTION "+" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) + 1) /= 'G' OR (5 + 10) /= 'L' THEN FAILED ("OVERLOADING OF ""+"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("+" => TWO_PARAMS); BEGIN -- (O) NULL; END; -- (O) ------------------------------------------------- DECLARE -- (P) GENERIC WITH FUNCTION "-" (I1, I2 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (IDENT_INT (10) - 1) /= 'G' OR (5 - 10) /= 'L' THEN FAILED ("OVERLOADING OF ""-"" OPERATOR DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("-" => TWO_PARAMS); BEGIN -- (P) NULL; END; -- (P) ------------------------------------------------- DECLARE -- (Q) GENERIC WITH FUNCTION "+" (I1 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (+ IDENT_INT(25) /= 'P') OR (+ (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""+"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("+" => ONE_PARAM); BEGIN -- (Q) NULL; END; -- (Q) ------------------------------------------------- DECLARE -- (R) GENERIC WITH FUNCTION "-" (I1 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (- IDENT_INT(25) /= 'P') OR (- (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""-"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("-" => ONE_PARAM); BEGIN -- (R) NULL; END; -- (R) ------------------------------------------------- DECLARE -- (S) GENERIC WITH FUNCTION "NOT" (I1 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (NOT IDENT_INT(25) /= 'P') OR (NOT (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""NOT"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("NOT" => ONE_PARAM); BEGIN -- (S) NULL; END; -- (S) ------------------------------------------------- DECLARE -- (T) GENERIC WITH FUNCTION "ABS" (I1 : INTEGER) RETURN CHARACTER; PACKAGE PKG IS END PKG; PACKAGE BODY PKG IS BEGIN IF (ABS IDENT_INT(25) /= 'P') OR (ABS (0-25) /= 'N') THEN FAILED ("OVERLOADING OF ""ABS"" " & "OPERATOR (ONE OPERAND) DEFECTIVE"); END IF; END PKG; PACKAGE PACK IS NEW PKG ("ABS" => ONE_PARAM); BEGIN -- (T) NULL; END; -- (T) ------------------------------------------------- RESULT; END C67002C;
with Ada.Text_IO; package body myeventhandler is procedure Ping (Event : EV.Event_Access) is begin Ada.Text_IO.Put_Line ("Ping"); end; procedure Some_Event (Event : EV.Event_Access) is My_String : constant String := EV.Get_String (Event, 1); -- by index My_Float : constant Float := EV.Get_Float (Event, 2); Width : constant Natural := EV.Get_Natural(Event, "width"); -- by name Height : constant Natural := EV.Get_Natural(Event, "height"); begin Ada.Text_IO.Put_Line ("some-event: My_String=" & My_String & "; My_Float=" & Float'Image(My_Float)); Ada.Text_IO.Put_Line( "some-event: Width=" & Natural'Image(Width) & "; Height=" & Natural'Image(Height)); end; end myeventhandler;
----------------------------------------------------------------------- -- components-widgets-gravatars -- Gravatar Components -- Copyright (C) 2013 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ASF.Components.Html; with ASF.Contexts.Faces; package ASF.Components.Widgets.Gravatars is -- Given an Email address, return the Gravatar link to the user image. -- (See http://en.gravatar.com/site/implement/hash/ and -- http://en.gravatar.com/site/implement/images/) function Get_Link (Email : in String; Secure : in Boolean := False) return String; -- ------------------------------ -- UIGravatar -- ------------------------------ -- The <b>UIGravatar</b> component displays a small image whose link is created -- from a user email address. type UIGravatar is new ASF.Components.Html.UIHtmlComponent with null record; -- Render an image with the source link created from an email address to the Gravatars service. overriding procedure Encode_Begin (UI : in UIGravatar; Context : in out ASF.Contexts.Faces.Faces_Context'Class); end ASF.Components.Widgets.Gravatars;
-- -- The demo of type hierarchy use: declarations, loops, dereferencing.. -- -- 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 Ada.Command_Line, GNAT.Command_Line; with Ada.Text_IO, Ada.Integer_Text_IO; use Ada.Text_IO; with Ada.Containers.Vectors; with Iface_lists.Fixed; with Iface_lists.Dynamic; with Iface_lists.Vectors; with Base; use Base; procedure Test_list_combo is package ACV is new Ada.Containers.Vectors(Base.Index, Base_Fixed5); package PL is new Iface_Lists(Base.Index_Base, Base_Interface); package PLF is new PL.Fixed(Base_Fixed5); package PLDD is new PL.Dynamic(Base_Dynamic); package PLDV is new PL.Dynamic(Base_Vector); package PLVV is new PL.Vectors(Base_Vector); -- lc : PL.List_Interface'Class := PLD.To_Vector(5); begin -- main Put_Line("testing Ada.Containers.Vectors.."); declare v : ACV.Vector := ACV.To_Vector(5); begin Put("assigning values .. "); for i in Base.Index range 1 .. 5 loop v(i) := set_idx_fixed(i); end loop; Put_Line("done;"); Put(" indices: First =" & v.First_Index'img & ", Last =" & v.Last_Index'img); Put_Line(", Length =" & v.Length'img); Put_Line("done; values (of-loop): "); for item of v loop item.print; end loop; Put_Line("now direct indexing: "); for i in Base.Index range 1 .. 5 loop declare item : Base_Fixed5 := v(i); begin item.print; end; end loop; end; New_Line; -- New_Line; Put_Line("testing Lists.Fixed .."); declare lf : PLF.List(5); begin Put("assigning values .. "); for i in Base.Index range 1 .. 5 loop lf(i) := Base_Interface'Class(set_idx_fixed(i)); end loop; Put_Line("done;"); Put(" indices: First =" & lf.First_Index'img & ", Last =" & lf.Last_Index'img); Put_Line(", Length =" & lf.Length'img); Put_Line("done; values (of-loop): "); for item of lf loop item.print; end loop; Put_Line("now direct indexing: "); for i in Base.Index range 1 .. 5 loop declare item : Base_Fixed5 := Base_Fixed5(lf(i).Data.all); begin item.print; end; end loop; end; New_Line; -- New_Line; Put_Line("testing Lists.Dynamic with Base_Dynamic .."); declare use PLDD; ld : PLDD.List := To_Vector(5); begin Put("assigning values .. "); for i in Base.Index range 1 .. 5 loop New_Line; Put(" i="&i'Img); ld(i) := Base_Interface'Class(set_idx_dynamic(i)); end loop; New_Line; Put_Line("done;"); Put(" indices: First =" & ld.First_Index'img & ", Last =" & ld.Last_Index'img); Put_Line(", Length =" & ld.Length'img); Put_Line("done; values (of-loop): "); for item of ld loop item.print; end loop; Put_Line("now direct indexing: "); for i in Base.Index range 1 .. 5 loop declare item : Base_Dynamic := Base_Dynamic(ld(i).Data.all); begin item.print; end; end loop; end; New_Line; -- New_Line; Put_Line("testing Lists.Dynamic with Base_Vector .."); declare use PLDV; ld : PLDV.List := To_Vector(5); begin Put("assigning values .. "); for i in Base.Index range 1 .. 5 loop New_Line; Put(" i="&i'Img); ld(i) := Base_Interface'Class(set_idx_vector(i)); -- this assignment of the constructed vector seems to trigger that weird storage errors -- what's more, simply changing whitespace - adding a line-break between New_Line and Put -- changes "heap exhausted" into "stack overflow" error.. end loop; New_Line; Put_Line("done;"); Put(" indices: First =" & ld.First_Index'img & ", Last =" & ld.Last_Index'img); Put_Line(", Length =" & ld.Length'img); Put_Line("done; values (of-loop): "); for item of ld loop item.print; end loop; Put_Line("now direct indexing: "); for i in Base.Index range 1 .. 5 loop declare item : Base_Vector := Base_Vector(ld(i).Data.all); begin item.print; end; end loop; end; New_Line; -- end Test_List_combo;
--------------------------------------------------------------------------------- -- Copyright 2004-2005 © Luke A. Guest -- -- This code is to be used for tutorial purposes only. -- You may not redistribute this code in any form without my express permission. --------------------------------------------------------------------------------- with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Text_Io; use Text_Io; with SDL.Types; use SDL.Types; with SDL.Keyboard; with SDL.Keysym; with SDL.Video; with SDL.Events; with SDL.Timer; with SDL.Active; use type SDL.Init_Flags; use type SDL.Active.Active_State; use type SDL.Video.Surface_Flags; use type SDL.Video.Surface_Ptr; use type SDL.Video.VideoInfo_ConstPtr; with Example; with GL; with GLU; -- A simple example of a cube drawn with a display list. procedure NeHe_Base_Ada is pragma Link_With("-lSDL"); use type GL.GLdouble; VideoFlags : SDL.Video.Surface_Flags := SDL.Video.OPENGL or SDL.Video.HWPALETTE or SDL.Video.RESIZABLE; Result : Boolean := False; TickCount : Integer := 0; procedure ReshapeGL(Width, Height : in GL.GLint) is AspectRatio : constant GL.GLdouble := GL.GLdouble(Width) / GL.GLdouble(Height); begin GL.glViewport(0, 0, GL.GLsizei(Width), GL.GLsizei(Height)); -- The Current Viewport GL.glMatrixMode(GL.GL_PROJECTION); -- The Projection Matrix GL.glLoadIdentity; -- The Projection Matrix GLU.gluPerspective(45.0, AspectRatio, 1.0, 100.0); -- Calculate The Aspect Ratio Of The Window GL.glMatrixMode(GL.GL_MODELVIEW); -- The Modelview Matrix GL.glLoadIdentity; -- Reset The Modelview Matrix end ReshapeGL; procedure CreateWindowGL(Result : out Boolean) is VideoInfo : SDL.Video.VideoInfo_ConstPtr; begin if SDL.Init(SDL.INIT_VIDEO or SDL.INIT_TIMER) = -1 then Put_Line("Error Initialising SDL"); Result := False; else VideoInfo := SDL.Video.GetVideoInfo; if VideoInfo = null then Put_Line("Error Retrieving video information"); Result := False; else if VideoInfo.hw_available = 1 then VideoFlags := VideoFlags or SDL.Video.HWSURFACE; else VideoFlags := VideoFlags or SDL.Video.SWSURFACE; end if; if VideoInfo.blit_hw = 1 then VideoFlags := VideoFlags or SDL.Video.HWACCEL; end if; SDL.Video.GL_SetAttribute(SDL.Video.GL_RED_SIZE, 5); SDL.Video.GL_SetAttribute(SDL.Video.GL_GREEN_SIZE, 5); SDL.Video.GL_SetAttribute(SDL.Video.GL_BLUE_SIZE, 5); SDL.Video.GL_SetAttribute(SDL.Video.GL_DEPTH_SIZE, 16); SDL.Video.GL_SetAttribute(SDL.Video.GL_DOUBLEBUFFER, 1); Example.SetSurface(SDL.Video.SetVideoMode(C.int(Example.GetWidth), C.int(Example.GetHeight), C.int(Example.GetBitsPerPixel), VideoFlags)); if Example.GetSurface = null then Put_Line("Error setting video mode"); Result := False; else SDL.Video.WM_Set_Caption_Title(Example.GetTitle); ReshapeGL(GL.GLint(Example.GetWidth), GL.GLint(Example.GetHeight)); end if; end if; end if; Result := True; end CreateWindowGL; procedure DestroyWindowGL is begin SDL.SDL_Quit; end DestroyWindowGL; procedure PollEvents is Event : aliased SDL.Events.Event; begin while SDL.Events.PollEvent(Event'Unchecked_Access) /= 0 loop case Event.the_type is when SDL.Events.QUIT => Put_Line("Quitting..."); Example.SetQuit(True); when SDL.Events.KEYDOWN => Example.SetKey(Event.Key.Keysym.sym, True); when SDL.Events.KEYUP => Example.SetKey(Event.Key.Keysym.sym, False); when SDL.Events.VIDEORESIZE => Example.SetSurface(SDL.Video.SetVideoMode(Event.Resize.w, Event.Resize.h, C.int(Example.GetBitsPerPixel), VideoFlags)); ReshapeGL(GL.GLint(Event.Resize.w), GL.GLint(Event.Resize.h)); when SDL.Events.ISACTIVEEVENT => if Event.Active.Gain = 0 then Example.SetActive(False); else Example.SetActive(True); end if; when others => null; end case; end loop; end PollEvents; begin Example.PrintUsage; CreateWindowGL(Result); if Result = True then if Example.Initialise = True then while Example.Quit = False loop PollEvents; if Example.IsActive = True then TickCount := Integer(SDL.Timer.GetTicks); Example.Update(TickCount); Example.SetLastTickCount(TickCount); Example.Draw; SDL.Video.GL_SwapBuffers; end if; end loop; Example.Uninitialise; end if; DestroyWindowGL; end if; end NeHe_Base_Ada;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T A S K _ A T T R I B U T E S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2014-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/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Task_Identification; generic type Attribute is private; Initial_Value : Attribute; package Ada.Task_Attributes is -- Note that this package will use an efficient implementation with no -- locks and no extra dynamic memory allocation if Attribute is the size -- of either Integer or System.Address, and Initial_Value is 0 (null for -- an access type). -- Other types and initial values are supported, but will require -- the use of locking and a level of indirection (meaning extra dynamic -- memory allocation). -- The maximum number of task attributes supported by this implementation -- is determined by the constant System.Parameters.Max_Attribute_Count. -- If you exceed this number, Storage_Error will be raised during the -- elaboration of the instantiation of this package. type Attribute_Handle is access all Attribute; function Value (T : Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task) return Attribute; -- Return the value of the corresponding attribute of T. Tasking_Error -- is raised if T is terminated and Program_Error will be raised if T -- is Null_Task_Id. function Reference (T : Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task) return Attribute_Handle; -- Return an access value that designates the corresponding attribute of -- T. Tasking_Error is raised if T is terminated and Program_Error will be -- raised if T is Null_Task_Id. procedure Set_Value (Val : Attribute; T : Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task); -- Finalize the old value of the attribute of T and assign Val to that -- attribute. Tasking_Error is raised if T is terminated and Program_Error -- will be raised if T is Null_Task_Id. procedure Reinitialize (T : Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task); -- Same as Set_Value (Initial_Value, T). Tasking_Error is raised if T is -- terminated and Program_Error will be raised if T is Null_Task_Id. private pragma Inline (Value); pragma Inline (Reference); pragma Inline (Set_Value); pragma Inline (Reinitialize); end Ada.Task_Attributes;
with Numworks.Display; with Numworks.Backlight; with HAL; use HAL; with Bitmap_Color_Conversion; with HAL.Bitmap; use HAL.Bitmap; package body Render is Buffer : aliased GESTE.Output_Buffer := (1 .. Numworks.Display.Width * 10 => 0); Screen_Pt : GESTE.Point := (0, 0); --------- -- Put -- --------- procedure Push_Pixels (Buffer : GESTE.Output_Buffer) is Temp : UInt16_Array (Buffer'Range) with Address => Buffer'Address; begin Numworks.Display.Push_Pixels (Temp, DMA_Theshold => 5000); Numworks.Display.Wait_End_Of_Push; end Push_Pixels; ---------------------- -- Set_Drawing_Area -- ---------------------- procedure Set_Drawing_Area (Area : GESTE.Rect) is begin Numworks.Display.Set_Drawing_Area (((Area.TL.X - Screen_Pt.X, Area.TL.Y - Screen_Pt.Y), Area.BR.X - Area.TL.X + 1, Area.BR.Y - Area.TL.Y + 1)); Numworks.Display.Start_Pixel_Write; end Set_Drawing_Area; ----------------------- -- Set_Screen_Offset -- ----------------------- procedure Set_Screen_Offset (Pt : GESTE.Point) is begin Screen_Pt := Pt; end Set_Screen_Offset; ---------------- -- Render_All -- ---------------- procedure Render_All (Background : GESTE_Config.Output_Color) is begin GESTE.Render_All ((Screen_Pt, (Screen_Pt.X + Numworks.Display.Width - 1, Screen_Pt.Y + Numworks.Display.Height - 1)), Background, Buffer, Push_Pixels'Access, Set_Drawing_Area'Access); end Render_All; ------------------ -- Render_Dirty -- ------------------ procedure Render_Dirty (Background : GESTE_Config.Output_Color) is begin GESTE.Render_Dirty ((Screen_Pt, (Screen_Pt.X + Numworks.Display.Width - 1, Screen_Pt.Y + Numworks.Display.Height - 1)), Background, Buffer, Push_Pixels'Access, Set_Drawing_Area'Access); end Render_Dirty; --------------- -- Dark_Cyan -- --------------- function Dark_Cyan return GESTE_Config.Output_Color is (GESTE_Config.Output_Color (Bitmap_Color_Conversion.Bitmap_Color_To_Word (RGB_565, HAL.Bitmap.Dark_Cyan))); ----------- -- Black -- ----------- function Black return GESTE_Config.Output_Color is (0); begin Numworks.Backlight.Set_Level (16); end Render;
-- -- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- package soc.layout.stm32f4 with spark_mode => on is NB_MEM_BANK : constant := 1; end soc.layout.stm32f4;
-- SPDX-FileCopyrightText: 2020 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ---------------------------------------------------------------- with Ada.Streams; with Ada.Exceptions; with League.Stream_Element_Vectors; with League.Text_Codecs; with Spawn.Environments; with Spawn.Processes.Monitor_Loop; with Spawn.Processes; with Spawn.String_Vectors; package body Processes is function "+" (Text : Wide_Wide_String) return League.Strings.Universal_String renames League.Strings.To_Universal_String; --------- -- Run -- --------- procedure Run (Program : League.Strings.Universal_String; Arguments : League.String_Vectors.Universal_String_Vector; Directory : League.Strings.Universal_String; Env : Environment := No_Env; Output : out League.Strings.Universal_String; Errors : out League.Strings.Universal_String; Status : out Integer) is type Listener is new Spawn.Processes.Process_Listener with record Output : League.Stream_Element_Vectors.Stream_Element_Vector; Errors : League.Stream_Element_Vectors.Stream_Element_Vector; Status : Integer := 0; Done : Boolean := False; Write : Boolean := True; end record; procedure Standard_Output_Available (Self : in out Listener); procedure Standard_Error_Available (Self : in out Listener); procedure Finished (Self : in out Listener; Exit_Status : Spawn.Processes.Process_Exit_Status; Exit_Code : Spawn.Processes.Process_Exit_Code); procedure Error_Occurred (Self : in out Listener; Process_Error : Integer); procedure Exception_Occurred (Self : in out Listener; Occurrence : Ada.Exceptions.Exception_Occurrence); Process : Spawn.Processes.Process; Codec : constant League.Text_Codecs.Text_Codec := League.Text_Codecs.Codec_For_Application_Locale; ------------------------------- -- Standard_Output_Available -- ------------------------------- procedure Standard_Output_Available (Self : in out Listener) is use type Ada.Streams.Stream_Element_Count; Data : Ada.Streams.Stream_Element_Array (1 .. 512); Last : Ada.Streams.Stream_Element_Count; begin loop Process.Read_Standard_Output (Data, Last); exit when Last < Data'First; Self.Output.Append (Data (1 .. Last)); end loop; end Standard_Output_Available; ------------------------------ -- Standard_Error_Available -- ------------------------------ procedure Standard_Error_Available (Self : in out Listener) is use type Ada.Streams.Stream_Element_Count; Data : Ada.Streams.Stream_Element_Array (1 .. 512); Last : Ada.Streams.Stream_Element_Count; begin loop Process.Read_Standard_Error (Data, Last); exit when Last < Data'First; Self.Errors.Append (Data (1 .. Last)); end loop; end Standard_Error_Available; -------------- -- Finished -- -------------- procedure Finished (Self : in out Listener; Exit_Status : Spawn.Processes.Process_Exit_Status; Exit_Code : Spawn.Processes.Process_Exit_Code) is pragma Unreferenced (Exit_Status); begin Self.Status := Integer (Exit_Code); Self.Done := True; end Finished; -------------------- -- Error_Occurred -- -------------------- procedure Error_Occurred (Self : in out Listener; Process_Error : Integer) is pragma Unreferenced (Self); begin Errors.Append (+"Error_Occurred"); Self.Status := Process_Error; Self.Done := True; end Error_Occurred; procedure Exception_Occurred (Self : in out Listener; Occurrence : Ada.Exceptions.Exception_Occurrence) is begin Errors.Append (League.Strings.From_UTF_8_String (Ada.Exceptions.Exception_Information (Occurrence))); Self.Status := -1; Self.Done := True; end Exception_Occurred; Args : Spawn.String_Vectors.UTF_8_String_Vector; Feedback : aliased Listener; begin Process.Set_Program (Program.To_UTF_8_String); for J in 1 .. Arguments.Length loop Args.Append (Arguments (J).To_UTF_8_String); end loop; if Env /= No_Env then declare Environment : Spawn.Environments.Process_Environment := Process.Environment; begin for J in 1 .. Env.Names.Length loop Environment.Insert (Env.Names (J).To_UTF_8_String, Env.Values (J).To_UTF_8_String); end loop; Process.Set_Environment (Environment); end; end if; Process.Set_Arguments (Args); Process.Set_Working_Directory (Directory.To_UTF_8_String); Process.Set_Listener (Feedback'Unchecked_Access); Process.Start; while not Feedback.Done loop Spawn.Processes.Monitor_Loop (Timeout => 50); end loop; Output := Codec.Decode (Feedback.Output); Errors.Append (Codec.Decode (Feedback.Errors)); Status := Feedback.Status; end Run; end Processes;
package body Test_Call_Filtering is type T is tagged null record; function P(Self : T) return T is begin return Self; end P; function Q(Self : T; I : Integer) return T is begin return Self; end Q; procedure Test is E : T; begin E := E.P.P; E := E.Q(1).Q(2); end Test; end Test_Call_Filtering;
-------------------------------------------------------------------------------- -- * Prog name ctffttest.adb -- * Project name ctffttest -- * -- * Version 1.0 -- * Last update 11/5/08 -- * -- * Created by Adrian Hoe on 11/5/08. -- * Copyright (c) 2008 AdaStar Informatics http://adastarinformatics.com -- * All rights reserved. -- * -------------------------------------------------------------------------------- with Ada.Calendar; with Ada.Text_IO, Ada.Float_Text_IO; with Ada.Numerics, Ada.Numerics.Generic_Elementary_Functions; with Ada.Numerics.Float_Random; use Ada.Calendar; use Ada.Numerics, Ada.Numerics.FLoat_Random; use Ada.Text_Io, Ada.Float_Text_IO; with Ctfft, Vector; use Ctfft, Vector; procedure Ctffttest is package Math is new Ada.Numerics.Generic_Elementary_Functions (Real_Number); use Math; Q : constant := 30.0 * 2.0 * Pi / 2 ** 8; G : Generator; Start_Time, End_Time : Time; Total_Time : Duration; Data_1 : Real_Vector_Type (1 .. 8) := (0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0); Data_2 : Real_Vector_Type (1 .. 32) := (0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0, 25.0, 26.0, 27.0, 28.0, 29.0, 30.0, 31.0); Data_3 : Real_Vector_Type (1 .. 2 ** 4); begin -- Put (Data_1, 8); -- New_Line; Fft (Data_1); -- Put (Data_1, 8); New_Line; -- Put_Line ("------------------------------------------------------------"); -- New_Line; -- Put (Data_2, 8); -- New_Line; Fft (Data_2); -- Put (Data_2, 8); New_Line; -- Put_Line ("------------------------------------------------------------"); New_Line; for N in Data_3'Range loop Data_3 (N) := Sin (Q * Real_Number (N)) + Real_Number (Random (G)) - 1.0 / 2.0; end loop; -- Put (Data_3, 8); Start_Time := Clock; Fft (Data_3); End_Time := Clock; Total_Time := End_Time - Start_Time; Put ("Computation time: "); Put (Float (Total_Time), Exp => 0, Aft => 8); New_Line; end Ctffttest;
-- { dg-do compile } -- { dg-options "-gnatws" } procedure discr_range_check is Default_First_Entry : constant := 1; task type Server_T (First_Entry : Positive := Default_First_Entry) is entry E (First_Entry .. First_Entry); end Server_T; task body Server_T is begin null; end; type Server_Access is access Server_T; Server : Server_Access; begin Server := new Server_T; end;
-- C36204A.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 EACH ARRAY ATTRIBUTE YIELDS THE CORRECT VALUES. -- BOTH ARRAY OBJECTS AND TYPES ARE CHECKED. -- DAT 2/12/81 -- SPS 11/1/82 -- WMC 03/16/92 CREATED TYPE RANGE CHECK FOR AE_TYPE. WITH REPORT; PROCEDURE C36204A IS USE REPORT; BEGIN TEST ("C36204A", "ARRAY ATTRIBUTES RETURN CORRECT VALUES"); DECLARE A1 : ARRAY (BOOLEAN, INTEGER RANGE IDENT_INT(1)..IDENT_INT(10)) OF STRING(IDENT_INT(5)..IDENT_INT(7)); TYPE NI IS RANGE -3 .. 3; N : NI := NI(IDENT_INT(2)); SUBTYPE SNI IS NI RANGE -N .. N; TYPE AA IS ARRAY (NI, SNI, BOOLEAN) OF NI; A1_1_1 : BOOLEAN := A1'FIRST; A1_1_2 : BOOLEAN := A1'LAST(1); A1_2_1 : INTEGER RANGE A1'RANGE(2) := A1'FIRST(2); -- 1 A1_2_2 : INTEGER RANGE A1'RANGE(2) := A1'LAST(2); -- 10 SUBTYPE AE_TYPE IS INTEGER RANGE A1(TRUE,5)'RANGE; -- RANGE 5..7 A2 : AA; A4 : ARRAY (A1_1_1 .. A1_1_2, A1_2_1 .. A1_2_2) OF STRING (IDENT_INT(1)..IDENT_INT(3)); I : INTEGER; B : BOOLEAN; BEGIN IF A4'FIRST /= IDENT_BOOL(FALSE) OR A4'LAST /= IDENT_BOOL(TRUE) OR A4'FIRST(2) /= INTEGER'(1) OR A4'LAST(2) /= INTEGER'(10) THEN FAILED ("INCORRECT 'FIRST OR 'LAST - 1"); END IF; IF A4'LENGTH /= INTEGER'(2) OR A4'LENGTH /= NI'(2) OR A4'LENGTH(1) /= N OR A4'LENGTH(2) /= A4'LAST(2) THEN FAILED ("INCORRECT 'LENGTH - 1"); END IF; A4 := (BOOLEAN => (1 .. 10 => "XYZ")); FOR L1 IN A1'RANGE(1) LOOP FOR L2 IN A4'RANGE(2) LOOP A1(L1,L2) := A4(L1,L2); END LOOP; END LOOP; IF AA'FIRST(1) /= NI'(-3) OR AA'LAST(1) /= N + 1 OR AA'FIRST(2) /= -N OR AA'LAST(2) /= N OR AA'FIRST(3) /= IDENT_BOOL(FALSE) OR AA'LAST(3) /= IDENT_BOOL(TRUE) THEN FAILED ("INCORRECT 'FIRST OR 'LAST - 2"); END IF; IF N NOT IN AA'RANGE(2) OR IDENT_BOOL(FALSE) NOT IN AA'RANGE(3) OR N + 1 NOT IN AA'RANGE OR N + 1 IN AA'RANGE(2) THEN FAILED ("INCORRECT 'RANGE - 1"); END IF; IF AA'LENGTH /= INTEGER'(7) OR AA'LENGTH(2) - 3 /= N OR AA'LENGTH(3) /= 2 THEN FAILED ("INCORRECT 'LENGTH - 2"); END IF; IF A2'FIRST(1) /= NI'(-3) OR A2'LAST(1) /= N + 1 OR A2'FIRST(2) /= -N OR A2'LAST(2) /= N OR A2'FIRST(3) /= IDENT_BOOL(FALSE) OR A2'LAST(3) /= IDENT_BOOL(TRUE) THEN FAILED ("INCORRECT 'FIRST OR 'LAST - 3"); END IF; IF N NOT IN A2'RANGE(2) OR IDENT_BOOL(FALSE) NOT IN A2'RANGE(3) OR N + 1 NOT IN A2'RANGE OR N + 1 IN A2'RANGE(2) THEN FAILED ("INCORRECT 'RANGE - 2"); END IF; IF A2'LENGTH /= INTEGER'(7) OR A2'LENGTH(2) - 3 /= INTEGER(N) OR A2'LENGTH(3) /= 2 THEN FAILED ("INCORRECT 'LENGTH - 3"); END IF; IF (AE_TYPE'FIRST /= 5) OR (AE_TYPE'LAST /= 7) THEN FAILED ("INCORRECT TYPE RANGE DEFINED FOR AE_TYPE"); END IF; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED ?"); END; RESULT; END C36204A;
with gel.Window.setup, gel.Applet.gui_world, gel.Camera, gel.Sprite, gel.Rig, gel.Forge, openGL.Model.any, ada.Calendar, ada.Strings.unbounded; with ada.Text_IO; use ada.Text_IO; -- For debugging. pragma unreferenced (gel.Window.setup); procedure launch_rig_Demo -- -- Simple rigged box model with two animated bones. -- -- is use gel.Rig, gel.Math, gel.linear_Algebra_3D, openGL, ada.Calendar; ----------- --- Utility -- function "+" (From : in String) return ada.strings.unbounded.unbounded_String renames ada.strings.unbounded.To_unbounded_String; ------------- --- Variables -- the_Applet : constant gel.Applet.gui_World.view := gel.Forge.new_gui_Applet ("animated box Model", 1536, 864); the_Ground : constant gel.Sprite.view := gel.Forge.new_box_Sprite (the_Applet.gui_World, Mass => 0.0, Size => (50.0, 1.0, 50.0)); the_rig_Model : aliased constant openGL.Model.any.view := openGL.Model.any.new_Model (Scale => (1.0, 1.0, 1.0), -- Model => openGL.to_Asset ("./tarantula-rigged.dae"), Model => openGL.to_Asset ("./box_1_bone.dae"), Texture => openGL.null_Asset, Texture_is_lucid => False); the_Rig : aliased gel.Rig.item; next_render_Time : ada.calendar.Time; begin the_Applet.gui_Camera.Site_is ((0.0, 0.0, 10.0)); -- Position the camera the_Applet.enable_simple_Dolly (1); -- Enable user camera control via keyboards the_Applet.Dolly.Speed_is (0.05); the_Applet.enable_Mouse (detect_Motion => False); -- Enable mouse events. the_Applet.gui_World.Gravity_is ((0.0, -0.5, 0.0)); declare leaf_bone_Lengths : bone_id_Map_of_details; begin leaf_bone_Lengths.insert (+"head", to_Details (length => 0.13)); leaf_bone_Lengths.insert (+"jaw", to_Details (length => 0.11)); leaf_bone_Lengths.insert (+"eye_L", to_Details (length => 0.015)); leaf_bone_Lengths.insert (+"eye_R", to_Details (length => 0.015)); leaf_bone_Lengths.insert (+"toe_L", to_Details (length => 0.06)); leaf_bone_Lengths.insert (+"toe_R", to_Details (length => 0.06)); leaf_bone_Lengths.insert (+"thumb_02_L", to_Details (length => 0.02)); leaf_bone_Lengths.insert (+"thumb_02_R", to_Details (length => 0.02)); leaf_bone_Lengths.insert (+"foot_L", to_Details (yaw_Limits => (to_Radians (-0.0), to_Radians ( 0.0)))); leaf_bone_Lengths.insert (+"foot_R", to_Details (yaw_Limits => (to_Radians (-0.0), to_Radians ( 0.0)))); leaf_bone_Lengths.insert (+"forearm_L", to_Details (yaw_Limits => (to_Radians (-40.0), to_Radians ( 40.0)), pitch_Limits => (to_Radians (-40.0), to_Radians ( 40.0)))); leaf_bone_Lengths.insert (+"upper_arm_L", to_Details (yaw_Limits => (to_Radians (-40.0), to_Radians ( 40.0)), pitch_Limits => (to_Radians (-40.0), to_Radians ( 40.0)))); the_Rig.define (the_Applet.gui_World, the_rig_Model.all'Access, mass => 1.0, bone_Details => leaf_bone_Lengths, is_Kinematic => False); end; the_Ground.Site_is ((0.0, -4.0, 0.0)); the_Rig .Spin_is (x_Rotation_from (to_Radians (-90.0))); the_Applet.gui_World.add (the_Rig.base_Sprite, and_Children => True); -- Add the rigs armature sprite. the_Applet.gui_World.add (the_Ground, and_Children => False); -- Add the ground sprite. the_Rig.enable_Graphics; next_render_Time := ada.Calendar.clock; while the_Applet.is_open loop the_Applet.gui_World.evolve (By => 1.0/60.0); -- Evolve the world. the_Rig .evolve (world_Age => the_Applet.gui_World.Age); -- Evolve the rig. the_Applet.freshen; -- Handle any new events and update the screen. next_render_Time := next_render_Time + 1.0/60.0; delay until next_render_Time; end loop; the_Applet.destroy; end launch_rig_Demo;
with Ada.Exceptions; with Ada.Unchecked_Deallocation; with System.Address_To_Named_Access_Conversions; with System.Shared_Locking; package body System.Finalization_Masters is pragma Suppress (All_Checks); use type Storage_Barriers.Flag; procedure Free is new Ada.Unchecked_Deallocation (FM_List, FM_List_Access); package FMN_Ptr_Conv is new Address_To_Named_Access_Conversions (FM_Node, FM_Node_Ptr); procedure Initialize_List (List : not null FM_List_Access); procedure Initialize_List (List : not null FM_List_Access) is begin List.Objects.Next := List.Objects'Access; List.Objects.Prev := List.Objects'Access; end Initialize_List; procedure Finalize_List ( List : not null FM_List_Access; Raised : in out Boolean; X : in out Ada.Exceptions.Exception_Occurrence); procedure Finalize_List ( List : not null FM_List_Access; Raised : in out Boolean; X : in out Ada.Exceptions.Exception_Occurrence) is begin while List.Objects.Next /= List.Objects'Unchecked_Access loop declare Curr_Ptr : constant FM_Node_Ptr := List.Objects.Next; Obj_Addr : constant Address := FMN_Ptr_Conv.To_Address (Curr_Ptr) + Header_Size; begin Detach_Unprotected (Curr_Ptr); begin List.Finalize_Address (Obj_Addr); exception when E : others => if not Raised then Raised := True; Ada.Exceptions.Save_Occurrence (X, E); end if; end; end; end loop; end Finalize_List; procedure Get_List_Unprotected ( Master : in out Finalization_Master'Class; Fin_Addr_Ptr : Finalize_Address_Ptr; List : out FM_List_Access); procedure Get_List_Unprotected ( Master : in out Finalization_Master'Class; Fin_Addr_Ptr : Finalize_Address_Ptr; List : out FM_List_Access) is begin if Master.List.Finalize_Address = null then Master.List.Finalize_Address := Fin_Addr_Ptr; List := Master.List'Unchecked_Access; else declare I : FM_List_Access := Master.List'Unchecked_Access; begin while I /= null loop if I.Finalize_Address = Fin_Addr_Ptr then List := I; return; -- found end if; I := I.Next; end loop; end; declare New_List : constant FM_List_Access := new FM_List; begin Initialize_List (New_List); New_List.Finalize_Address := Fin_Addr_Ptr; New_List.Next := Master.List.Next; Master.List.Next := New_List; List := New_List; end; end if; end Get_List_Unprotected; -- implementation procedure Attach_Unprotected (N, L : not null FM_Node_Ptr) is begin L.Next.Prev := N; N.Next := L.Next; L.Next := N; N.Prev := L; end Attach_Unprotected; procedure Detach_Unprotected (N : not null FM_Node_Ptr) is begin if N.Prev /= null and then N.Next /= null then N.Prev.Next := N.Next; N.Next.Prev := N.Prev; N.Prev := null; N.Next := null; end if; end Detach_Unprotected; function Objects_Unprotected ( Master : aliased in out Finalization_Master'Class; Fin_Addr_Ptr : Finalize_Address_Ptr) return FM_Node_Ptr is List : FM_List_Access; begin Get_List_Unprotected (Master, Fin_Addr_Ptr, List); return List.Objects'Access; end Objects_Unprotected; function Finalization_Started (Master : Finalization_Master'Class) return Boolean is begin return Storage_Barriers.atomic_load ( Master.Finalization_Started'Access) /= 0; end Finalization_Started; procedure Set_Finalize_Address_Unprotected ( Master : in out Finalization_Master'Class; Fin_Addr_Ptr : Finalize_Address_Ptr) is Dummy : FM_List_Access; begin Get_List_Unprotected (Master, Fin_Addr_Ptr, Dummy); end Set_Finalize_Address_Unprotected; procedure Set_Finalize_Address ( Master : in out Finalization_Master'Class; Fin_Addr_Ptr : Finalize_Address_Ptr) is begin Shared_Locking.Enter; Set_Finalize_Address_Unprotected (Master, Fin_Addr_Ptr); Shared_Locking.Leave; end Set_Finalize_Address; overriding procedure Initialize (Object : in out Finalization_Master) is begin Storage_Barriers.atomic_clear (Object.Finalization_Started'Access); Initialize_List (Object.List'Unchecked_Access); Object.List.Finalize_Address := null; Object.List.Next := null; end Initialize; overriding procedure Finalize (Object : in out Finalization_Master) is begin if not Storage_Barriers.atomic_test_and_set ( Object.Finalization_Started'Access) then declare Raised : Boolean := False; X : Ada.Exceptions.Exception_Occurrence; begin Finalize_List (Object.List'Unchecked_Access, Raised, X); declare I : FM_List_Access := Object.List.Next; begin while I /= null loop declare Next : constant FM_List_Access := I.Next; begin Finalize_List (I, Raised, X); Free (I); I := Next; end; end loop; end; if Raised then Ada.Exceptions.Reraise_Nonnull_Occurrence (X); end if; end; end if; end Finalize; function Base_Pool (Master : Finalization_Master'Class) return Any_Storage_Pool_Ptr is begin return Master.Base_Pool; end Base_Pool; procedure Set_Base_Pool ( Master : in out Finalization_Master'Class; Pool_Ptr : Any_Storage_Pool_Ptr) is begin Master.Base_Pool := Pool_Ptr; end Set_Base_Pool; end System.Finalization_Masters;
-- --- Day 6: Custom Customs --- -- -- As your flight approaches the regional airport where you'll switch to a much larger plane, -- customs declaration forms are distributed to the passengers. -- -- The form asks a series of 26 yes-or-no questions marked a through z. -- All you need to do is identify the questions for which anyone in your group answers "yes". -- Since your group is just you, this doesn't take very long. -- -- However, the person sitting next to you seems to be experiencing a language barrier and asks if you can help. -- For each of the people in their group, you write down the questions for which they answer "yes", one per line. For example: -- -- abcx -- abcy -- abcz -- -- In this group, there are 6 questions to which anyone answered "yes": a, b, c, x, y, and z. -- (Duplicate answers to the same question don't count extra; each question counts at most once.) -- -- Another group asks for your help, then another, -- and eventually you've collected answers from every group on the plane (your puzzle input). -- Each group's answers are separated by a blank line, -- and within each group, each person's answers are on a single line. For example: -- -- abc -- -- a -- b -- c -- -- ab -- ac -- -- a -- a -- a -- a -- -- b -- -- This list represents answers from five groups: -- -- The first group contains one person who answered "yes" to 3 questions: a, b, and c. -- The second group contains three people; combined, they answered "yes" to 3 questions: a, b, and c. -- The third group contains two people; combined, they answered "yes" to 3 questions: a, b, and c. -- The fourth group contains four people; combined, they answered "yes" to only 1 question, a. -- The last group contains one person who answered "yes" to only 1 question, b. -- -- In this example, the sum of these counts is 3 + 3 + 3 + 1 + 1 = 11. -- -- For each group, count the number of questions to which anyone answered "yes". What is the sum of those counts? -- ================================================================================================================= -- ================================================================================================================= with Ada.Containers.Vectors; package Adventofcode.Day_6 is type Question_Id is new Character range 'a' .. 'z'; type Reply_Type is array (Question_Id) of Boolean with Default_Component_Value => False; function "+" (L, R : Reply_Type) return Reply_Type is (L or R); function No_Replies return Reply_Type is (others => False); function Value (Item : String) return Reply_Type with Pre => (for all I in Item'Range => (Question_Id (Item (I)) in Question_Id) or else (Item (I) = ' ')); function Count (Item : Reply_Type) return Natural; function Image (Item : Reply_Type) return String; package Group_Replies_Impl is new Ada.Containers.Vectors (Natural, Reply_Type); type Group_Replie is new Group_Replies_Impl.Vector with null record; function Count (Replies : Group_Replie) return Natural; function "+" (L : Group_Replie; R : Reply_Type) return Group_Replie is (L & R); function No_Replies return Group_Replie is (Group_Replies_Impl.Vector with others => <>); end Adventofcode.Day_6;
pragma License (Unrestricted); -- extended unit, see AI05-0002-1 generic type Object (<>) is limited private; type Object_Pointer is access constant Object; package System.Address_To_Constant_Access_Conversions is -- This is an implementation of Robert I. Eachus's plan in AI05-0002-1. pragma Preelaborate; function To_Pointer (Value : Address) return Object_Pointer with Import, Convention => Intrinsic; function To_Address (Value : Object_Pointer) return Address with Import, Convention => Intrinsic; end System.Address_To_Constant_Access_Conversions;
-- { dg-do compile } procedure Object_Overflow5 is procedure Proc (c : Character) is begin null; end; type Index is new Long_Integer range 0 .. Long_Integer'Last; type Arr is array(Index range <>) of Character; type Rec (Size: Index := 6) is record -- { dg-warning "Storage_Error" } A: Arr (0..Size); end record; Obj : Rec; -- { dg-warning "Storage_Error" } begin Obj.A(1) := 'a'; Proc (Obj.A(1)); end;
-- C94020A.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 THE CONDITIONS FOR TERMINATION ARE RECOGNIZED WHEN THE -- LAST MISSING TASK TERMINATES DUE TO AN ABORT -- JEAN-PIERRE ROSEN 08-MAR-1984 -- JBG 6/1/84 -- PWN 09/11/94 REMOVED PRAGMA PRIORITY FOR ADA 9X. WITH SYSTEM; USE SYSTEM; WITH REPORT; USE REPORT; PROCEDURE C94020A IS TASK TYPE T2 IS END T2; TASK TYPE T3 IS ENTRY E; END T3; TASK BODY T2 IS BEGIN COMMENT("T2"); END; TASK BODY T3 IS BEGIN COMMENT("T3"); SELECT ACCEPT E; OR TERMINATE; END SELECT; FAILED("T3 EXITED SELECT OR TERMINATE"); END; BEGIN TEST ("C94020A", "TEST OF TASK DEPENDENCES, TERMINATE, ABORT"); DECLARE TASK TYPE T1 IS END T1; V1 : T1; TYPE A_T1 IS ACCESS T1; TASK BODY T1 IS BEGIN ABORT T1; DELAY 0.0; --SYNCHRONIZATION POINT FAILED("T1 NOT ABORTED"); END; BEGIN DECLARE V2 : T2; A1 : A_T1; BEGIN DECLARE V3 : T3; TASK T4 IS END T4; TASK BODY T4 IS TASK T41 IS END T41; TASK BODY T41 IS BEGIN COMMENT("T41"); ABORT T4; DELAY 0.0; --SYNCHRONIZATION POINT FAILED("T41 NOT ABORTED"); END; BEGIN --T4 COMMENT("T4"); END; BEGIN COMMENT("BLOC 3"); END; COMMENT("BLOC 2"); A1 := NEW T1; END; COMMENT("BLOC 1"); EXCEPTION WHEN OTHERS => FAILED("SOME EXCEPTION RAISED"); END; RESULT; END C94020A;
-- reference: -- http://www.unicode.org/reports/tr15/ with Ada.Characters.Conversions; with Ada.Strings.Canonical_Composites; with Ada.UCD; package body Ada.Strings.Normalization is use type UCD.UCS_4; function Standard_Equal (Left, Right : Wide_Wide_String) return Boolean; function Standard_Equal (Left, Right : Wide_Wide_String) return Boolean is begin return Left = Right; end Standard_Equal; function Standard_Less (Left, Right : Wide_Wide_String) return Boolean; function Standard_Less (Left, Right : Wide_Wide_String) return Boolean is begin return Left < Right; end Standard_Less; -- NFD procedure D_Buff ( Item : in out Wide_Wide_String; Last : in out Natural; Decomposed : out Boolean); procedure D_Buff ( Item : in out Wide_Wide_String; Last : in out Natural; Decomposed : out Boolean) is begin Decomposed := False; for I in reverse Item'First .. Last loop declare D : constant Natural := Canonical_Composites.D_Find (Item (I)); To : Canonical_Composites.Decomposed_Wide_Wide_String; To_Length : Natural; begin if D > 0 then To := Canonical_Composites.D_Map (D).To; To_Length := Canonical_Composites.Decomposed_Length (To); elsif Wide_Wide_Character'Pos (Item (I)) in UCD.Hangul.SBase .. UCD.Hangul.SBase + UCD.Hangul.SCount - 1 then -- S to LV[T] declare SIndex : constant UCD.UCS_4 := Wide_Wide_Character'Pos (Item (I)) - UCD.Hangul.SBase; L : constant UCD.UCS_4 := UCD.Hangul.LBase + SIndex / UCD.Hangul.NCount; V : constant UCD.UCS_4 := UCD.Hangul.VBase + SIndex rem UCD.Hangul.NCount / UCD.Hangul.TCount; T : constant UCD.UCS_4 := UCD.Hangul.TBase + SIndex rem UCD.Hangul.TCount; begin To (1) := Wide_Wide_Character'Val (L); To (2) := Wide_Wide_Character'Val (V); To_Length := 2; if T /= UCD.Hangul.TBase then To (3) := Wide_Wide_Character'Val (T); To_Length := 3; end if; end; else goto Continue; end if; -- replacing Decomposed := True; Item (I + To_Length .. Last + To_Length - 1) := Item (I + 1 .. Last); Item (I .. I + To_Length - 1) := To (1 .. To_Length); Last := Last + To_Length - 1; end; <<Continue>> null; end loop; end D_Buff; -- NFC procedure C_Buff ( Item : in out Wide_Wide_String; Last : in out Natural; Composed : out Boolean); procedure C_Buff ( Item : in out Wide_Wide_String; Last : in out Natural; Composed : out Boolean) is begin Composed := False; for I in reverse Item'First .. Last - 1 loop Process_After_Index : loop declare From : constant Canonical_Composites.Composing_Wide_Wide_String := (Item (I), Item (I + 1)); C : constant Natural := Canonical_Composites.C_Find (From); To : Wide_Wide_Character; begin if C > 0 then To := Canonical_Composites.C_Map (C).To; elsif Wide_Wide_Character'Pos (From (1)) in UCD.Hangul.LBase .. UCD.Hangul.LBase + UCD.Hangul.LCount - 1 and then Wide_Wide_Character'Pos (From (2)) in UCD.Hangul.VBase .. UCD.Hangul.VBase + UCD.Hangul.VCount - 1 then -- LV to S declare LIndex : constant UCD.UCS_4 := Wide_Wide_Character'Pos (From (1)) - UCD.Hangul.LBase; VIndex : constant UCD.UCS_4 := Wide_Wide_Character'Pos (From (2)) - UCD.Hangul.VBase; begin To := Wide_Wide_Character'Val ( UCD.Hangul.SBase + (LIndex * UCD.Hangul.VCount + VIndex) * UCD.Hangul.TCount); end; elsif Wide_Wide_Character'Pos (From (1)) in UCD.Hangul.SBase .. UCD.Hangul.SBase + UCD.Hangul.SCount - 1 and then Wide_Wide_Character'Pos (From (2)) in UCD.Hangul.TBase .. UCD.Hangul.TBase + UCD.Hangul.TCount - 1 then -- ST to T declare ch : constant UCD.UCS_4 := Wide_Wide_Character'Pos (From (1)); TIndex : constant UCD.UCS_4 := Wide_Wide_Character'Pos (From (2)) - UCD.Hangul.TBase; begin To := Wide_Wide_Character'Val (ch + TIndex); end; else exit Process_After_Index; end if; -- replacing Composed := True; Item (I) := To; Last := Last - 1; exit Process_After_Index when Last <= I; Item (I + 1 .. Last) := Item (I + 2 .. Last + 1); end; end loop Process_After_Index; end loop; end C_Buff; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; Max_Length : Positive; with procedure Get ( Data : String_Type; Last : out Natural; Result : out Wide_Wide_Character; Is_Illegal_Sequence : out Boolean); with procedure Put ( Code : Wide_Wide_Character; Result : out String_Type; Last : out Natural); with procedure Get_Combined ( State : in out Composites.State; Item : String_Type; Last : out Natural; Is_Illegal_Sequence : out Boolean); package Generic_Normalization is procedure Decode ( Item : String_Type; Buffer : out Wide_Wide_String; Buffer_Last : out Natural); procedure Encode ( Item : Wide_Wide_String; Buffer : out String_Type; Buffer_Last : out Natural); procedure Decompose_No_Length_Check ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural); procedure Compose_No_Length_Check ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural); end Generic_Normalization; package body Generic_Normalization is procedure Decode ( Item : String_Type; Buffer : out Wide_Wide_String; Buffer_Last : out Natural) is Last : Natural := Item'First - 1; Code : Wide_Wide_Character; Is_Illegal_Sequence : Boolean; -- ignore begin Buffer_Last := Buffer'First - 1; while Last < Item'Last loop Get ( Item (Last + 1 .. Item'Last), Last, Code, Is_Illegal_Sequence); Buffer_Last := Buffer_Last + 1; Buffer (Buffer_Last) := Code; end loop; end Decode; procedure Encode ( Item : Wide_Wide_String; Buffer : out String_Type; Buffer_Last : out Natural) is begin Buffer_Last := Buffer'First - 1; for I in Item'Range loop Put ( Item (I), Buffer (Buffer_Last + 1 .. Buffer'Last), Buffer_Last); end loop; end Encode; procedure Decompose_No_Length_Check ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural) is Is_Illegal_Sequence : Boolean; begin -- get one combining character sequence Get_Combined (State, Item, Last, Is_Illegal_Sequence); if not Is_Illegal_Sequence then -- normalization declare Decomposed : Boolean; Buffer : Wide_Wide_String ( 1 .. Expanding * Max_Length * (Last - Item'First + 1)); Buffer_Last : Natural; begin -- decoding Decode ( Item (Item'First .. Last), Buffer, Buffer_Last); -- decomposing D_Buff (Buffer, Buffer_Last, Decomposed); -- encoding if Decomposed then Encode (Buffer (1 .. Buffer_Last), Out_Item, Out_Last); return; end if; end; end if; Out_Last := Out_Item'First + (Last - Item'First); Out_Item (Out_Item'First .. Out_Last) := Item (Item'First .. Last); end Decompose_No_Length_Check; procedure Compose_No_Length_Check ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural) is Is_Illegal_Sequence : Boolean; begin -- get one combining character sequence Get_Combined (State, Item, Last, Is_Illegal_Sequence); if not Is_Illegal_Sequence then -- normalization declare Decomposed : Boolean; Composed : Boolean; Buffer : Wide_Wide_String ( 1 .. Expanding * Max_Length * (Last - Item'First + 1)); Buffer_Last : Natural; begin -- decoding Decode ( Item (Item'First .. Last), Buffer, Buffer_Last); -- first, decomposing D_Buff (Buffer, Buffer_Last, Decomposed); -- next, composing C_Buff (Buffer, Buffer_Last, Composed); -- encoding if Decomposed or else Composed then Encode (Buffer (1 .. Buffer_Last), Out_Item, Out_Last); return; end if; end; end if; Out_Last := Out_Item'First + (Last - Item'First); Out_Item (Out_Item'First .. Out_Last) := Item (Item'First .. Last); end Compose_No_Length_Check; end Generic_Normalization; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Start (Item : String_Type; State : out Composites.State); procedure Generic_Decompose ( Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural); procedure Generic_Decompose ( Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural) is begin if Item'Length = 0 then Last := Item'First - 1; Out_Last := Out_Item'First - 1; else Canonical_Composites.Initialize_D; declare St : Composites.State; begin Start (Item, St); N.Decompose_No_Length_Check (St, Item, Last, Out_Item, Out_Last); end; end if; end Generic_Decompose; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); procedure Generic_Decompose_With_State ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural); procedure Generic_Decompose_With_State ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural) is begin if Item'Length = 0 then -- finished Last := Item'Last; State.Next_Character := Wide_Wide_Character'Val (0); State.Next_Combining_Class := 0; State.Next_Is_Illegal_Sequence := False; State.Next_Last := Last; Out_Last := Out_Item'First - 1; else Canonical_Composites.Initialize_D; N.Decompose_No_Length_Check (State, Item, Last, Out_Item, Out_Last); end if; end Generic_Decompose_With_State; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Start (Item : String_Type; State : out Composites.State); procedure Generic_Decompose_All ( Item : String_Type; Out_Item : out String_Type; Out_Last : out Natural); procedure Generic_Decompose_All ( Item : String_Type; Out_Item : out String_Type; Out_Last : out Natural) is begin Out_Last := Out_Item'First - 1; if Item'Length > 0 then Canonical_Composites.Initialize_D; declare St : Composites.State; Last : Natural := Item'First - 1; begin Start (Item, St); while Last < Item'Last loop N.Decompose_No_Length_Check ( St, Item (Last + 1 .. Item'Last), Last, Out_Item (Out_Last + 1 .. Out_Item'Last), Out_Last); end loop; end; end if; end Generic_Decompose_All; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Decompose ( Item : String_Type; Out_Item : out String_Type; Out_Last : out Natural); function Generic_Decompose_All_Func (Item : String_Type) return String_Type; function Generic_Decompose_All_Func (Item : String_Type) return String_Type is Result : String_Type (1 .. Expanding * N.Max_Length * Item'Length); Result_Last : Natural := Result'First - 1; begin Decompose (Item, Result, Result_Last); return Result (Result'First .. Result_Last); end Generic_Decompose_All_Func; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Start (Item : String_Type; State : out Composites.State); procedure Generic_Compose ( Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural); procedure Generic_Compose ( Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural) is begin if Item'Length = 0 then Last := Item'First - 1; Out_Last := Out_Item'First - 1; else Canonical_Composites.Initialize_C; declare St : Composites.State; begin Start (Item, St); N.Compose_No_Length_Check (St, Item, Last, Out_Item, Out_Last); end; end if; end Generic_Compose; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); procedure Generic_Compose_With_State ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural); procedure Generic_Compose_With_State ( State : in out Composites.State; Item : String_Type; Last : out Natural; Out_Item : out String_Type; Out_Last : out Natural) is begin if Item'Length = 0 then -- finished Last := Item'Last; State.Next_Character := Wide_Wide_Character'Val (0); State.Next_Combining_Class := 0; State.Next_Is_Illegal_Sequence := False; State.Next_Last := Last; Out_Last := Out_Item'First - 1; else Canonical_Composites.Initialize_C; N.Compose_No_Length_Check (State, Item, Last, Out_Item, Out_Last); end if; end Generic_Compose_With_State; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Start (Item : String_Type; State : out Composites.State); procedure Generic_Compose_All ( Item : String_Type; Out_Item : out String_Type; Out_Last : out Natural); procedure Generic_Compose_All ( Item : String_Type; Out_Item : out String_Type; Out_Last : out Natural) is begin Out_Last := Out_Item'First - 1; if Item'Length > 0 then Canonical_Composites.Initialize_C; declare St : Composites.State; Last : Natural := Item'First - 1; begin Start (Item, St); while Last < Item'Last loop N.Compose_No_Length_Check ( St, Item (Last + 1 .. Item'Last), Last, Out_Item (Out_Last + 1 .. Out_Item'Last), Out_Last); end loop; end; end if; end Generic_Compose_All; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Compose ( Item : String_Type; Out_Item : out String_Type; Out_Last : out Natural); function Generic_Compose_All_Func (Item : String_Type) return String_Type; function Generic_Compose_All_Func (Item : String_Type) return String_Type is Result : String_Type (1 .. Expanding * N.Max_Length * Item'Length); Result_Last : Natural := Result'First - 1; begin Compose (Item, Result, Result_Last); return Result (Result'First .. Result_Last); end Generic_Compose_All_Func; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with function Equal ( Left, Right : String_Type; Equal_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean; function Generic_Equal (Left, Right : String_Type) return Boolean; function Generic_Equal (Left, Right : String_Type) return Boolean is begin return Equal (Left, Right, Standard_Equal'Access); end Generic_Equal; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Start (Item : String_Type; State : out Composites.State); function Generic_Equal_With_Comparator ( Left, Right : String_Type; Equal_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean; function Generic_Equal_With_Comparator ( Left, Right : String_Type; Equal_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is begin if Left'Length = 0 then return Right'Length = 0; elsif Right'Length = 0 then return False; end if; Canonical_Composites.Initialize_D; declare Left_State : Composites.State; Left_Last : Natural := Left'First - 1; Right_State : Composites.State; Right_Last : Natural := Right'First - 1; begin Start (Left, Left_State); Start (Right, Right_State); loop -- get one combining character sequence declare Left_First : constant Positive := Left_Last + 1; Right_First : constant Positive := Right_Last + 1; Left_Is_Illegal_Sequence : Boolean; Right_Is_Illegal_Sequence : Boolean; begin N.Get_Combined ( Left_State, Left (Left_First .. Left'Last), Left_Last, Left_Is_Illegal_Sequence); N.Get_Combined ( Right_State, Right (Right_First .. Right'Last), Right_Last, Right_Is_Illegal_Sequence); if not Left_Is_Illegal_Sequence then if not Right_Is_Illegal_Sequence then -- left and right are legal declare Left_Buffer : Wide_Wide_String ( 1 .. Expanding * N.Max_Length * (Left_Last - Left_First + 1)); Left_Buffer_Last : Natural; Left_Decomposed : Boolean; -- ignore Right_Buffer : Wide_Wide_String ( 1 .. Expanding * N.Max_Length * (Right_Last - Right_First + 1)); Right_Buffer_Last : Natural; Right_Decomposed : Boolean; -- ignore begin N.Decode ( Left (Left_First .. Left_Last), Left_Buffer, Left_Buffer_Last); D_Buff ( Left_Buffer, Left_Buffer_Last, Left_Decomposed); N.Decode ( Right (Right_First .. Right_Last), Right_Buffer, Right_Buffer_Last); D_Buff ( Right_Buffer, Right_Buffer_Last, Right_Decomposed); if not Equal_Combined ( Left_Buffer (1 .. Left_Buffer_Last), Right_Buffer (1 .. Right_Buffer_Last)) then return False; end if; end; else -- left is legal, right is illegal return False; end if; else if not Right_Is_Illegal_Sequence then -- left is illegal, right is legal return False; else -- left and right are illegal if Left (Left_First .. Left_Last) /= Right (Right_First .. Right_Last) then return False; end if; end if; end if; end; -- detect ends if Left_Last >= Left'Last then return Right_Last >= Right'Last; elsif Right_Last >= Right'Last then return False; end if; end loop; end; end Generic_Equal_With_Comparator; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with function Less ( Left, Right : String_Type; Less_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean; function Generic_Less (Left, Right : String_Type) return Boolean; function Generic_Less (Left, Right : String_Type) return Boolean is begin return Less (Left, Right, Standard_Less'Access); end Generic_Less; generic type Character_Type is (<>); type String_Type is array (Positive range <>) of Character_Type; with package N is new Generic_Normalization (Character_Type, String_Type, others => <>); with procedure Start (Item : String_Type; State : out Composites.State); function Generic_Less_With_Comparator ( Left, Right : String_Type; Less_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean; function Generic_Less_With_Comparator ( Left, Right : String_Type; Less_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is begin if Left'Length = 0 then return Right'Length > 0; elsif Right'Length = 0 then return False; end if; Canonical_Composites.Initialize_D; declare Left_State : Composites.State; Left_Last : Natural := Left'First - 1; Right_State : Composites.State; Right_Last : Natural := Right'First - 1; begin Start (Left, Left_State); Start (Right, Right_State); loop -- get one combining character sequence declare Left_First : constant Positive := Left_Last + 1; Right_First : constant Positive := Right_Last + 1; Left_Is_Illegal_Sequence : Boolean; Right_Is_Illegal_Sequence : Boolean; begin N.Get_Combined ( Left_State, Left (Left_First .. Left'Last), Left_Last, Left_Is_Illegal_Sequence); N.Get_Combined ( Right_State, Right (Right_First .. Right'Last), Right_Last, Right_Is_Illegal_Sequence); if not Left_Is_Illegal_Sequence then if not Right_Is_Illegal_Sequence then -- left and right are legal declare Left_Buffer : Wide_Wide_String ( 1 .. Expanding * N.Max_Length * (Left_Last - Left_First + 1)); Left_Buffer_Last : Natural; Left_Decomposed : Boolean; -- ignore Right_Buffer : Wide_Wide_String ( 1 .. Expanding * N.Max_Length * (Right_Last - Right_First + 1)); Right_Buffer_Last : Natural; Right_Decomposed : Boolean; -- ignore begin N.Decode ( Left (Left_First .. Left_Last), Left_Buffer, Left_Buffer_Last); D_Buff ( Left_Buffer, Left_Buffer_Last, Left_Decomposed); N.Decode ( Right (Right_First .. Right_Last), Right_Buffer, Right_Buffer_Last); D_Buff ( Right_Buffer, Right_Buffer_Last, Right_Decomposed); if Less_Combined ( Left_Buffer (1 .. Left_Buffer_Last), Right_Buffer (1 .. Right_Buffer_Last)) then return True; elsif Less_Combined ( Right_Buffer (1 .. Right_Buffer_Last), Left_Buffer (1 .. Left_Buffer_Last)) then return False; end if; end; else -- left is legal, right is illegal return True; end if; else if not Right_Is_Illegal_Sequence then -- left is illegal, right is legal return False; else -- left and right are illegal if Left (Left_First .. Left_Last) < Right (Right_First .. Right_Last) then return True; elsif Left (Left_First .. Left_Last) < Right (Right_First .. Right_Last) then return False; end if; end if; end if; end; -- detect ends if Left_Last >= Left'Last then return Right_Last < Right'Last; elsif Right_Last >= Right'Last then return False; end if; end loop; end; end Generic_Less_With_Comparator; package Strings is new Generic_Normalization ( Character, String, Characters.Conversions.Max_Length_In_String, Characters.Conversions.Get, Characters.Conversions.Put, Composites.Get_Combined); package Wide_Strings is new Generic_Normalization ( Wide_Character, Wide_String, Characters.Conversions.Max_Length_In_Wide_String, Characters.Conversions.Get, Characters.Conversions.Put, Composites.Get_Combined); package Wide_Wide_Strings is new Generic_Normalization ( Wide_Wide_Character, Wide_Wide_String, Characters.Conversions.Max_Length_In_Wide_Wide_String, -- 1 Characters.Conversions.Get, Characters.Conversions.Put, Composites.Get_Combined); -- implementation procedure Iterate ( Expanded : Boolean; Process : not null access procedure ( Precomposed : Wide_Wide_Character; Decomposed : Wide_Wide_String)) is procedure Do_Iterate ( Map : Canonical_Composites.D_Map_Array; Process : not null access procedure ( Precomposed : Wide_Wide_Character; Decomposed : Wide_Wide_String)); procedure Do_Iterate ( Map : Canonical_Composites.D_Map_Array; Process : not null access procedure ( Precomposed : Wide_Wide_Character; Decomposed : Wide_Wide_String)) is begin for I in Map'Range loop declare E : Canonical_Composites.D_Map_Element renames Map (I); Decomposed_Length : constant Natural := Canonical_Composites.Decomposed_Length (E.To); begin Process (E.From, E.To (1 .. Decomposed_Length)); end; end loop; end Do_Iterate; begin if Expanded then Canonical_Composites.Initialize_D; Do_Iterate (Canonical_Composites.D_Map.all, Process); else Canonical_Composites.Initialize_Unexpanded_D; Do_Iterate (Canonical_Composites.Unexpanded_D_Map.all, Process); end if; end Iterate; procedure Decompose ( Item : String; Last : out Natural; Out_Item : out String; Out_Last : out Natural) is procedure Decompose_String is new Generic_Decompose (Character, String, Strings, Composites.Start); begin Decompose_String (Item, Last, Out_Item, Out_Last); end Decompose; procedure Decompose ( State : in out Composites.State; Item : String; Last : out Natural; Out_Item : out String; Out_Last : out Natural) is procedure Decompose_String is new Generic_Decompose_With_State (Character, String, Strings); begin Decompose_String (State, Item, Last, Out_Item, Out_Last); end Decompose; procedure Decompose ( Item : Wide_String; Last : out Natural; Out_Item : out Wide_String; Out_Last : out Natural) is procedure Decompose_Wide_String is new Generic_Decompose ( Wide_Character, Wide_String, Wide_Strings, Composites.Start); begin Decompose_Wide_String (Item, Last, Out_Item, Out_Last); end Decompose; procedure Decompose ( State : in out Composites.State; Item : Wide_String; Last : out Natural; Out_Item : out Wide_String; Out_Last : out Natural) is procedure Decompose_Wide_String is new Generic_Decompose_With_State ( Wide_Character, Wide_String, Wide_Strings); begin Decompose_Wide_String (State, Item, Last, Out_Item, Out_Last); end Decompose; procedure Decompose ( Item : Wide_Wide_String; Last : out Natural; Out_Item : out Wide_Wide_String; Out_Last : out Natural) is procedure Decompose_Wide_Wide_String is new Generic_Decompose ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Composites.Start); begin Decompose_Wide_Wide_String (Item, Last, Out_Item, Out_Last); end Decompose; procedure Decompose ( State : in out Composites.State; Item : Wide_Wide_String; Last : out Natural; Out_Item : out Wide_Wide_String; Out_Last : out Natural) is procedure Decompose_Wide_Wide_String is new Generic_Decompose_With_State ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings); begin Decompose_Wide_Wide_String (State, Item, Last, Out_Item, Out_Last); end Decompose; procedure Decompose ( Item : String; Out_Item : out String; Out_Last : out Natural) is procedure Decompose_String is new Generic_Decompose_All ( Character, String, Strings, Composites.Start); pragma Inline_Always (Decompose_String); begin Decompose_String (Item, Out_Item, Out_Last); end Decompose; function Decompose (Item : String) return String is function Decompose_String is new Generic_Decompose_All_Func ( Character, String, Strings, Decompose); begin return Decompose_String (Item); end Decompose; procedure Decompose ( Item : Wide_String; Out_Item : out Wide_String; Out_Last : out Natural) is procedure Decompose_Wide_String is new Generic_Decompose_All ( Wide_Character, Wide_String, Wide_Strings, Composites.Start); pragma Inline_Always (Decompose_Wide_String); begin Decompose_Wide_String (Item, Out_Item, Out_Last); end Decompose; function Decompose (Item : Wide_String) return Wide_String is function Decompose_Wide_String is new Generic_Decompose_All_Func ( Wide_Character, Wide_String, Wide_Strings, Decompose); begin return Decompose_Wide_String (Item); end Decompose; procedure Decompose ( Item : Wide_Wide_String; Out_Item : out Wide_Wide_String; Out_Last : out Natural) is procedure Decompose_Wide_Wide_String is new Generic_Decompose_All ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Composites.Start); pragma Inline_Always (Decompose_Wide_Wide_String); begin Decompose_Wide_Wide_String (Item, Out_Item, Out_Last); end Decompose; function Decompose (Item : Wide_Wide_String) return Wide_Wide_String is function Decompose_Wide_Wide_String is new Generic_Decompose_All_Func ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Decompose); begin return Decompose_Wide_Wide_String (Item); end Decompose; procedure Compose ( Item : String; Last : out Natural; Out_Item : out String; Out_Last : out Natural) is procedure Compose_String is new Generic_Compose (Character, String, Strings, Composites.Start); begin Compose_String (Item, Last, Out_Item, Out_Last); end Compose; procedure Compose ( State : in out Composites.State; Item : String; Last : out Natural; Out_Item : out String; Out_Last : out Natural) is procedure Compose_String is new Generic_Compose_With_State (Character, String, Strings); begin Compose_String (State, Item, Last, Out_Item, Out_Last); end Compose; procedure Compose ( Item : Wide_String; Last : out Natural; Out_Item : out Wide_String; Out_Last : out Natural) is procedure Compose_Wide_String is new Generic_Compose ( Wide_Character, Wide_String, Wide_Strings, Composites.Start); begin Compose_Wide_String (Item, Last, Out_Item, Out_Last); end Compose; procedure Compose ( State : in out Composites.State; Item : Wide_String; Last : out Natural; Out_Item : out Wide_String; Out_Last : out Natural) is procedure Compose_Wide_String is new Generic_Compose_With_State ( Wide_Character, Wide_String, Wide_Strings); begin Compose_Wide_String (State, Item, Last, Out_Item, Out_Last); end Compose; procedure Compose ( Item : Wide_Wide_String; Last : out Natural; Out_Item : out Wide_Wide_String; Out_Last : out Natural) is procedure Compose_Wide_Wide_String is new Generic_Compose ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Composites.Start); begin Compose_Wide_Wide_String (Item, Last, Out_Item, Out_Last); end Compose; procedure Compose ( State : in out Composites.State; Item : Wide_Wide_String; Last : out Natural; Out_Item : out Wide_Wide_String; Out_Last : out Natural) is procedure Compose_Wide_Wide_String is new Generic_Compose_With_State ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings); begin Compose_Wide_Wide_String (State, Item, Last, Out_Item, Out_Last); end Compose; procedure Compose ( Item : String; Out_Item : out String; Out_Last : out Natural) is procedure Compose_String is new Generic_Compose_All ( Character, String, Strings, Composites.Start); pragma Inline_Always (Compose_String); begin Compose_String (Item, Out_Item, Out_Last); end Compose; function Compose (Item : String) return String is function Compose_String is new Generic_Compose_All_Func (Character, String, Strings, Compose); begin return Compose_String (Item); end Compose; procedure Compose ( Item : Wide_String; Out_Item : out Wide_String; Out_Last : out Natural) is procedure Compose_Wide_String is new Generic_Compose_All ( Wide_Character, Wide_String, Wide_Strings, Composites.Start); pragma Inline_Always (Compose_Wide_String); begin Compose_Wide_String (Item, Out_Item, Out_Last); end Compose; function Compose (Item : Wide_String) return Wide_String is function Compose_Wide_String is new Generic_Compose_All_Func ( Wide_Character, Wide_String, Wide_Strings, Compose); begin return Compose_Wide_String (Item); end Compose; procedure Compose ( Item : Wide_Wide_String; Out_Item : out Wide_Wide_String; Out_Last : out Natural) is procedure Compose_Wide_Wide_String is new Generic_Compose_All ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Composites.Start); pragma Inline_Always (Compose_Wide_Wide_String); begin Compose_Wide_Wide_String (Item, Out_Item, Out_Last); end Compose; function Compose (Item : Wide_Wide_String) return Wide_Wide_String is function Compose_Wide_Wide_String is new Generic_Compose_All_Func ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Compose); begin return Compose_Wide_Wide_String (Item); end Compose; function Equal (Left, Right : String) return Boolean is function Equal_String is new Generic_Equal (Character, String, Equal); begin return Equal_String (Left, Right); end Equal; function Equal ( Left, Right : String; Equal_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is function Equal_String is new Generic_Equal_With_Comparator ( Character, String, Strings, Composites.Start); pragma Inline_Always (Equal_String); begin return Equal_String (Left, Right, Equal_Combined); end Equal; function Equal (Left, Right : Wide_String) return Boolean is function Equal_Wide_String is new Generic_Equal (Wide_Character, Wide_String, Equal); begin return Equal_Wide_String (Left, Right); end Equal; function Equal ( Left, Right : Wide_String; Equal_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is function Equal_Wide_String is new Generic_Equal_With_Comparator ( Wide_Character, Wide_String, Wide_Strings, Composites.Start); pragma Inline_Always (Equal_Wide_String); begin return Equal_Wide_String (Left, Right, Equal_Combined); end Equal; function Equal (Left, Right : Wide_Wide_String) return Boolean is function Equal_Wide_Wide_String is new Generic_Equal (Wide_Wide_Character, Wide_Wide_String, Equal); begin return Equal_Wide_Wide_String (Left, Right); end Equal; function Equal ( Left, Right : Wide_Wide_String; Equal_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is function Equal_Wide_Wide_String is new Generic_Equal_With_Comparator ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Composites.Start); pragma Inline_Always (Equal_Wide_Wide_String); begin return Equal_Wide_Wide_String (Left, Right, Equal_Combined); end Equal; function Less (Left, Right : String) return Boolean is function Less_String is new Generic_Less (Character, String, Less); begin return Less_String (Left, Right); end Less; function Less ( Left, Right : String; Less_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is function Less_String is new Generic_Less_With_Comparator ( Character, String, Strings, Composites.Start); pragma Inline_Always (Less_String); begin return Less_String (Left, Right, Less_Combined); end Less; function Less (Left, Right : Wide_String) return Boolean is function Less_Wide_String is new Generic_Less (Wide_Character, Wide_String, Less); begin return Less_Wide_String (Left, Right); end Less; function Less ( Left, Right : Wide_String; Less_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is function Less_Wide_String is new Generic_Less_With_Comparator ( Wide_Character, Wide_String, Wide_Strings, Composites.Start); pragma Inline_Always (Less_Wide_String); begin return Less_Wide_String (Left, Right, Less_Combined); end Less; function Less (Left, Right : Wide_Wide_String) return Boolean is function Less_Wide_Wide_String is new Generic_Less (Wide_Wide_Character, Wide_Wide_String, Less); begin return Less_Wide_Wide_String (Left, Right); end Less; function Less ( Left, Right : Wide_Wide_String; Less_Combined : not null access function ( Left, Right : Wide_Wide_String) return Boolean) return Boolean is function Less_Wide_Wide_String is new Generic_Less_With_Comparator ( Wide_Wide_Character, Wide_Wide_String, Wide_Wide_Strings, Composites.Start); pragma Inline_Always (Less_Wide_Wide_String); begin return Less_Wide_Wide_String (Left, Right, Less_Combined); end Less; end Ada.Strings.Normalization;
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Streams; with Ada.Streams.Stream_IO; with Ada.Unchecked_Deallocation; with Ada.Wide_Wide_Text_IO; with Interfaces; with System; with League.IRIs; with League.Settings; with League.String_Vectors; with League.Holders; with Slim.Menu_Models.JSON; with Slim.Message_Decoders; with Slim.Message_Visiters; with Slim.Messages.audg; with Slim.Messages.strm; with Slim.Players.Connected_State_Visiters; with Slim.Players.Displays; with Slim.Players.Idle_State_Visiters; with Slim.Players.Play_Radio_Visiters; with Slim.Players.Play_Files_Visiters; package body Slim.Players is Hearbeat_Period : constant := 5.0; procedure Read_Message (Socket : GNAT.Sockets.Socket_Type; Message : out Slim.Messages.Message_Access); procedure Send_Hearbeat (Self : in out Player'Class); procedure Read_Splash (Splash : out League.Stream_Element_Vectors.Stream_Element_Vector; File : League.Strings.Universal_String); procedure Free is new Ada.Unchecked_Deallocation (Slim.Messages.Message'Class, Slim.Messages.Message_Access); function Seconds_To_Bytes (File : League.Strings.Universal_String; Skip : Positive) return League.Strings.Universal_String; ---------------- -- First_Menu -- ---------------- function First_Menu (Self : Player'Class) return Slim.Menu_Views.Menu_View is Ignore : Boolean; begin return Result : Slim.Menu_Views.Menu_View do Result.Initialize (Menu => Slim.Menu_Models.Menu_Model_Access (Self.Menu), Font => Self.Font'Unchecked_Access); end return; end First_Menu; ----------------- -- Get_Display -- ----------------- function Get_Display (Self : Player; Height : Positive := 32; Width : Positive := 160) return Slim.Players.Displays.Display is Size : constant Ada.Streams.Stream_Element_Offset := Ada.Streams.Stream_Element_Offset (Height * Width / 8); begin return Result : Slim.Players.Displays.Display (Size) do Slim.Players.Displays.Initialize (Result, Self); end return; end Get_Display; ------------------ -- Get_Position -- ------------------ procedure Get_Position (Self : in out Player'Class; M3U : League.Strings.Universal_String; Index : out Positive; Skip : out Natural) is pragma Unreferenced (Self); Setting : League.Settings.Settings; Key : League.Strings.Universal_String; Value : League.Holders.Holder; begin Key.Append ("Pause/Index."); Key.Append (M3U); Value := Setting.Value (Key); if League.Holders.Is_Universal_String (Value) then Key := League.Holders.Element (Value); Index := Positive'Wide_Wide_Value (Key.To_Wide_Wide_String); else Index := 1; end if; Key.Clear; Key.Append ("Pause/Skip."); Key.Append (M3U); Value := Setting.Value (Key); if League.Holders.Is_Universal_String (Value) then Key := League.Holders.Element (Value); Skip := Natural'Wide_Wide_Value (Key.To_Wide_Wide_String); else Skip := 0; end if; end Get_Position; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : in out Player'Class; Socket : GNAT.Sockets.Socket_Type; Font : League.Strings.Universal_String; Splash : League.Strings.Universal_String; Menu : League.Strings.Universal_String) is begin Self.Socket := Socket; GNAT.Sockets.Set_Socket_Option (Self.Socket, GNAT.Sockets.Socket_Level, (GNAT.Sockets.Receive_Timeout, Hearbeat_Period)); Slim.Fonts.Read (Self.Font, Font); Read_Splash (Self.Splash, Splash); Self.Menu := new Slim.Menu_Models.JSON.JSON_Menu_Model (Self'Unchecked_Access); Slim.Menu_Models.JSON.JSON_Menu_Model (Self.Menu.all).Initialize (File => Menu); end Initialize; ---------------- -- Play_Files -- ---------------- procedure Play_Files (Self : in out Player'Class; Root : League.Strings.Universal_String; M3U : League.Strings.Universal_String; List : Song_Array; From : Positive; Skip : Natural) is use type Ada.Calendar.Time; Playlist : Song_Vectors.Vector; begin for X of List loop Playlist.Append (X); end loop; Self.State := (Play_Files, (Volume => 30, Volume_Set_Time => Ada.Calendar.Clock - 60.0, Current_Song => List (From).Title, Paused => False, Seconds => 0), Root, M3U, Playlist, From, Skip); Self.Request_Next_File; end Play_Files; -------------------- -- Play_Next_File -- -------------------- procedure Play_Next_File (Self : in out Player'Class; Immediate : Boolean := True) is begin if Self.State.Kind /= Play_Files then return; elsif Immediate then declare strm : Slim.Messages.strm.Strm_Message; begin strm.Simple_Command (Command => Slim.Messages.strm.Flush); Write_Message (Self.Socket, strm); end; end if; if Self.State.Index < Self.State.Playlist.Last_Index then Self.State.Index := Self.State.Index + 1; Self.State.Offset := 0; Self.Request_Next_File; else Self.Stop; end if; end Play_Next_File; ------------------------ -- Play_Previous_File -- ------------------------ procedure Play_Previous_File (Self : in out Player'Class; Immediate : Boolean := True) is begin if Self.State.Kind /= Play_Files then return; elsif Immediate then declare strm : Slim.Messages.strm.Strm_Message; begin strm.Simple_Command (Command => Slim.Messages.strm.Flush); Write_Message (Self.Socket, strm); end; end if; if Self.State.Index > 1 then Self.State.Index := Self.State.Index - 1; Self.Request_Next_File; else Self.Stop; end if; end Play_Previous_File; ---------------- -- Play_Radio -- ---------------- procedure Play_Radio (Self : in out Player'Class; URL : League.Strings.Universal_String) is use type Ada.Calendar.Time; IRI : constant League.IRIs.IRI := League.IRIs.From_Universal_String (URL); Host : League.Strings.Universal_String := IRI.Get_Host; Port : constant Natural := IRI.Get_Port; Port_Image : Wide_Wide_String := Integer'Wide_Wide_Image (Port); Addr : GNAT.Sockets.Inet_Addr_Type; Strm : Slim.Messages.strm.Strm_Message; Request : League.String_Vectors.Universal_String_Vector; Line : League.Strings.Universal_String; begin Self.Stop; declare Host_Entry : constant GNAT.Sockets.Host_Entry_Type := GNAT.Sockets.Get_Host_By_Name (Host.To_UTF_8_String); begin for J in 1 .. Host_Entry.Addresses_Length loop Addr := GNAT.Sockets.Addresses (Host_Entry, J); exit when Addr.Family in GNAT.Sockets.Family_Inet; end loop; end; if Addr.Family not in GNAT.Sockets.Family_Inet then return; end if; if Port /= 0 then Port_Image (1) := ':'; Host.Append (Port_Image); end if; Line := +"GET /"; Line.Append (IRI.Get_Path.Join ('/')); Line.Append (" HTTP/1.0"); Ada.Wide_Wide_Text_IO.Put_Line (Line.To_Wide_Wide_String); Request.Append (Line); Line := +"Host: "; Line.Append (Host); Request.Append (Line); Request.Append (+"Icy-Metadata: 1"); Request.Append (+""); Request.Append (+""); Strm.Start (Server => (GNAT.Sockets.Family_Inet, Addr, Port => GNAT.Sockets.Port_Type (Port)), Request => Request); Write_Message (Self.Socket, Strm); Self.State := (Play_Radio, (Volume => 30, Volume_Set_Time => Ada.Calendar.Clock - 60.0, Current_Song => League.Strings.Empty_Universal_String, Paused => False, Seconds => 0)); exception when GNAT.Sockets.Host_Error => return; end Play_Radio; --------------------- -- Process_Message -- --------------------- not overriding procedure Process_Message (Self : in out Player) is use type Ada.Calendar.Time; function Get_Visiter return Slim.Message_Visiters.Visiter'Class; function Get_Visiter return Slim.Message_Visiters.Visiter'Class is begin case Self.State.Kind is when Connected => return V : Connected_State_Visiters.Visiter (Self'Unchecked_Access); when Idle => return V : Idle_State_Visiters.Visiter (Self'Unchecked_Access); when Play_Radio => return V : Play_Radio_Visiters.Visiter (Self'Unchecked_Access); when Play_Files => return V : Play_Files_Visiters.Visiter (Self'Unchecked_Access); end case; end Get_Visiter; V : Slim.Message_Visiters.Visiter'Class := Get_Visiter; begin if Self.State.Kind /= Connected and then Ada.Calendar.Clock - Self.Ping > 5.0 then Send_Hearbeat (Self); end if; declare Message : Slim.Messages.Message_Access; begin Read_Message (Self.Socket, Message); Message.Visit (V); Free (Message); exception when E : GNAT.Sockets.Socket_Error => case GNAT.Sockets.Resolve_Exception (E) is when GNAT.Sockets.Resource_Temporarily_Unavailable => Send_Hearbeat (Self); when others => raise; end case; end; end Process_Message; ------------------ -- Read_Message -- ------------------ procedure Read_Message (Socket : GNAT.Sockets.Socket_Type; Message : out Slim.Messages.Message_Access) is use type Ada.Streams.Stream_Element_Offset; Tag : Slim.Messages.Message_Tag; Raw_Tag : Ada.Streams.Stream_Element_Array (1 .. 4) with Address => Tag'Address; Word : Ada.Streams.Stream_Element_Array (1 .. 4); Length : Ada.Streams.Stream_Element_Offset := 0; Last : Ada.Streams.Stream_Element_Offset; Data : aliased League.Stream_Element_Vectors.Stream_Element_Vector; Decoder : Slim.Message_Decoders.Decoder; begin GNAT.Sockets.Receive_Socket (Socket, Raw_Tag, Last); if Last = 0 then -- Timeout return; end if; pragma Assert (Last = Raw_Tag'Length); GNAT.Sockets.Receive_Socket (Socket, Word, Last); pragma Assert (Last = Word'Length); for Byte of Word loop Length := Length * 256 + Ada.Streams.Stream_Element_Offset (Byte); end loop; while Length > 0 loop declare Piece : constant Ada.Streams.Stream_Element_Offset := Ada.Streams.Stream_Element_Offset'Min (Length, 256); Input : Ada.Streams.Stream_Element_Array (1 .. Piece); begin GNAT.Sockets.Receive_Socket (Socket, Input, Last); pragma Assert (Last = Input'Length); Data.Append (Input); Length := Length - Last; end; end loop; Decoder.Decode (Tag, Data'Unchecked_Access, Message); end Read_Message; ----------------- -- Read_Splash -- ----------------- procedure Read_Splash (Splash : out League.Stream_Element_Vectors.Stream_Element_Vector; File : League.Strings.Universal_String) is Size : constant := 32 * 160 / 8; Data : Ada.Streams.Stream_Element_Array (1 .. Size); Last : Ada.Streams.Stream_Element_Offset; Input : Ada.Streams.Stream_IO.File_Type; begin Ada.Streams.Stream_IO.Open (Input, Mode => Ada.Streams.Stream_IO.In_File, Name => File.To_UTF_8_String); Ada.Streams.Stream_IO.Read (Input, Data, Last); pragma Assert (Last in Data'Last); Ada.Streams.Stream_IO.Close (Input); Splash.Clear; Splash.Append (Data); end Read_Splash; ----------------------- -- Request_Next_File -- ----------------------- procedure Request_Next_File (Self : in out Player'Class) is use type League.Strings.Universal_String; Item : constant Song := Self.State.Playlist (Self.State.Index); File : constant League.Strings.Universal_String := Item.File; Strm : Slim.Messages.strm.Strm_Message; Request : League.String_Vectors.Universal_String_Vector; Line : League.Strings.Universal_String; begin Line.Append ("GET /Music/"); Line.Append (File); Line.Append (" HTTP/1.0"); Ada.Wide_Wide_Text_IO.Put_Line (Line.To_Wide_Wide_String); Request.Append (Line); if Self.State.Offset > 0 then Line.Clear; Line.Append ("Range: "); Line.Append (Seconds_To_Bytes (Self.State.Root & File, Self.State.Offset)); Request.Append (Line); Ada.Wide_Wide_Text_IO.Put_Line (Line.To_Wide_Wide_String); end if; Request.Append (+""); Request.Append (+""); Strm.Start (Server => (GNAT.Sockets.Family_Inet, GNAT.Sockets.Inet_Addr ("0.0.0.0"), Port => 8080), Request => Request); Write_Message (Self.Socket, Strm); Self.State.Play_State.Current_Song := Item.Title; end Request_Next_File; ------------------- -- Save_Position -- ------------------- procedure Save_Position (Self : in out Player'Class) is use type League.Strings.Universal_String; Setting : League.Settings.Settings; Value : League.Strings.Universal_String; Skip : constant Natural := Self.State.Offset + Self.State.Play_State.Seconds; begin if Self.State.Kind /= Play_Files or else Self.State.M3U_Name.Is_Empty then return; end if; Value.Append (Integer'Wide_Wide_Image (Self.State.Index)); Value := Value.Tail_From (2); Setting.Set_Value ("Pause/Index." & Self.State.M3U_Name, League.Holders.To_Holder (Value)); Value.Clear; Value.Append (Integer'Wide_Wide_Image (Skip)); Value := Value.Tail_From (2); Setting.Set_Value ("Pause/Skip." & Self.State.M3U_Name, League.Holders.To_Holder (Value)); end Save_Position; ---------------------- -- Seconds_To_Bytes -- ---------------------- function Seconds_To_Bytes (File : League.Strings.Universal_String; Skip : Positive) return League.Strings.Universal_String is procedure Read_ID3 (Input : in out Ada.Streams.Stream_IO.File_Type); -- Skip ID3 header if any procedure Read_MP3_Header (Input : in out Ada.Streams.Stream_IO.File_Type; Bit_Rate : out Ada.Streams.Stream_Element_Count); function Image (Value : Ada.Streams.Stream_Element_Count) return Wide_Wide_String; ----------- -- Image -- ----------- function Image (Value : Ada.Streams.Stream_Element_Count) return Wide_Wide_String is Img : constant Wide_Wide_String := Ada.Streams.Stream_Element_Count'Wide_Wide_Image (Value); begin return Img (2 .. Img'Last); end Image; -------------- -- Read_ID3 -- -------------- procedure Read_ID3 (Input : in out Ada.Streams.Stream_IO.File_Type) is use type Ada.Streams.Stream_Element; use type Ada.Streams.Stream_Element_Count; use type Ada.Streams.Stream_IO.Count; Index : constant Ada.Streams.Stream_IO.Positive_Count := Ada.Streams.Stream_IO.Index (Input); Data : Ada.Streams.Stream_Element_Array (1 .. 10); Last : Ada.Streams.Stream_Element_Count; Skip : Ada.Streams.Stream_IO.Count := 0; begin Ada.Streams.Stream_IO.Read (Input, Data, Last); if Last = Data'Last and then Data (1) = Character'Pos ('I') and then Data (2) = Character'Pos ('D') and then Data (3) = Character'Pos ('3') then for J of Data (7 .. 10) loop Skip := Skip * 128 + Ada.Streams.Stream_IO.Count (J); end loop; Ada.Streams.Stream_IO.Set_Index (Input, Index + Data'Length + Skip); else Ada.Streams.Stream_IO.Set_Index (Input, Index); end if; end Read_ID3; --------------------- -- Read_MP3_Header -- --------------------- procedure Read_MP3_Header (Input : in out Ada.Streams.Stream_IO.File_Type; Bit_Rate : out Ada.Streams.Stream_Element_Count) is use type Interfaces.Unsigned_16; use type Ada.Streams.Stream_IO.Count; type MPEG_Version is (MPEG_2_5, Wrong, MPEG_2, MPEG_1); pragma Unreferenced (Wrong); for MPEG_Version use (0, 1, 2, 3); type MPEG_Layer is (Wrong, Layer_III, Layer_II, Layer_I); pragma Unreferenced (Wrong); for MPEG_Layer use (0, 1, 2, 3); type MPEG_Mode is (Stereo, Joint_Stereo, Dual_Channel, Mono); pragma Unreferenced (Stereo, Joint_Stereo, Dual_Channel, Mono); for MPEG_Mode use (0, 1, 2, 3); type MP3_Header is record Sync_Word : Interfaces.Unsigned_16 range 0 .. 2 ** 11 - 1; Version : MPEG_Version; Layer : MPEG_Layer; Protection : Boolean; Bit_Rate : Interfaces.Unsigned_8 range 0 .. 15; Frequency : Interfaces.Unsigned_8 range 0 .. 3; Padding : Boolean; Is_Private : Boolean; Mode : MPEG_Mode; Extension : Interfaces.Unsigned_8 range 0 .. 3; Copy : Boolean; Original : Boolean; Emphasis : Interfaces.Unsigned_8 range 0 .. 3; end record; for MP3_Header'Object_Size use 32; for MP3_Header'Bit_Order use System.High_Order_First; for MP3_Header use record Sync_Word at 0 range 0 .. 10; Version at 0 range 11 .. 12; Layer at 0 range 13 .. 14; Protection at 0 range 15 .. 15; Bit_Rate at 0 range 16 .. 19; Frequency at 0 range 20 .. 21; Padding at 0 range 22 .. 22; Is_Private at 0 range 23 .. 23; Mode at 0 range 24 .. 25; Extension at 0 range 26 .. 27; Copy at 0 range 28 .. 28; Original at 0 range 29 .. 29; Emphasis at 0 range 30 .. 31; end record; procedure Read_Header (Header : out MP3_Header); MPEG_1_Bit_Rate : constant array (MPEG_Layer range Layer_III .. Layer_I, Interfaces.Unsigned_8 range 1 .. 14) of Ada.Streams.Stream_Element_Count := (Layer_I => (32_000, 64_000, 96_000, 128_000, 160_000, 192_000, 224_000, 256_000, 288_000, 320_000, 352_000, 384_000, 416_000, 448_000), Layer_II => (32_000, 48_000, 56_000, 64_000, 80_000, 96_000, 112_000, 128_000, 160_000, 192_000, 224_000, 256_000, 320_000, 384_000), Layer_III => (32_000, 40_000, 48_000, 56_000, 64_000, 80_000, 96_000, 112_000, 128_000, 160_000, 192_000, 224_000, 256_000, 320_000)); MPEG_2_Bit_Rate : constant array (MPEG_Layer range Layer_II .. Layer_I, Interfaces.Unsigned_8 range 1 .. 14) of Ada.Streams.Stream_Element_Count := (Layer_I => (32_000, 48_000, 56_000, 64_000, 80_000, 96_000, 112_000, 128_000, 144_000, 160_000, 176_000, 192_000, 224_000, 256_000), Layer_II => (8_000, 16_000, 24_000, 32_000, 40_000, 48_000, 56_000, 64_000, 80_000, 96_000, 112_000, 128_000, 144_000, 160_000)); ----------------- -- Read_Header -- ----------------- procedure Read_Header (Header : out MP3_Header) is use type System.Bit_Order; Stream : constant Ada.Streams.Stream_IO.Stream_Access := Ada.Streams.Stream_IO.Stream (Input); Data : Ada.Streams.Stream_Element_Array (1 .. 4) with Import, Address => Header'Address; begin if MP3_Header'Bit_Order = System.Default_Bit_Order then Ada.Streams.Stream_Element_Array'Read (Stream, Data); else for X of reverse Data loop Ada.Streams.Stream_Element'Read (Stream, X); end loop; end if; end Read_Header; Header : MP3_Header := (Sync_Word => 0, others => <>); begin while not Ada.Streams.Stream_IO.End_Of_File (Input) loop Read_Header (Header); exit when Header.Sync_Word = 16#7FF#; Ada.Streams.Stream_IO.Set_Index (Input, Ada.Streams.Stream_IO.Index (Input) - 3); end loop; if Header.Sync_Word /= 16#7FF# then Bit_Rate := 0; elsif Header.Version = MPEG_1 and Header.Layer in MPEG_1_Bit_Rate'Range (1) and Header.Bit_Rate in MPEG_1_Bit_Rate'Range (2) then Bit_Rate := MPEG_1_Bit_Rate (Header.Layer, Header.Bit_Rate); elsif Header.Version in MPEG_2 .. MPEG_2_5 and Header.Layer in Layer_III .. Layer_I and Header.Bit_Rate in MPEG_2_Bit_Rate'Range (2) then Bit_Rate := MPEG_2_Bit_Rate (MPEG_Layer'Max (Header.Layer, Layer_II), Header.Bit_Rate); else Bit_Rate := 0; end if; end Read_MP3_Header; use type Ada.Streams.Stream_Element_Count; Input : Ada.Streams.Stream_IO.File_Type; Bit_Rate : Ada.Streams.Stream_Element_Count; Offset : Ada.Streams.Stream_Element_Count; Result : League.Strings.Universal_String; begin Ada.Streams.Stream_IO.Open (Input, Ada.Streams.Stream_IO.In_File, File.To_UTF_8_String); Read_ID3 (Input); Read_MP3_Header (Input, Bit_Rate); Offset := Bit_Rate * Ada.Streams.Stream_Element_Count (Skip) / 8; Result.Append ("bytes="); Result.Append (Image (Offset)); Result.Append ("-"); Ada.Streams.Stream_IO.Close (Input); return Result; end Seconds_To_Bytes; ------------------- -- Send_Hearbeat -- ------------------- procedure Send_Hearbeat (Self : in out Player'Class) is strm : Slim.Messages.strm.Strm_Message; begin strm.Simple_Command (Command => Slim.Messages.strm.Status); Write_Message (Self.Socket, strm); Self.Ping := Ada.Calendar.Clock; end Send_Hearbeat; ---------- -- Stop -- ---------- procedure Stop (Self : in out Player'Class) is use type Ada.Calendar.Time; Strm : Slim.Messages.strm.Strm_Message; begin if Self.State.Kind in Play_Radio | Play_Files then Strm.Simple_Command (Slim.Messages.strm.Stop); Write_Message (Self.Socket, Strm); Self.State := (Idle, Ada.Calendar.Clock - 60.0, Self.First_Menu); Self.Send_Hearbeat; -- A reply to this will update display end if; end Stop; ------------ -- Volume -- ------------ procedure Volume (Self : in out Player'Class; Value : Natural) is Audg : Slim.Messages.audg.Audg_Message; begin if Self.State.Kind in Play_Radio | Play_Files then Self.State.Play_State.Volume := Value; Self.State.Play_State.Volume_Set_Time := Ada.Calendar.Clock; end if; Audg.Set_Volume (Value); Write_Message (Self.Socket, Audg); end Volume; ------------------- -- Write_Message -- ------------------- procedure Write_Message (Socket : GNAT.Sockets.Socket_Type; Message : Slim.Messages.Message'Class) is use type Ada.Streams.Stream_Element_Offset; use type Ada.Streams.Stream_Element_Array; Data : League.Stream_Element_Vectors.Stream_Element_Vector; Tag : Slim.Messages.Message_Tag; Raw_Tag : Ada.Streams.Stream_Element_Array (1 .. 4) with Address => Tag'Address; Word : Ada.Streams.Stream_Element_Array (1 .. 2); Length : Ada.Streams.Stream_Element_Offset; Last : Ada.Streams.Stream_Element_Offset; begin Message.Write (Tag, Data); Length := Raw_Tag'Length + Data.Length; Word (1) := Ada.Streams.Stream_Element (Length / Ada.Streams.Stream_Element'Modulus); Word (2) := Ada.Streams.Stream_Element (Length mod Ada.Streams.Stream_Element'Modulus); GNAT.Sockets.Send_Socket (Socket, Word & Raw_Tag & Data.To_Stream_Element_Array, Last); pragma Assert (Last = Length + Word'Length); end Write_Message; end Slim.Players;
with System; use System; package Types is type UByte is new Natural range 0 .. 255 with Size => 8; type UByte_Array is array (Positive range <>) of UByte; type Day is (Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday); type Hour is new Integer range 0 .. 23; type Minute is new Integer range 0 .. 59; type Velocity is new Integer range -500 .. 500 with Size => 16; type Velocity_Container is record Value : Velocity; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Radius is new Integer range -32768 .. 32767 with Static_Predicate => Radius in -2000 .. 2000 | -32768 | 32767, Size => 16; type Radius_Container is record Value : Radius; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Distance is new Integer range -32768 .. 32767 with Size => 16; type Distance_Container is record Value : Distance; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Voltage is new Natural range 0 .. 65535 with Size => 16; type Voltage_Container is record Value : Voltage; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Current is new Integer range -32768 .. 32767 with Size => 16; type Current_Container is record Value : Current; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Temperature is new Integer range -128 .. 127 with Size => 8; type Charge is new Natural range 0 .. 65535 with Size => 16; type Charge_Container is record Value : Charge; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Sensor_Wall_Signal is new Natural range 0 .. 1023 with Size => 16; type Sensor_Wall_Signal_Container is record Value : Sensor_Wall_Signal; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Sensor_Cliff_Signal is new Natural range 0 .. 4095 with Size => 16; type Sensor_Cliff_Signal_Container is record Value : Sensor_Cliff_Signal; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Sensor_Song_Number is new Natural range 0 .. 15 with Size => 8; type Encoder_Counts is new Integer range -32768 .. 32767 with Size => 16; type Encoder_Counts_Container is record Value : Encoder_Counts; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Light_Bump_Signal is new Natural range 0 .. 4095 with Size => 16; type Light_Bump_Signal_Container is record Value : Light_Bump_Signal; end record with Scalar_Storage_Order => High_Order_First, Bit_Order => High_Order_First; type Sensor_Bumps_And_Wheel_Drops is record Bump_Right : Boolean; Bump_Left : Boolean; Wheel_Drop_Right : Boolean; Wheel_Drop_Left : Boolean; end record with Size => 8; for Sensor_Bumps_And_Wheel_Drops use record Bump_Right at 0 range 0 .. 0; Bump_Left at 0 range 1 .. 1; Wheel_Drop_Right at 0 range 2 .. 2; Wheel_Drop_Left at 0 range 3 .. 3; end record; type Sensor_Wheel_Overcurrents is record Side_Brush_OC : Boolean; Main_Brush_OC : Boolean; Right_Wheel_OC : Boolean; Left_Wheel_OC : Boolean; end record with Size => 8; for Sensor_Wheel_Overcurrents use record Side_Brush_OC at 0 range 0 .. 0; Main_Brush_OC at 0 range 2 .. 2; Right_Wheel_OC at 0 range 3 .. 3; Left_Wheel_OC at 0 range 4 .. 4; end record; type Sensor_Buttons is record Clean_But : Boolean; Spot_But : Boolean; Dock_But : Boolean; Minute_But : Boolean; Hour_But : Boolean; Day_But : Boolean; Schedule_But : Boolean; Clock_But : Boolean; end record with Size => 8; for Sensor_Buttons use record Clean_But at 0 range 0 .. 0; Spot_But at 0 range 1 .. 1; Dock_But at 0 range 2 .. 2; Minute_But at 0 range 3 .. 3; Hour_But at 0 range 4 .. 4; Day_But at 0 range 5 .. 5; Schedule_But at 0 range 6 .. 6; Clock_But at 0 range 7 .. 7; end record; type Sensors_Charging_State is (Not_Charging, Reconditiong_Charging, Full_Charging, Trickle_Charging, Waiting, Charging_Fault_Condition) with Size => 8; type Sensor_Charging_Sources_Available is record Internal_Charger : Boolean; Home_Base : Boolean; end record with Size => 8; for Sensor_Charging_Sources_Available use record Internal_Charger at 0 range 0 .. 0; Home_Base at 0 range 1 .. 1; end record; type Sensor_OI_Mode is (Off, Passive, Safe, Full) with Size => 8; type Sensor_Light_Bumper is record LT_Bump_Left : Boolean; LT_Bump_Front_Left : Boolean; LT_Bump_Center_Left : Boolean; LT_Bump_Center_Right : Boolean; LT_Bump_Front_Right : Boolean; LT_Bump_Right : Boolean; end record with Size => 8; for Sensor_Light_Bumper use record LT_Bump_Left at 0 range 0 .. 0; LT_Bump_Front_Left at 0 range 1 .. 1; LT_Bump_Center_Left at 0 range 2 .. 2; LT_Bump_Center_Right at 0 range 3 .. 3; LT_Bump_Front_Right at 0 range 4 .. 4; LT_Bump_Right at 0 range 5 .. 5; end record; type Sensor_Stasis is record Stasis_Toggling : Boolean; Stasis_Disabled : Boolean; end record with Size => 8; for Sensor_Stasis use record Stasis_Toggling at 0 range 0 .. 0; Stasis_Disabled at 0 range 1 .. 1; end record; type Sensor_Collection is record Bumps_And_Wheel_Drops : Sensor_Bumps_And_Wheel_Drops; Wall : Boolean; Cliff_Left : Boolean; Cliff_Front_Left : Boolean; Cliff_Front_Right : Boolean; Cliff_Right : Boolean; Virtual_Wall : Boolean; Wheel_Overcurrents : Sensor_Wheel_Overcurrents; Dirt_Detect : UByte; Unused1 : UByte; IR_Char_Omni : Character; Buttons : Sensor_Buttons; Dis : Distance_Container; Ang : Radius_Container; Charging_State : Sensors_Charging_State; Volt : Voltage_Container; Cur : Current_Container; Temp : Temperature; Batt_Charge : Charge_Container; Batt_Cap : Charge_Container; Wall_Sig : Sensor_Wall_Signal_Container; Cliff_Left_Sig : Sensor_Cliff_Signal_Container; Cliff_Front_Left_Sig : Sensor_Cliff_Signal_Container; Cliff_Front_Right_Sig : Sensor_Cliff_Signal_Container; Cliff_Right_Sig : Sensor_Cliff_Signal_Container; Unused2 : UByte_Array (1 .. 3); Charging_Sources_Available : Sensor_Charging_Sources_Available; OI_Mode : Sensor_OI_Mode; Song_Number : Sensor_Song_Number; Song_Playing : Boolean; Number_Of_Stream_Packets : UByte; Requested_Velocity : Velocity_Container; Requested_Radius : Radius_Container; Requested_Right_Velocity : Velocity_Container; Requested_Left_Velocity : Velocity_Container; Left_Encoder_Counts : Encoder_Counts_Container; Right_Encoder_Counts : Encoder_Counts_Container; Light_Bumper : Sensor_Light_Bumper; Light_Bump_Left_Signal : Light_Bump_Signal_Container; Light_Bump_Front_Left_Signal : Light_Bump_Signal_Container; Light_Bump_Center_Left_Signal : Light_Bump_Signal_Container; Light_Bump_Center_Right_Signal : Light_Bump_Signal_Container; Light_Bump_Front_Right_Signal : Light_Bump_Signal_Container; Light_Bump_Right_Signal : Light_Bump_Signal_Container; IR_Character_Left : Character; IR_Character_Right : Character; Left_Motor_Current : Current_Container; Right_Motor_Current : Current_Container; Main_Motor_Current : Current_Container; Side_Brush_Motor_Current : Current_Container; Stasis : Sensor_Stasis; end record with Alignment => 1; for Sensor_Collection use record Bumps_And_Wheel_Drops at 0 range 0 .. 7; Wall at 1 range 0 .. 7; Cliff_Left at 2 range 0 .. 7; Cliff_Front_Left at 3 range 0 .. 7; Cliff_Front_Right at 4 range 0 .. 7; Cliff_Right at 5 range 0 .. 7; Virtual_Wall at 6 range 0 .. 7; Wheel_Overcurrents at 7 range 0 .. 7; Dirt_Detect at 8 range 0 .. 7; Unused1 at 9 range 0 .. 7; IR_Char_Omni at 10 range 0 .. 7; Buttons at 11 range 0 .. 7; Dis at 12 range 0 .. 15; Ang at 14 range 0 .. 15; Charging_State at 16 range 0 .. 7; Volt at 17 range 0 .. 15; Cur at 19 range 0 .. 15; Temp at 21 range 0 .. 7; Batt_Charge at 22 range 0 .. 15; Batt_Cap at 24 range 0 .. 15; Wall_Sig at 26 range 0 .. 15; Cliff_Left_Sig at 28 range 0 .. 15; Cliff_Front_Left_Sig at 30 range 0 .. 15; Cliff_Front_Right_Sig at 32 range 0 .. 15; Cliff_Right_Sig at 34 range 0 .. 15; Unused2 at 36 range 0 .. 23; Charging_Sources_Available at 39 range 0 .. 7; OI_Mode at 40 range 0 .. 7; Song_Number at 41 range 0 .. 7; Song_Playing at 42 range 0 .. 7; Number_Of_Stream_Packets at 43 range 0 .. 7; Requested_Velocity at 44 range 0 .. 15; Requested_Radius at 46 range 0 .. 15; Requested_Right_Velocity at 48 range 0 .. 15; Requested_Left_Velocity at 50 range 0 .. 15; Left_Encoder_Counts at 52 range 0 .. 15; Right_Encoder_Counts at 54 range 0 .. 15; Light_Bumper at 56 range 0 .. 7; Light_Bump_Left_Signal at 57 range 0 .. 15; Light_Bump_Front_Left_Signal at 59 range 0 .. 15; Light_Bump_Center_Left_Signal at 61 range 0 .. 15; Light_Bump_Center_Right_Signal at 63 range 0 .. 15; Light_Bump_Front_Right_Signal at 65 range 0 .. 15; Light_Bump_Right_Signal at 67 range 0 .. 15; IR_Character_Left at 69 range 0 .. 7; IR_Character_Right at 70 range 0 .. 7; Left_Motor_Current at 71 range 0 .. 15; Right_Motor_Current at 73 range 0 .. 15; Main_Motor_Current at 75 range 0 .. 15; Side_Brush_Motor_Current at 77 range 0 .. 15; Stasis at 79 range 0 .. 7; end record; type Hour_Min is record Hr : Hour; Min : Minute; end record; for Hour_Min use record Hr at 0 range 0 .. 7; Min at 1 range 0 .. 7; end record; type Hour_Min_List is array (Day) of Hour_Min with Pack; type Opcode is (Reset, Start, Baud, Mode_Safe, Mode_Full, Power, Spot_Clean, Clean, Max_Clean, Drive, Motors, LEDs, Song, Play, Sensors_Single, Seek_Dock, PWM_Motors, Drive_Direct, Drive_PWM, Sensors_Stream, Sensors_List, Pause_Resume_Stream, Scheduling_LEDs, Digital_LEDs_Raw, Digital_LEDs_ASCII, Buttons, Schedule, Set_Day_Time, Stop); -- Representation clause for Opcode use (Reset => 7, Start => 128, Baud => 129, Mode_Safe => 131, Mode_Full => 132, Power => 133, Spot_Clean => 134, Clean => 135, Max_Clean => 136, Drive => 137, Motors => 138, LEDs => 139, Song => 140, Play => 141, Sensors_Single => 142, Seek_Dock => 143, PWM_Motors => 144, Drive_Direct => 145, Drive_PWM => 146, Sensors_Stream => 148, Sensors_List => 149, Pause_Resume_Stream => 150, Scheduling_LEDs => 162, Digital_LEDs_Raw => 163, Digital_LEDs_ASCII => 164, Buttons => 165, Schedule => 167, Set_Day_Time => 168, Stop => 173); type Midi_Note is new Integer range 0 .. 127 with Static_Predicate => Midi_Note in 0 | 31 .. 127, Size => 8; type Midi_Tone is record Note : Midi_Note; Duration : Integer range 0 .. 255; end record; for Midi_Tone use record Note at 1 range 0 .. 7; Duration at 2 range 0 .. 7; end record; type Midi_Song is array (Integer range 1 .. 16) of Midi_Tone with Pack; type Sensor_Packets is (Bumps_And_Wheel_Drops, Wall, Cliff_Left, Cliff_Front_Left, Cliff_Front_Right, Cliff_Right, Virtual_Wall, Wheel_Overcurrent, Dirt_Detect, IR_Char_Omni, Buttons, Distance_Sensor, Ang, Charging_State, Voltage_Sensor, Current_Sensor, Temperature_Sensor, Battery_Charge, Battery_Capacity, Wall_Signal, Cliff_Left_Signal, Cliff_Front_Left_Signal, Cliff_Front_Right_Signal, Cliff_Right_Signal, Charging_Sources_Avail, OI_Mode, Song_Number, Song_Playing, Number_Stream_Packets, Req_Velocity, Req_Radius, Req_Right_Velocity, Req_Left_Velocity, Left_Encoder_Counts, Right_Encoder_Counts, Light_Bumper, Light_Bump_Left_Signal, Light_Bump_Front_Left_Signal, Light_Bump_Center_Left_Signal, Light_Bump_Center_Right_Signal, Light_Bump_Front_Right_Signal, Light_Bump_Right_Signal, IR_Char_Left, IR_Char_Right, Left_Motor_Current, Right_Motor_Current, Main_Brush_Motor_Current, Side_Brush_Motor_Current, Stasis); for Sensor_Packets use (Bumps_And_Wheel_Drops => 7, Wall => 8, Cliff_Left => 9, Cliff_Front_Left => 10, Cliff_Front_Right => 11, Cliff_Right => 12, Virtual_Wall => 13, Wheel_Overcurrent => 14, Dirt_Detect => 15, IR_Char_Omni => 17, Buttons => 18, Distance_Sensor => 19, Ang => 20, Charging_State => 21, Voltage_Sensor => 22, Current_Sensor => 23, Temperature_Sensor => 24, Battery_Charge => 25, Battery_Capacity => 26, Wall_Signal => 27, Cliff_Left_Signal => 28, Cliff_Front_Left_Signal => 29, Cliff_Front_Right_Signal => 30, Cliff_Right_Signal => 31, Charging_Sources_Avail => 34, OI_Mode => 35, Song_Number => 36, Song_Playing => 37, Number_Stream_Packets => 38, Req_Velocity => 39, Req_Radius => 40, Req_Right_Velocity => 41, Req_Left_Velocity => 42, Left_Encoder_Counts => 43, Right_Encoder_Counts => 44, Light_Bumper => 45, Light_Bump_Left_Signal => 46, Light_Bump_Front_Left_Signal => 47, Light_Bump_Center_Left_Signal => 48, Light_Bump_Center_Right_Signal => 49, Light_Bump_Front_Right_Signal => 50, Light_Bump_Right_Signal => 51, IR_Char_Left => 52, IR_Char_Right => 53, Left_Motor_Current => 54, Right_Motor_Current => 55, Main_Brush_Motor_Current => 56, Side_Brush_Motor_Current => 57, Stasis => 58); type Baud_Code is (B300, B600, B1200, B2400, B4800, B9600, B19200, B38400, B57600, B115200); type Comm_Rec (Op : Opcode) is record case Op is when Baud => Baud_Rate : Integer range 0 .. 11; when Drive => Vel : Velocity_Container; Rad : Radius_Container; when Motors => Side_Brush : Boolean; Vacuum : Boolean; Main_Brush : Boolean; Side_Brush_CW : Boolean; Main_Brush_Dir : Boolean; when LEDs => Debris : Boolean; Spot : Boolean; Dock : Boolean; Check_Robot : Boolean; Power_Color : Integer range 0 .. 255; Power_Intensity : Integer range 0 .. 255; when Song => Set_Song_Number : Integer range 0 .. 4; Song_Length : Integer range 1 .. 16; when Play => Play_Song_Number : Integer range 0 .. 4; when Sensors_Single => Sensor_Packet_ID : Sensor_Packets; when PWM_Motors => Main_Brush_PWM : Integer range -127 .. 127; Side_Brush_PWM : Integer range -127 .. 127; Vacuum_PWM : Integer range 0 .. 127; when Drive_Direct => Right_Velocity : Velocity_Container; Left_Velocity : Velocity_Container; when Drive_PWM => Right_PWM : Integer range -255 .. 255; Left_PWM : Integer range -255 .. 255; when Sensors_Stream => Num_Stream_Packets : Integer range 0 .. 255; when Sensors_List => Num_Query_Packets : Integer range 0 .. 255; when Pause_Resume_Stream => Stream_State : Boolean; when Scheduling_LEDs => Sun_LED : Boolean; Mon_LED : Boolean; Tues_LED : Boolean; Wed_LED : Boolean; Thurs_LED : Boolean; Fri_LED : Boolean; Sat_LED : Boolean; Colon_LED : Boolean; PM_LED : Boolean; AM_LED : Boolean; Clock_LED : Boolean; Schedule_LED : Boolean; when Digital_LEDs_Raw => A3_Seg : Boolean; B3_Seg : Boolean; C3_Seg : Boolean; D3_Seg : Boolean; E3_Seg : Boolean; F3_Seg : Boolean; G3_Seg : Boolean; A2_Seg : Boolean; B2_Seg : Boolean; C2_Seg : Boolean; D2_Seg : Boolean; E2_Seg : Boolean; F2_Seg : Boolean; G2_Seg : Boolean; A1_Seg : Boolean; B1_Seg : Boolean; C1_Seg : Boolean; D1_Seg : Boolean; E1_Seg : Boolean; F1_Seg : Boolean; G1_Seg : Boolean; A0_Seg : Boolean; B0_Seg : Boolean; C0_Seg : Boolean; D0_Seg : Boolean; E0_Seg : Boolean; F0_Seg : Boolean; G0_Seg : Boolean; when Digital_LEDs_ASCII => Text : String (1 .. 4); when Buttons => Clean_Button : Boolean; Spot_Button : Boolean; Dock_Button : Boolean; Minute_Button : Boolean; Hour_Button : Boolean; Day_Button : Boolean; Schedule_Button : Boolean; Clock_Button : Boolean; when Schedule => Days : Integer range 0 .. 127; HM_List : Hour_Min_List; when Set_Day_Time => Dy : Integer range 0 .. 6; Hr : Hour; Min : Minute; when others => null; end case; end record with Pack, Alignment => 1; -- Representation clause for Comm_Rec use record Op at 0 range 0 .. 7; -- Baud Fields Baud_Rate at 1 range 0 .. 7; -- Motors Fields Side_Brush at 1 range 0 .. 0; Vacuum at 1 range 1 .. 1; Main_Brush at 1 range 2 .. 2; Side_Brush_CW at 1 range 3 .. 3; Main_Brush_Dir at 1 range 4 .. 4; -- LEDs Fields Debris at 1 range 0 .. 0; Spot at 1 range 1 .. 1; Dock at 1 range 2 .. 2; Check_Robot at 1 range 3 .. 3; Power_Color at 2 range 0 .. 7; Power_Intensity at 3 range 0 .. 7; -- Song Fields Set_Song_Number at 1 range 0 .. 7; Song_Length at 2 range 0 .. 7; -- Play Fields Play_Song_Number at 1 range 0 .. 7; -- Sensors Fields Sensor_Packet_ID at 1 range 0 .. 7; -- PWM Motors Fields Main_Brush_PWM at 1 range 0 .. 7; Side_Brush_PWM at 2 range 0 .. 7; Vacuum_PWM at 3 range 0 .. 7; -- Direct Drive Fields Right_Velocity at 1 range 0 .. 15; Left_Velocity at 3 range 0 .. 15; -- Drive PWM Fields Right_PWM at 1 range 0 .. 15; Left_PWM at 3 range 0 .. 15; -- Query List Fields Num_Query_Packets at 1 range 0 .. 7; -- Stream Fields Num_Stream_Packets at 1 range 0 .. 7; -- Pause Resume Stream Stream_State at 1 range 0 .. 0; -- Scheduling LEDs Sun_LED at 1 range 0 .. 0; Mon_LED at 1 range 1 .. 1; Tues_LED at 1 range 2 .. 2; Wed_LED at 1 range 3 .. 3; Thurs_LED at 1 range 4 .. 4; Fri_LED at 1 range 5 .. 5; Sat_LED at 1 range 6 .. 6; Colon_LED at 2 range 0 .. 0; PM_LED at 2 range 1 .. 1; AM_LED at 2 range 2 .. 2; Clock_LED at 2 range 3 .. 3; Schedule_LED at 2 range 4 .. 4; -- Digital LEDs Raw Fields A3_Seg at 1 range 0 .. 0; B3_Seg at 1 range 1 .. 1; C3_Seg at 1 range 2 .. 2; D3_Seg at 1 range 3 .. 3; E3_Seg at 1 range 4 .. 4; F3_Seg at 1 range 5 .. 5; G3_Seg at 1 range 6 .. 6; A2_Seg at 2 range 0 .. 0; B2_Seg at 2 range 1 .. 1; C2_Seg at 2 range 2 .. 2; D2_Seg at 2 range 3 .. 3; E2_Seg at 2 range 4 .. 4; F2_Seg at 2 range 5 .. 5; G2_Seg at 2 range 6 .. 6; A1_Seg at 3 range 0 .. 0; B1_Seg at 3 range 1 .. 1; C1_Seg at 3 range 2 .. 2; D1_Seg at 3 range 3 .. 3; E1_Seg at 3 range 4 .. 4; F1_Seg at 3 range 5 .. 5; G1_Seg at 3 range 6 .. 6; A0_Seg at 4 range 0 .. 0; B0_Seg at 4 range 1 .. 1; C0_Seg at 4 range 2 .. 2; D0_Seg at 4 range 3 .. 3; E0_Seg at 4 range 4 .. 4; F0_Seg at 4 range 5 .. 5; G0_Seg at 4 range 6 .. 6; -- Digital LEDs ASCII Fields Text at 1 range 0 .. 31; -- Button Fields Clean_Button at 1 range 0 .. 0; Spot_Button at 1 range 1 .. 1; Dock_Button at 1 range 2 .. 2; Minute_Button at 1 range 3 .. 3; Hour_Button at 1 range 4 .. 4; Day_Button at 1 range 5 .. 5; Schedule_Button at 1 range 6 .. 6; Clock_Button at 1 range 7 .. 7; -- Schedule Fields Days at 1 range 0 .. 7; HM_List at 2 range 0 .. Hour_Min_List'Length * 16 - 1; -- Set_Day_Time Fields Dy at 1 range 0 .. 7; Hr at 2 range 0 .. 7; Min at 3 range 0 .. 7; -- Drive Fields Vel at 1 range 0 .. 15; Rad at 3 range 0 .. 15; end record; end Types;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with League.Holders.Generic_Holders; package AMF.DG.Holders.Transforms is new League.Holders.Generic_Holders (AMF.DG.DG_Transform); pragma Preelaborate (AMF.DG.Holders.Transforms);
with agar.core.event; package winicon_callbacks is package gui_event renames agar.core.event; procedure quit (event : gui_event.event_access_t); pragma convention (c, quit); end winicon_callbacks;
------------------------------------------------------------------------------ -- -- -- GNAT ncurses Binding Samples -- -- -- -- Sample.Form_Demo.Handler -- -- -- -- S P E C -- -- -- ------------------------------------------------------------------------------ -- Copyright (c) 1998 Free Software Foundation, Inc. -- -- -- -- Permission is hereby granted, free of charge, to any person obtaining a -- -- copy of this software and associated documentation files (the -- -- "Software"), to deal in the Software without restriction, including -- -- without limitation the rights to use, copy, modify, merge, publish, -- -- distribute, distribute with modifications, sublicense, and/or sell -- -- copies of the Software, and to permit persons to whom the Software is -- -- furnished to do so, subject to the following conditions: -- -- -- -- The above copyright notice and this permission notice shall be included -- -- in all copies or substantial portions of the Software. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -- -- OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -- -- MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -- -- IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -- -- DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -- -- OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR -- -- THE USE OR OTHER DEALINGS IN THE SOFTWARE. -- -- -- -- Except as contained in this notice, the name(s) of the above copyright -- -- holders shall not be used in advertising or otherwise to promote the -- -- sale, use or other dealings in this Software without prior written -- -- authorization. -- ------------------------------------------------------------------------------ -- Author: Juergen Pfeifer, 1996 -- Version Control -- $Revision: 1.9 $ -- Binding Version 01.00 ------------------------------------------------------------------------------ with Terminal_Interface.Curses; use Terminal_Interface.Curses; with Terminal_Interface.Curses.Panels; use Terminal_Interface.Curses.Panels; with Terminal_Interface.Curses.Forms; use Terminal_Interface.Curses.Forms; generic with function My_Driver (Frm : Form; K : Key_Code; Pan : Panel) return Boolean; package Sample.Form_Demo.Handler is procedure Drive_Me (F : in Form; Lin : in Line_Position; Col : in Column_Position; Title : in String := ""); -- Position the menu at the given point and drive it. procedure Drive_Me (F : in Form; Title : in String := ""); -- Center menu and drive it. end Sample.Form_Demo.Handler;
-- -- echo [string ...] -- -- Write arguments to the standard output -- -- The echo utility writes any specified operands, separated by single blank -- (`` '') characters and followed by a newline (``\n'') character, to the -- standard output. -- with Ada.Command_Line; with Ada.Text_IO; use Ada; procedure Echo is begin if Command_Line.Argument_Count > 0 then Text_IO.Put (Command_Line.Argument (1)); for Arg in 2 .. Command_Line.Argument_Count loop Text_IO.Put (' '); Text_IO.Put (Command_Line.Argument (Arg)); end loop; end if; Text_IO.New_Line; end Echo;
with Ada.Text_IO; with TOML; with TOML.File_IO; procedure Main is Value : constant TOML.TOML_Value := TOML.File_IO.Load_File ("example.toml").Value; begin Value.Unset ("array"); Ada.Text_IO.Put_Line (Value.Dump_As_String); end Main;
------------------------------------------------------------------------------ -- -- -- GNAT RUNTIME COMPONENTS -- -- -- -- S Y S T E M . E X N _ G E N -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992,1993,1994,1995 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the generic functions which are instantiated with -- predefined integer and real types to generate the runtime exponentiation -- functions called by expanded code generated by Expand_Op_Expon. This -- version of the package contains routines that are compiled with overflow -- checks suppressed, so they are called for exponentiation operations which -- do not require overflow checking package System.Exn_Gen is pragma Pure (System.Exn_Gen); -- Exponentiation for float types (checks off) generic type Type_Of_Base is digits <>; function Exn_Float_Type (Left : Type_Of_Base; Right : Integer) return Type_Of_Base; -- Exponentiation for signed integer base generic type Type_Of_Base is range <>; function Exn_Integer_Type (Left : Type_Of_Base; Right : Natural) return Type_Of_Base; end System.Exn_Gen;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . E X E C U T I O N _ T I M E -- -- -- -- B o d y -- -- -- -- Copyright (C) 2007-2021, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the Bare Board version of this package with Ada.Task_Identification; use Ada.Task_Identification; with Ada.Unchecked_Conversion; with System.Tasking; with System.Task_Primitives.Operations; with System.BB.Execution_Time; with System.BB.Time; with System.BB.Threads; package body Ada.Execution_Time is package BB_Exec_Time renames System.BB.Execution_Time; function To_CPU_Time is new Ada.Unchecked_Conversion (System.BB.Time.Time, CPU_Time); -- Function to change the view from System.BB.Time.Time (unsigned 64-bit) -- to CPU_Time (unsigned 64-bit). -- -- CPU_Time is derived from Ada.Real_Time.Time which is derived from -- System.BB.Time.Time. So CPU_Time and System.BB.Time.Time are the same -- type, but Ada.Real_Time.Time is private so we don't have visibility. --------- -- "+" -- --------- function "+" (Left : CPU_Time; Right : Ada.Real_Time.Time_Span) return CPU_Time is use type Ada.Real_Time.Time; begin return CPU_Time (Ada.Real_Time.Time (Left) + Right); end "+"; function "+" (Left : Ada.Real_Time.Time_Span; Right : CPU_Time) return CPU_Time is use type Ada.Real_Time.Time; begin return CPU_Time (Left + Ada.Real_Time.Time (Right)); end "+"; --------- -- "-" -- --------- function "-" (Left : CPU_Time; Right : Ada.Real_Time.Time_Span) return CPU_Time is use type Ada.Real_Time.Time; begin return CPU_Time (Ada.Real_Time.Time (Left) - Right); end "-"; function "-" (Left : CPU_Time; Right : CPU_Time) return Ada.Real_Time.Time_Span is use type Ada.Real_Time.Time; begin return (Ada.Real_Time.Time (Left) - Ada.Real_Time.Time (Right)); end "-"; ----------- -- Clock -- ----------- function Clock (T : Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task) return CPU_Time is function To_Task_Id is new Ada.Unchecked_Conversion (Ada.Task_Identification.Task_Id, System.Tasking.Task_Id); Th : System.BB.Threads.Thread_Id; begin if T = Ada.Task_Identification.Null_Task_Id then raise Program_Error; end if; Th := System.Task_Primitives.Operations.Get_Thread_Id (To_Task_Id (T)); return To_CPU_Time (BB_Exec_Time.Thread_Clock (Th)); end Clock; ----------- -- Split -- ----------- procedure Split (T : CPU_Time; SC : out Ada.Real_Time.Seconds_Count; TS : out Ada.Real_Time.Time_Span) is begin Ada.Real_Time.Split (Ada.Real_Time.Time (T), SC, TS); end Split; ------------- -- Time_Of -- ------------- function Time_Of (SC : Ada.Real_Time.Seconds_Count; TS : Ada.Real_Time.Time_Span := Ada.Real_Time.Time_Span_Zero) return CPU_Time is begin return CPU_Time (Ada.Real_Time.Time_Of (SC, TS)); end Time_Of; -------------------------- -- Clock_For_Interrupts -- -------------------------- function Clock_For_Interrupts return CPU_Time is begin return To_CPU_Time (BB_Exec_Time.Global_Interrupt_Clock); end Clock_For_Interrupts; end Ada.Execution_Time;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . D I R E C T _ I O -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2014, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains the declaration of the control block used for -- Direct_IO. This must be declared at the outer library level. It also -- contains code that is shared between instances of Direct_IO. with Interfaces.C_Streams; with Ada.Streams; with System.File_Control_Block; with System.Storage_Elements; package System.Direct_IO is package FCB renames System.File_Control_Block; type Operation is (Op_Read, Op_Write, Op_Other); -- Type used to record last operation (to optimize sequential operations) subtype Count is Interfaces.C_Streams.int64; -- The Count type in each instantiation is derived from this type subtype Positive_Count is Count range 1 .. Count'Last; type Direct_AFCB is new FCB.AFCB with record Index : Count := 1; -- Current Index value Bytes : Interfaces.C_Streams.size_t; -- Length of item in bytes (set from inside generic template) Last_Op : Operation := Op_Other; -- Last operation performed on file, used to avoid unnecessary -- repositioning between successive read or write operations. end record; function AFCB_Allocate (Control_Block : Direct_AFCB) return FCB.AFCB_Ptr; procedure AFCB_Close (File : not null access Direct_AFCB); procedure AFCB_Free (File : not null access Direct_AFCB); procedure Read (File : in out Direct_AFCB; Item : out Ada.Streams.Stream_Element_Array; Last : out Ada.Streams.Stream_Element_Offset); -- Required overriding of Read, not actually used for Direct_IO procedure Write (File : in out Direct_AFCB; Item : Ada.Streams.Stream_Element_Array); -- Required overriding of Write, not actually used for Direct_IO type File_Type is access all Direct_AFCB; -- File_Type in individual instantiations is derived from this type procedure Create (File : in out File_Type; Mode : FCB.File_Mode := FCB.Inout_File; Name : String := ""; Form : String := ""); function End_Of_File (File : File_Type) return Boolean; function Index (File : File_Type) return Positive_Count; procedure Open (File : in out File_Type; Mode : FCB.File_Mode; Name : String; Form : String := ""); procedure Read (File : File_Type; Item : System.Address; Size : Interfaces.C_Streams.size_t; From : Positive_Count); procedure Read (File : File_Type; Item : System.Address; Size : Interfaces.C_Streams.size_t); procedure Reset (File : in out File_Type; Mode : FCB.File_Mode); procedure Reset (File : in out File_Type); procedure Set_Index (File : File_Type; To : Positive_Count); function Size (File : File_Type) return Count; procedure Write (File : File_Type; Item : System.Address; Size : Interfaces.C_Streams.size_t; Zeroes : System.Storage_Elements.Storage_Array); -- Note: Zeroes is the buffer of zeroes used to fill out partial records -- The following procedures have a File_Type formal of mode IN OUT because -- they may close the original file. The Close operation may raise an -- exception, but in that case we want any assignment to the formal to -- be effective anyway, so it must be passed by reference (or the caller -- will be left with a dangling pointer). pragma Export_Procedure (Internal => Reset, External => "", Parameter_Types => (File_Type), Mechanism => Reference); pragma Export_Procedure (Internal => Reset, External => "", Parameter_Types => (File_Type, FCB.File_Mode), Mechanism => (File => Reference)); end System.Direct_IO;
with Anagram.Grammars; with Program.Parsers.Nodes; private procedure Program.Parsers.On_Reduce_501 (Self : access Parse_Context; Prod : Anagram.Grammars.Production_Index; Nodes : in out Program.Parsers.Nodes.Node_Array); pragma Preelaborate (Program.Parsers.On_Reduce_501);
pragma License (Unrestricted); -- implementation unit specialized for POSIX (Darwin, FreeBSD, or Linux) package System.Native_Environment_Variables is pragma Preelaborate; subtype Cursor is Address; function Value (Name : String) return String; function Value (Name : String; Default : String) return String; function Exists (Name : String) return Boolean; procedure Set (Name : String; Value : String); procedure Clear (Name : String); procedure Clear; function Has_Element (Position : Cursor) return Boolean; pragma Inline (Has_Element); function Name (Position : Cursor) return String; function Value (Position : Cursor) return String; Disable_Controlled : constant Boolean := True; function Get_Block return Address is (Null_Address); procedure Release_Block (Block : Address) is null; pragma Inline (Release_Block); -- [gcc-7] can not skip calling null procedure function First (Block : Address) return Cursor; function Next (Block : Address; Position : Cursor) return Cursor; pragma Inline (First); pragma Inline (Next); end System.Native_Environment_Variables;
package Base with SPARK_Mode is type Number is array (Positive range <>) of Character; function Encode (S : String) return Number -- length of result will be longer than input, so need to guard against -- too large input. Selecting some very restricted value, we could -- probably bound this much better with Pre => S'Length < Integer'Last / 200; function Decode (N : Number) return String; end Base;
with Ada.Text_IO; use Ada.Text_IO; procedure Test is begin for I in 'a' .. 10 loop New_Line; end loop; end;
-- -- Jan & Uwe R. Zimmer, Australia, July 2011 -- with Real_Type; use Real_Type; package Quaternions is type Quaternion_Real is record w, x, y, z : Real; end record; function "abs" (Quad : Quaternion_Real) return Real; function Unit (Quad : Quaternion_Real) return Quaternion_Real; function Conj (Quad : Quaternion_Real) return Quaternion_Real; function "-" (Quad : Quaternion_Real) return Quaternion_Real; function "+" (Left, Right : Quaternion_Real) return Quaternion_Real; function "-" (Left, Right : Quaternion_Real) return Quaternion_Real; function "*" (Left, Right : Quaternion_Real) return Quaternion_Real; function "/" (Left, Right : Quaternion_Real) return Quaternion_Real; function "*" (Left : Quaternion_Real; Right : Real) return Quaternion_Real; function "/" (Left : Quaternion_Real; Right : Real) return Quaternion_Real; function "*" (Left : Real; Right : Quaternion_Real) return Quaternion_Real; function "/" (Left : Real; Right : Quaternion_Real) return Quaternion_Real; function Image (Quad : Quaternion_Real) return String; end Quaternions;
-- -- Copyright 2018 The wookey project team <wookey@ssi.gouv.fr> -- - Ryad Benadjila -- - Arnauld Michelizza -- - Mathieu Renard -- - Philippe Thierry -- - Philippe Trebuchet -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- with ewok.tasks_shared; with ewok.interrupts; with soc.interrupts; package ewok.isr with spark_mode => off is procedure postpone_isr (intr : in soc.interrupts.t_interrupt; handler : in ewok.interrupts.t_interrupt_handler_access; task_id : in ewok.tasks_shared.t_task_id); end ewok.isr;
-- C64104A.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 CONSTRAINT_ERROR IS RAISED FOR OUT OF RANGE SCALAR -- ARGUMENTS. SUBTESTS ARE: -- (A) STATIC IN ARGUMENT. -- (B) DYNAMIC IN ARGUMENT. -- (C) IN OUT, OUT OF RANGE ON CALL. -- (D) OUT, OUT OF RANGE ON RETURN. -- (E) IN OUT, OUT OF RANGE ON RETURN. -- HISTORY: -- DAS 01/14/81 -- CPP 07/03/84 -- LB 11/20/86 ADDED CODE TO ENSURE IN SUBTESTS WHICH CHECK -- RETURNED VALUES, THAT SUBPROGRAMS ARE ACTUALLY -- CALLED. -- JET 08/04/87 FIXED HEADER FOR STANDARD FORMAT. WITH REPORT; USE REPORT; PROCEDURE C64104A IS SUBTYPE DIGIT IS INTEGER RANGE 0..9; CALLED : BOOLEAN; D : DIGIT; I : INTEGER; M1 : CONSTANT INTEGER := IDENT_INT(-1); COUNT : INTEGER := 0; SUBTYPE SI IS INTEGER RANGE M1 .. 10; PROCEDURE P1 (PIN : IN DIGIT; WHO : STRING) IS -- (A), (B) BEGIN FAILED ("EXCEPTION NOT RAISED BEFORE CALL - P1 " & WHO); EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED IN P1 FOR " & WHO); END P1; PROCEDURE P2 (PINOUT : IN OUT DIGIT; WHO : STRING) IS -- (C) BEGIN FAILED ("EXCEPTION NOT RAISED BEFORE CALL - P2 " & WHO); EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED IN P2 FOR " & WHO); END P2; PROCEDURE P3 (POUT : OUT SI; WHO : STRING) IS -- (D) BEGIN IF WHO = "10" THEN POUT := IDENT_INT(10); -- (10 IS NOT A DIGIT) ELSE POUT := -1; END IF; CALLED := TRUE; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED IN P3 FOR " & WHO); END P3; PROCEDURE P4 (PINOUT : IN OUT INTEGER; WHO : STRING) IS -- (E) BEGIN IF WHO = "10" THEN PINOUT := 10; -- (10 IS NOT A DIGIT) ELSE PINOUT := IDENT_INT(-1); END IF; CALLED := TRUE; EXCEPTION WHEN OTHERS => FAILED ("EXCEPTION RAISED IN P4 FOR" & WHO); END P4; BEGIN TEST ("C64104A", "CHECK THAT CONSTRAINT_ERROR IS RAISED " & "FOR OUT OF RANGE SCALAR ARGUMENTS"); BEGIN -- (A) P1 (10, "10"); FAILED ("CONSTRAINT_ERROR NOT RAISED FOR P1 (10)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P1 (10)"); END; -- (A) BEGIN -- (B) P1 (IDENT_INT (-1), "-1"); FAILED ("CONSTRAINT_ERROR NOT RAISED FOR P1 (" & "IDENT_INT (-1))"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P1 (" & "IDENT_INT (-1))"); END; --(B) BEGIN -- (C) I := IDENT_INT (10); P2 (I, "10"); FAILED ("CONSTRAINT_ERROR NOT RAISED FOR P2 (10)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P2 (10)"); END; -- (C) BEGIN -- (C1) I := IDENT_INT (-1); P2 (I, "-1"); FAILED ("CONSTRAINT_ERROR NOT RAISED FOR P2 (-1)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P2 (-1)"); END; -- (C1) BEGIN -- (D) CALLED := FALSE; D := IDENT_INT (1); P3 (D, "10"); FAILED ("CONSTRAINT_ERROR NOT RAISED ON RETURN FROM" & " P3 (10)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; IF NOT CALLED THEN FAILED ("SUBPROGRAM P3 WAS NOT CALLED"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P3 (10)"); END; -- (D) BEGIN -- (D1) CALLED := FALSE; D := IDENT_INT (1); P3 (D, "-1"); FAILED ("CONSTRAINT_ERROR NOT RAISED ON RETURN FROM" & " P3 (-1)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; IF NOT CALLED THEN FAILED ("SUBPROGRAM P3 WAS NOT CALLED"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P3 (-1)"); END; -- (D1) BEGIN -- (E) CALLED := FALSE; D := 9; P4 (D, "10"); FAILED ("CONSTRAINT_ERROR NOT RAISED ON RETURN FROM" & " P4 (10)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; IF NOT CALLED THEN FAILED ("SUBPROGRAM P4 WAS NOT CALLED"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P4 (10)"); END; -- (E) BEGIN -- (E1) CALLED := FALSE; D := 0; P4 (D, "-1"); FAILED ("CONSTRAINT_ERROR NOT RAISED ON RETURN FROM" & " P4 (-1)"); EXCEPTION WHEN CONSTRAINT_ERROR => COUNT := COUNT + 1; IF NOT CALLED THEN FAILED ("SUBPROGRAM P4 WAS NOT CALLED"); END IF; WHEN OTHERS => FAILED ("WRONG EXCEPTION RAISED FOR P4 (-1)"); END; -- (E1) IF (COUNT /= 8) THEN FAILED ("INCORRECT NUMBER OF CONSTRAINT_ERRORS RAISED"); END IF; RESULT; END C64104A;
----------------------------------------------------------------------- -- keystore-logs -- Log support for the keystore -- Copyright (C) 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.Encoders.Base16; with Keystore.Buffers; package body Keystore.Logs is procedure Dump (Log : in Util.Log.Loggers.Logger; Content : in Ada.Streams.Stream_Element_Array) is use type Ada.Streams.Stream_Element_Offset; begin if Log.Get_Level >= Util.Log.DEBUG_LEVEL then declare Encoder : Util.Encoders.Base16.Encoder; Start : Ada.Streams.Stream_Element_Offset := Content'First; Last : Ada.Streams.Stream_Element_Offset; begin while Start <= Content'Last loop Last := Start + 31; if Last > Content'Last then Last := Content'Last; end if; Log.Debug (" {0}", Encoder.Transform (Content (Start .. Last))); Start := Last + 1; end loop; end; end if; end Dump; procedure Error (Log : in Util.Log.Loggers.Logger; Message : in String; Block : in IO.Storage_Block) is begin if Log.Get_Level >= Util.Log.ERROR_LEVEL then Log.Error (Message, Buffers.To_String (Block)); end if; end Error; procedure Warn (Log : in Util.Log.Loggers.Logger; Message : in String; Block : in IO.Storage_Block) is begin if Log.Get_Level >= Util.Log.WARN_LEVEL then Log.Warn (Message, Buffers.To_String (Block)); end if; end Warn; procedure Info (Log : in Util.Log.Loggers.Logger; Message : in String; Block : in IO.Storage_Block) is begin if Log.Get_Level >= Util.Log.INFO_LEVEL then Log.Info (Message, Buffers.To_String (Block)); end if; end Info; procedure Debug (Log : in Util.Log.Loggers.Logger; Message : in String; Block : in IO.Storage_Block) is begin if Log.Get_Level >= Util.Log.DEBUG_LEVEL then Log.Debug (Message, Buffers.To_String (Block)); end if; end Debug; procedure Debug (Log : in Util.Log.Loggers.Logger; Message : in String; Block1 : in IO.Storage_Block; Block2 : in IO.Storage_Block) is begin if Log.Get_Level >= Util.Log.DEBUG_LEVEL then Log.Debug (Message, Buffers.To_String (Block1), Buffers.To_String (Block2)); end if; end Debug; procedure Debug (Log : in Util.Log.Loggers.Logger; Message : in String; Block : in IO.Storage_Block; Size : in IO.Block_Index) is begin if Log.Get_Level >= Util.Log.DEBUG_LEVEL then Log.Debug (Message, Buffers.To_String (Block), IO.Block_Index'Image (Size)); end if; end Debug; end Keystore.Logs;
with Tkmrpc.Request; with Tkmrpc.Response; package Tkmrpc.Operation_Handlers.Ike.Isa_Create_Child is procedure Handle (Req : Request.Data_Type; Res : out Response.Data_Type); -- Handler for the isa_create_child operation. end Tkmrpc.Operation_Handlers.Ike.Isa_Create_Child;
with Datos; use Datos; procedure Calcular_Maximo_Y_Posicion ( L : in Lista; Max, Pos_Max : out Integer ) is -- pre: -- post: Max contendra el mayor valor de L y Pos_max su posicion -- Si L es vacia entonces Pos_Max vale cero LCopia : Lista; Pos : Integer; begin LCopia := L; Max := 0; Pos := 1; Pos_Max := 0; while LCopia /= null loop if Max < LCopia.all.info then Max := LCopia.all.info; Pos_Max := Pos; end if; LCopia := LCopia.all.sig; Pos := Pos+1; end loop; end Calcular_Maximo_Y_Posicion;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body System.IO is Current_Out : File_Type := Stdout; pragma Atomic (Current_Out); -- Current output file (modified by Set_Output) -------------- -- New_Line -- -------------- procedure New_Line (Spacing : Positive := 1) is begin for J in 1 .. Spacing loop Put (ASCII.LF); end loop; end New_Line; --------- -- Put -- --------- procedure Put (X : Integer) is procedure Put_Int (X : Integer); pragma Import (C, Put_Int, "put_int"); procedure Put_Int_Err (X : Integer); pragma Import (C, Put_Int_Err, "put_int_stderr"); begin case Current_Out is when Stdout => Put_Int (X); when Stderr => Put_Int_Err (X); end case; end Put; procedure Put (C : Character) is procedure Put_Char (C : Character); pragma Import (C, Put_Char, "put_char"); procedure Put_Char_Stderr (C : Character); pragma Import (C, Put_Char_Stderr, "put_char_stderr"); begin case Current_Out is when Stdout => Put_Char (C); when Stderr => Put_Char_Stderr (C); end case; end Put; procedure Put (S : String) is begin for J in S'Range loop Put (S (J)); end loop; end Put; -------------- -- Put_Line -- -------------- procedure Put_Line (S : String) is begin Put (S); New_Line; end Put_Line; --------------------- -- Standard_Output -- --------------------- function Standard_Output return File_Type is begin return Stdout; end Standard_Output; -------------------- -- Standard_Error -- -------------------- function Standard_Error return File_Type is begin return Stderr; end Standard_Error; ---------------- -- Set_Output -- ---------------- procedure Set_Output (File : File_Type) is begin Current_Out := File; end Set_Output; end System.IO;
-- SPDX-FileCopyrightText: 2019 Max Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Formal_Type_Definitions; with Program.Lexical_Elements; with Program.Elements.Discrete_Ranges; with Program.Elements.Component_Definitions; package Program.Elements.Formal_Constrained_Array_Types is pragma Pure (Program.Elements.Formal_Constrained_Array_Types); type Formal_Constrained_Array_Type is limited interface and Program.Elements.Formal_Type_Definitions.Formal_Type_Definition; type Formal_Constrained_Array_Type_Access is access all Formal_Constrained_Array_Type'Class with Storage_Size => 0; not overriding function Index_Subtypes (Self : Formal_Constrained_Array_Type) return not null Program.Elements.Discrete_Ranges .Discrete_Range_Vector_Access is abstract; not overriding function Component_Definition (Self : Formal_Constrained_Array_Type) return not null Program.Elements.Component_Definitions .Component_Definition_Access is abstract; type Formal_Constrained_Array_Type_Text is limited interface; type Formal_Constrained_Array_Type_Text_Access is access all Formal_Constrained_Array_Type_Text'Class with Storage_Size => 0; not overriding function To_Formal_Constrained_Array_Type_Text (Self : in out Formal_Constrained_Array_Type) return Formal_Constrained_Array_Type_Text_Access is abstract; not overriding function Array_Token (Self : Formal_Constrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Left_Bracket_Token (Self : Formal_Constrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Right_Bracket_Token (Self : Formal_Constrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; not overriding function Of_Token (Self : Formal_Constrained_Array_Type_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Formal_Constrained_Array_Types;
<?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>pointOnSegment</name> <ret_bitwidth>1</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>p_x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>p_y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>p_z</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>e_p1_x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_5"> <Value> <Obj> <type>1</type> <id>5</id> <name>e_p1_y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_6"> <Value> <Obj> <type>1</type> <id>6</id> <name>e_p1_z</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_7"> <Value> <Obj> <type>1</type> <id>7</id> <name>e_p2_x</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_b</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_8"> <Value> <Obj> <type>1</type> <id>8</id> <name>e_p2_y</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_b</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_9"> <Value> <Obj> <type>1</type> <id>9</id> <name>e_p2_z</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>_b</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>149</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_10"> <Value> <Obj> <type>0</type> <id>10</id> <name>e_p2_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>161</item> <item>162</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>11</id> <name>e_p2_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>163</item> <item>164</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>12</id> <name>e_p2_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>165</item> <item>166</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>13</id> <name>e_p1_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>167</item> <item>168</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="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name>e_p1_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>169</item> <item>170</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="_15"> <Value> <Obj> <type>0</type> <id>15</id> <name>e_p1_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>171</item> <item>172</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>16</id> <name>p_z_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>173</item> <item>174</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>17</id> <name>p_y_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>175</item> <item>176</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>18</id> <name>p_x_read</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>177</item> <item>178</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>19</id> <name>bitcast_ln47</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>179</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>184</item> <item>186</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>21</id> <name>trunc_ln47</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>187</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>18</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>22</id> <name>bitcast_ln47_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>188</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>23</id> <name>tmp_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>189</item> <item>190</item> <item>191</item> <item>192</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>24</id> <name>trunc_ln47_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>193</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>21</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>25</id> <name>icmp_ln47</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>194</item> <item>196</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>26</id> <name>icmp_ln47_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>197</item> <item>199</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>27</id> <name>or_ln47</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>200</item> <item>201</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>28</id> <name>icmp_ln47_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>202</item> <item>203</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>29</id> <name>icmp_ln47_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>204</item> <item>205</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>30</id> <name>or_ln47_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>206</item> <item>207</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>31</id> <name>and_ln47</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>208</item> <item>209</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>210</item> <item>211</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>33</id> <name>and_ln47_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>212</item> <item>213</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>29</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>34</id> <name>p_a</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>214</item> <item>215</item> <item>216</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>35</id> <name>bitcast_ln47_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>217</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>36</id> <name>tmp_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>218</item> <item>219</item> <item>220</item> <item>221</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>37</id> <name>trunc_ln47_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>222</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>69</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>38</id> <name>bitcast_ln47_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>39</id> <name>tmp_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>224</item> <item>225</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>40</id> <name>trunc_ln47_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>228</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>72</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>41</id> <name>icmp_ln47_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>1.31</m_delay> <m_topoIndex>73</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>42</id> <name>icmp_ln47_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>231</item> <item>232</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>43</id> <name>or_ln47_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>233</item> <item>234</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>121</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>44</id> <name>icmp_ln47_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>235</item> <item>236</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>45</id> <name>icmp_ln47_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>237</item> <item>238</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>46</id> <name>or_ln47_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>239</item> <item>240</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>47</id> <name>and_ln47_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>241</item> <item>242</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>122</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>48</id> <name>tmp_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>243</item> <item>244</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>49</id> <name>and_ln47_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>245</item> <item>246</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>123</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>50</id> <name>tmp_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>247</item> <item>248</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>51</id> <name>and_ln47_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>249</item> <item>250</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>52</id> <name>p_a_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>253</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>53</id> <name>bitcast_ln47_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>254</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>54</id> <name>tmp_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>255</item> <item>256</item> <item>257</item> <item>258</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>55</id> <name>trunc_ln47_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>259</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>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>56</id> <name>icmp_ln47_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>260</item> <item>261</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>57</id> <name>icmp_ln47_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>262</item> <item>263</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>58</id> <name>or_ln47_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>264</item> <item>265</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>124</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>59</id> <name>and_ln47_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>266</item> <item>267</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>125</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>60</id> <name>tmp_s</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>268</item> <item>269</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>61</id> <name>and_ln47_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>270</item> <item>271</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>126</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>62</id> <name>bitcast_ln48</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>272</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>63</id> <name>tmp_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>273</item> <item>274</item> <item>275</item> <item>276</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>64</id> <name>trunc_ln48</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</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_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="_65"> <Value> <Obj> <type>0</type> <id>65</id> <name>bitcast_ln48_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>278</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>279</item> <item>280</item> <item>281</item> <item>282</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>67</id> <name>trunc_ln48_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>283</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>38</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>68</id> <name>icmp_ln48</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>284</item> <item>285</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>39</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>69</id> <name>icmp_ln48_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>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_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>70</id> <name>or_ln48</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>288</item> <item>289</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>41</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>71</id> <name>icmp_ln48_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>290</item> <item>291</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>72</id> <name>icmp_ln48_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>292</item> <item>293</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>73</id> <name>or_ln48_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>294</item> <item>295</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>74</id> <name>and_ln48</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>296</item> <item>297</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>298</item> <item>299</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>76</id> <name>and_ln48_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>300</item> <item>301</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>77</id> <name>p_a_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>78</id> <name>bitcast_ln48_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>305</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>79</id> <name>tmp_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>306</item> <item>307</item> <item>308</item> <item>309</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>80</id> <name>trunc_ln48_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>310</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>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>81</id> <name>bitcast_ln48_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>311</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>82</id> <name>tmp_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>312</item> <item>313</item> <item>314</item> <item>315</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>83</id> <name>trunc_ln48_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>316</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>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>84</id> <name>icmp_ln48_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>317</item> <item>318</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>85</id> <name>icmp_ln48_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>319</item> <item>320</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>86</id> <name>or_ln48_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>321</item> <item>322</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>127</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>87</id> <name>icmp_ln48_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>323</item> <item>324</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>88</id> <name>icmp_ln48_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>325</item> <item>326</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>89</id> <name>or_ln48_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>327</item> <item>328</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>90</id> <name>and_ln48_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>329</item> <item>330</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>128</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_13</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>331</item> <item>332</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>96</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>92</id> <name>and_ln48_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>129</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>93</id> <name>xor_ln48</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>335</item> <item>337</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>130</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_14</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>338</item> <item>339</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>95</id> <name>and_ln48_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>340</item> <item>341</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>96</id> <name>p_a_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>342</item> <item>343</item> <item>344</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>10</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>97</id> <name>bitcast_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>345</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_15</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>346</item> <item>347</item> <item>348</item> <item>349</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>99</id> <name>trunc_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>350</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>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>100</id> <name>bitcast_ln49_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>351</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>101</id> <name>tmp_16</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>352</item> <item>353</item> <item>354</item> <item>355</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>102</id> <name>trunc_ln49_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>356</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>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>103</id> <name>icmp_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>357</item> <item>358</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>104</id> <name>icmp_ln49_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>359</item> <item>360</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>105</id> <name>or_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>361</item> <item>362</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>106</id> <name>icmp_ln49_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>363</item> <item>364</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>107</id> <name>icmp_ln49_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>365</item> <item>366</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>108</id> <name>or_ln49_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>367</item> <item>368</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>109</id> <name>and_ln49</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>369</item> <item>370</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>11</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_17</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>371</item> <item>372</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>111</id> <name>and_ln49_1</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>373</item> <item>374</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>112</id> <name>p_a_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>375</item> <item>376</item> <item>377</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>12</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>113</id> <name>tmp_18</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>378</item> <item>379</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>114</id> <name>and_ln49_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>380</item> <item>381</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>115</id> <name>p_a_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName>_a</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>382</item> <item>383</item> <item>384</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>66</m_topoIndex> <m_clusterGroupNumber>13</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>116</id> <name>bitcast_ln49_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>385</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_19</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>386</item> <item>387</item> <item>388</item> <item>389</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>118</id> <name>trunc_ln49_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>390</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>99</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>119</id> <name>bitcast_ln49_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>391</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>120</id> <name>tmp_20</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>392</item> <item>393</item> <item>394</item> <item>395</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>121</id> <name>trunc_ln49_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>122</id> <name>icmp_ln49_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>397</item> <item>398</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>123</id> <name>icmp_ln49_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>399</item> <item>400</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>124</id> <name>or_ln49_2</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>401</item> <item>402</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>131</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>125</id> <name>icmp_ln49_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>403</item> <item>404</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>126</id> <name>icmp_ln49_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>405</item> <item>406</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>127</id> <name>or_ln49_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>407</item> <item>408</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>128</id> <name>and_ln49_3</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>409</item> <item>410</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>132</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>129</id> <name>tmp_21</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>411</item> <item>412</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>130</id> <name>and_ln49_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>413</item> <item>414</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>133</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>131</id> <name>and_ln47_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>415</item> <item>416</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>134</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>132</id> <name>xor_ln47</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>47</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>47</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>417</item> <item>418</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>135</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>133</id> <name>or_ln48_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</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>419</item> <item>420</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>136</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>134</id> <name>or_ln48_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>48</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>48</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>421</item> <item>422</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>137</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>135</id> <name>bitcast_ln49_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>423</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>136</id> <name>tmp_22</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>424</item> <item>425</item> <item>426</item> <item>427</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>110</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>137</id> <name>trunc_ln49_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>428</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>111</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>138</id> <name>icmp_ln49_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>429</item> <item>430</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>112</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>139</id> <name>icmp_ln49_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>431</item> <item>432</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>113</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>140</id> <name>or_ln49_4</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>433</item> <item>434</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>138</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>141</id> <name>and_ln49_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>435</item> <item>436</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>139</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>142</id> <name>tmp_23</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>437</item> <item>438</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>114</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>143</id> <name>and_ln49_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>439</item> <item>440</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>140</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>144</id> <name>and_ln49_7</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>441</item> <item>442</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>141</m_topoIndex> <m_clusterGroupNumber>14</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>145</id> <name>bitcast_ln49_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>443</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>115</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_24</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>444</item> <item>445</item> <item>446</item> <item>447</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>116</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>147</id> <name>trunc_ln49_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>23</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>448</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>117</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>148</id> <name>icmp_ln49_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>449</item> <item>450</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.31</m_delay> <m_topoIndex>118</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>149</id> <name>icmp_ln49_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>451</item> <item>452</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.02</m_delay> <m_topoIndex>119</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>150</id> <name>or_ln49_5</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>453</item> <item>454</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>142</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>151</id> <name>and_ln49_8</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>455</item> <item>456</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>143</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>152</id> <name>tmp_25</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>457</item> <item>458</item> </oprand_edges> <opcode>fcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>4.19</m_delay> <m_topoIndex>120</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>153</id> <name>and_ln49_9</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>459</item> <item>460</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>144</m_topoIndex> <m_clusterGroupNumber>16</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>154</id> <name>and_ln49_10</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>461</item> <item>462</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>145</m_topoIndex> <m_clusterGroupNumber>15</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>155</id> <name>or_ln49_6</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>463</item> <item>464</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>146</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>156</id> <name>and_ln49_11</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>465</item> <item>466</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>147</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>157</id> <name>and_ln49_12</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>49</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>49</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>467</item> <item>468</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.80</m_delay> <m_topoIndex>148</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>158</id> <name>_ln51</name> <fileName>src/honeybee.c</fileName> <fileDirectory>/mnt/hgfs/Thesis/HoneyBee</fileDirectory> <lineNumber>51</lineNumber> <contextFuncName>pointOnSegment</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/mnt/hgfs/Thesis/HoneyBee</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>src/honeybee.c</first> <second>pointOnSegment</second> </first> <second>51</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>469</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>149</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>5</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_159"> <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>23</content> </item> <item class_id_reference="16" object_id="_160"> <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>30</content> </item> <item class_id_reference="16" object_id="_161"> <Value> <Obj> <type>2</type> <id>195</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <const_type>0</const_type> <content>255</content> </item> <item class_id_reference="16" object_id="_162"> <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>23</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_163"> <Value> <Obj> <type>2</type> <id>336</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </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="_164"> <Obj> <type>3</type> <id>159</id> <name>pointOnSegment</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>149</count> <item_version>0</item_version> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>279</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_165"> <id>162</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>164</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>166</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="_168"> <id>168</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="_169"> <id>170</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>14</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>4</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>174</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>176</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>178</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>179</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>182</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>184</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>186</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>187</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>188</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>190</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>191</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>192</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="_183"> <id>193</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>194</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>196</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>197</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>199</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>200</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="_189"> <id>201</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>202</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>203</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>204</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>205</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>206</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="_195"> <id>207</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>208</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>209</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>210</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>211</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>212</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>213</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>214</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="_203"> <id>215</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>216</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>217</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_206"> <id>219</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>220</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>221</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>222</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="_210"> <id>223</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>225</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>226</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>227</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>228</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>229</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>230</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>231</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>232</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_219"> <id>233</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>234</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>235</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>236</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>237</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="_224"> <id>238</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>239</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="_226"> <id>240</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="_227"> <id>241</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>242</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="_229"> <id>243</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>244</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>245</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="_232"> <id>246</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>247</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>248</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>249</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_236"> <id>250</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="_237"> <id>251</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>252</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_239"> <id>253</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>254</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>256</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>257</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>258</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>259</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>260</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>261</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>262</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>263</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>264</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="_250"> <id>265</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="_251"> <id>266</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="_252"> <id>267</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="_253"> <id>268</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="_254"> <id>269</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>270</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="_256"> <id>271</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>272</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>274</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>275</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>276</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_261"> <id>277</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_262"> <id>278</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>280</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="_264"> <id>281</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>282</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>66</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>283</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>284</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>285</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>286</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>287</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>288</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="_272"> <id>289</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="_273"> <id>290</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>291</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>71</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>292</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>293</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_277"> <id>294</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>295</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_279"> <id>296</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_280"> <id>297</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="_281"> <id>298</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>299</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>300</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>301</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="_285"> <id>302</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="_286"> <id>303</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>304</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_288"> <id>305</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="_289"> <id>307</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="_290"> <id>308</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>309</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>310</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>311</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>313</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="_295"> <id>314</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>315</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>316</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="_298"> <id>317</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="_299"> <id>318</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>319</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>320</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_302"> <id>321</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>322</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>323</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>324</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>325</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>326</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_308"> <id>327</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>328</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>329</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_311"> <id>330</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>331</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>332</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>333</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>334</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="_316"> <id>335</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>337</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>338</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>339</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>340</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>341</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="_322"> <id>342</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>343</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>344</id> <edge_type>1</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="_325"> <id>345</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>97</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>347</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="_327"> <id>348</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>349</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>350</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>351</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>353</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="_332"> <id>354</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>355</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>356</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>357</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>358</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>359</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="_338"> <id>360</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>361</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>362</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>363</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>364</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>106</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_343"> <id>365</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>366</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>107</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_345"> <id>367</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>368</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>369</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>370</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>109</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>371</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>372</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>373</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="_352"> <id>374</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>375</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>376</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>377</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_356"> <id>378</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_357"> <id>379</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_358"> <id>380</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>381</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>382</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="_361"> <id>383</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>384</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>385</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="_364"> <id>387</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>388</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>389</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>117</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>390</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>118</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>391</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>119</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>393</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="_370"> <id>394</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>395</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>120</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_372"> <id>396</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>121</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>397</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_374"> <id>398</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>122</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_375"> <id>399</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_376"> <id>400</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>123</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_377"> <id>401</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_378"> <id>402</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>124</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_379"> <id>403</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_380"> <id>404</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>125</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_381"> <id>405</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_382"> <id>406</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>126</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_383"> <id>407</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="_384"> <id>408</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="_385"> <id>409</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>128</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_386"> <id>410</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="_387"> <id>411</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_388"> <id>412</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>129</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_389"> <id>413</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_390"> <id>414</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>130</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_391"> <id>415</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_392"> <id>416</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>131</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_393"> <id>417</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="_394"> <id>418</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>132</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_395"> <id>419</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_396"> <id>420</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>133</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_397"> <id>421</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_398"> <id>422</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>134</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_399"> <id>423</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>135</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_400"> <id>425</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_401"> <id>426</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_402"> <id>427</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>136</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_403"> <id>428</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>137</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_404"> <id>429</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_405"> <id>430</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>138</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_406"> <id>431</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_407"> <id>432</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>139</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_408"> <id>433</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_409"> <id>434</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>140</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_410"> <id>435</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_411"> <id>436</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>141</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_412"> <id>437</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_413"> <id>438</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>142</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_414"> <id>439</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="_415"> <id>440</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>143</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_416"> <id>441</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_417"> <id>442</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>144</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_418"> <id>443</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>145</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_419"> <id>445</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="_420"> <id>446</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_421"> <id>447</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>146</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_422"> <id>448</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>147</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_423"> <id>449</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_424"> <id>450</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>148</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_425"> <id>451</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_426"> <id>452</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>149</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_427"> <id>453</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="_428"> <id>454</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>150</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_429"> <id>455</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_430"> <id>456</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>151</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_431"> <id>457</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_432"> <id>458</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>152</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_433"> <id>459</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>153</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_434"> <id>460</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="_435"> <id>461</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_436"> <id>462</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>154</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_437"> <id>463</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_438"> <id>464</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>155</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_439"> <id>465</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_440"> <id>466</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>156</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_441"> <id>467</id> <edge_type>1</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="_442"> <id>468</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>157</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_443"> <id>469</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>158</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="_444"> <mId>1</mId> <mTag>pointOnSegment</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>159</item> </basic_blocks> <mII>1</mII> <mDepth>4</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>3</mMinLatency> <mMaxLatency>3</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>149</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>10</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>49</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>0</first> <second>1</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>2</first> <second>0</second> </second> </item> <item> <first>54</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>55</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>56</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>61</first> <second> <first>3</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>1</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>76</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>2</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>3</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>92</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>95</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>0</first> <second>1</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>0</first> <second>1</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>2</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>130</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>143</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>153</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>159</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_445"> <region_name>pointOnSegment</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>159</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>4</pipe_depth> </item> </regions> <dp_fu_nodes class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="36" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>0</count> <item_version>0</item_version> </dp_reg_nodes> <dp_regname_nodes> <count>0</count> <item_version>0</item_version> </dp_regname_nodes> <dp_reg_phi> <count>0</count> <item_version>0</item_version> </dp_reg_phi> <dp_regname_phi> <count>0</count> <item_version>0</item_version> </dp_regname_phi> <dp_port_io_nodes class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="38" 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>
------------------------------------------------------------------------------ -- -- -- Ada User Repository Annex (AURA) -- -- Reference Implementation -- -- -- -- ------------------------------------------------------------------------ -- -- -- -- Copyright (C) 2020, 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. -- -- -- ------------------------------------------------------------------------------ -- This package contains a serries of generalized host OS operations package Host_Operations is Host_Operation_Failed: exception; procedure Symbolic_Link (Target_Path, Source_Path: String); -- Creates a symbolic link at Source_Path that points to Target_Path procedure Set_Read_Only (Target_Path: String); -- Attempts to set the targeted file as read-only for all users and groups end Host_Operations;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018, Fabien Chouteau -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with FE310_SVD.GPIO; use FE310_SVD.GPIO; with FE310_SVD.UART; use FE310_SVD.UART; with AGATE.Arch.RISCV; use AGATE.Arch.RISCV; package body AGATE.Console is procedure Initialize; ---------------- -- Initialize -- ---------------- procedure Initialize is begin GPIO0_Periph.IO_FUNC_SEL.Arr (17) := False; GPIO0_Periph.IO_FUNC_SEL.Arr (18) := False; GPIO0_Periph.IO_FUNC_EN.Arr (18) := True; GPIO0_Periph.IO_FUNC_EN.Arr (17) := True; UART0_Periph.DIV.DIV := UInt16 ((CPU_Frequency / 115200)) - 1; UART0_Periph.TXCTRL.ENABLE := True; for I in 1 .. 1_000 loop null; end loop; end Initialize; ----------- -- Print -- ----------- procedure Print (C : Character) is begin while UART0_Periph.TXDATA.FULL loop null; end loop; UART0_Periph.TXDATA.DATA := Character'Pos (C); end Print; ----------- -- Print -- ----------- procedure Print (Str : String) is begin for C of Str loop Print (C); end loop; end Print; ---------------- -- Print_Line -- ---------------- procedure Print_Line (Str : String) is begin Print (Str); Print (ASCII.CR); Print (ASCII.LF); end Print_Line; begin Initialize; end AGATE.Console;
--////////////////////////////////////////////////////////// -- // -- // SFML - Simple and Fast Multimedia Library -- // Copyright (C) 2007-2009 Laurent Gomila (laurent.gom@gmail.com) -- // -- // This software is provided 'as-is', without any express or implied warranty. -- // In no event will the authors be held liable for any damages arising from the use of this software. -- // -- // Permission is granted to anyone to use this software for any purpose, -- // including commercial applications, and to alter it and redistribute it freely, -- // subject to the following restrictions: -- // -- // 1. The origin of this software must not be misrepresented; -- // you must not claim that you wrote the original software. -- // If you use this software in a product, an acknowledgment -- // in the product documentation would be appreciated but is not required. -- // -- // 2. Altered source versions must be plainly marked as such, -- // and must not be misrepresented as being the original software. -- // -- // 3. This notice may not be removed or altered from any source distribution. -- // --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// with Interfaces.C.Strings; package body Sf.Network.Ftp is use Interfaces.C.Strings; package body ListingResponse is --////////////////////////////////////////////////////////// --/ Get the full message contained in the response --/ --/ @param FtpListingResponse Ftp listing response --/ --/ @return The response message --/ --////////////////////////////////////////////////////////// function GetMessage (FtpListingResponse : sfFtpListingResponse_Ptr) return String is function Internal (FtpListingResponse : sfFtpListingResponse_Ptr) return chars_ptr; pragma Import (C, Internal, "sfFtpListingResponse_getMessage"); Temp : chars_ptr := Internal (FtpListingResponse); R : String := Value (Temp); begin Free (Temp); return R; end GetMessage; --////////////////////////////////////////////////////////// --/ @brief Return a directory/file name contained in a FTP listing response --/ --/ @param ftpListingResponse Ftp listing response --/ @param index Index of the name to get (in range [0 .. getCount]) --/ --/ @return The requested name --/ --////////////////////////////////////////////////////////// function GetName (FtpListingResponse : sfFtpListingResponse_Ptr; Index : sfSize_t) return String is function Internal (FtpListingResponse : sfFtpListingResponse_Ptr; Index : sfSize_t) return chars_ptr; pragma Import (C, Internal, "sfFtpListingResponse_getName"); Temp : chars_ptr := Internal (FtpListingResponse, Index); R : String := Value (Temp); begin Free (Temp); return R; end GetName; end ListingResponse; package body DirectoryResponse is --////////////////////////////////////////////////////////// --/ Get the full message contained in the response --/ --/ @param FtpDirectoryResponse Ftp directory response --/ --/ @return The response message --/ --////////////////////////////////////////////////////////// function GetMessage (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return String is function Internal (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return chars_ptr; pragma Import (C, Internal, "sfFtpDirectoryResponse_getMessage"); Temp : chars_ptr := Internal (FtpDirectoryResponse); R : String := Value (Temp); begin Free (Temp); return R; end GetMessage; --////////////////////////////////////////////////////////// --/ Get the directory returned in the response --/ --/ @param FtpDirectoryResponse Ftp directory response --/ --/ @return Directory name --/ --////////////////////////////////////////////////////////// function GetDirectory (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return String is function Internal (FtpDirectoryResponse : sfFtpDirectoryResponse_Ptr) return chars_ptr; pragma Import (C, Internal, "sfFtpDirectoryResponse_getDirectory"); Temp : chars_ptr := Internal (FtpDirectoryResponse); R : String := Value (Temp); begin Free (Temp); return R; end GetDirectory; end DirectoryResponse; package body Response is --////////////////////////////////////////////////////////// --/ Get the full message contained in the response --/ --/ @param FtpResponse Ftp response --/ --/ @return The response message --/ --////////////////////////////////////////////////////////// function GetMessage (FtpResponse : sfFtpResponse_Ptr) return String is function Internal (FtpResponse : sfFtpResponse_Ptr) return chars_ptr; pragma Import (C, Internal, "sfFtpResponse_getMessage"); Temp : chars_ptr := Internal (FtpResponse); R : String := Value (Temp); begin Free (Temp); return R; end GetMessage; end Response; function Login (ftp : sfFtp_Ptr; name : String; password : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; UserName : chars_ptr; Password : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_login"); Temp1 : chars_ptr := New_String (name); Temp2 : chars_ptr := New_String (password); R : sfFtpResponse_Ptr := Internal (Ftp, Temp1, Temp2); begin Free (Temp1); Free (Temp2); return R; end Login; --////////////////////////////////////////////////////////// --/ Get the contents of the given directory --/ (subdirectories and files) --/ --/ @param Ftp Ftp instance --/ @param Directory Directory to list ("" by default, the current one) --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function GetDirectoryListing (Ftp : sfFtp_Ptr; Directory : String) return sfFtpListingResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; Directory : chars_ptr) return sfFtpListingResponse_Ptr; pragma Import (C, Internal, "sfFtp_getDirectoryListing"); Temp : chars_ptr := New_String (Directory); R : sfFtpListingResponse_Ptr := Internal (Ftp, Temp); begin Free (Temp); return R; end GetDirectoryListing; --////////////////////////////////////////////////////////// --/ Change the current working directory --/ --/ @param Ftp Ftp instance --/ @param Directory New directory, relative to the current one --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function ChangeDirectory (Ftp : sfFtp_Ptr; Directory : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; Directory : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_changeDirectory"); Temp : chars_ptr := New_String (Directory); R : sfFtpResponse_Ptr := Internal (Ftp, Temp); begin Free (Temp); return R; end ChangeDirectory; --////////////////////////////////////////////////////////// --/ @brief Create a new directory --/ --/ The new directory is created as a child of the current --/ working directory. --/ --/ @param ftp Ftp object --/ @param name Name of the directory to create --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function CreateDirectory (Ftp : sfFtp_Ptr; Name : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; Name : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_createDirectory"); Temp : chars_ptr := New_String (Name); R : sfFtpResponse_Ptr := Internal (Ftp, Temp); begin Free (Temp); return R; end CreateDirectory; --////////////////////////////////////////////////////////// --/ Remove an existing directory --/ --/ @param Ftp Ftp instance --/ @param Name Name of the directory to remove --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function DeleteDirectory (Ftp : sfFtp_Ptr; Name : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; Name : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_deleteDirectory"); Temp : chars_ptr := New_String (Name); R : sfFtpResponse_Ptr := Internal (Ftp, Temp); begin Free (Temp); return R; end DeleteDirectory; --////////////////////////////////////////////////////////// --/ Rename a file --/ --/ @param Ftp Ftp instance --/ @param File File to rename --/ @param NewName New name --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function RenameFile (Ftp : sfFtp_Ptr; File : String; NewName : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; File : chars_ptr; NewName : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_renameFile"); Temp1 : chars_ptr := New_String (File); Temp2 : chars_ptr := New_String (NewName); R : sfFtpResponse_Ptr := Internal (Ftp, Temp1, Temp2); begin Free (Temp1); Free (Temp2); return R; end RenameFile; --////////////////////////////////////////////////////////// --/ Remove an existing file --/ --/ @param Ftp Ftp instance --/ @param Name File to remove --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function DeleteFile (Ftp : sfFtp_Ptr; Name : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; Name : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_deleteFile"); Temp : chars_ptr := New_String (Name); R : sfFtpResponse_Ptr := Internal (Ftp, Temp); begin Free (Temp); return R; end DeleteFile; function download (ftp : sfFtp_Ptr; remoteFile : String; localPath : String; mode : sfFtpTransferMode) return sfFtpResponse_Ptr is function Internal (ftp : sfFtp_Ptr; remoteFile : chars_ptr; localPath : chars_ptr; mode : sfFtpTransferMode) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_download"); Temp1 : chars_ptr := New_String (remoteFile); Temp2 : chars_ptr := New_String (localPath); R : sfFtpResponse_Ptr := Internal (ftp, Temp1, Temp2, Mode); begin Free (Temp1); Free (Temp2); return R; end Download; function upload (ftp : sfFtp_Ptr; localFile : String; remotePath : String; mode : sfFtpTransferMode; append : sfBool) return sfFtpResponse_Ptr is function Internal (ftp : sfFtp_Ptr; localFile : chars_ptr; remotePath : chars_ptr; mode : sfFtpTransferMode; append : sfBool) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_upload"); Temp1 : chars_ptr := New_String (LocalFile); Temp2 : chars_ptr := New_String (remotePath); R : sfFtpResponse_Ptr := Internal (Ftp, Temp1, Temp2, Mode, append); begin Free (Temp1); Free (Temp2); return R; end Upload; --////////////////////////////////////////////////////////// --/ @brief Send a command to the FTP server --/ --/ While the most often used commands are provided as --/ specific functions, this function can be used to send --/ any FTP command to the server. If the command requires --/ one or more parameters, they can be specified in --/ @a parameter. Otherwise you should pass NULL. --/ If the server returns information, you can extract it --/ from the response using sfResponse_getMessage(). --/ --/ @param ftp Ftp object --/ @param command Command to send --/ @param parameter Command parameter --/ --/ @return Server response to the request --/ --////////////////////////////////////////////////////////// function sendCommand (ftp : sfFtp_Ptr; command : String; parameter : String) return sfFtpResponse_Ptr is function Internal (Ftp : sfFtp_Ptr; command : chars_ptr; parameter : chars_ptr) return sfFtpResponse_Ptr; pragma Import (C, Internal, "sfFtp_sendCommand"); Temp1 : chars_ptr := New_String (command); Temp2 : chars_ptr := New_String (parameter); R : sfFtpResponse_Ptr := Internal (Ftp, Temp1, Temp2); begin Free (Temp1); Free (Temp2); return R; end sendCommand; end Sf.Network.Ftp;
----------------------------------------------------------------------- -- Util.Serialize.Mappers.Vector_Mapper -- Mapper for vector types -- Copyright (C) 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 Ada.Containers; with Ada.Containers.Vectors; with Util.Serialize.Contexts; with Util.Serialize.Mappers.Record_Mapper; with Util.Serialize.IO; generic -- Package that represents the vectors of elements. with package Vectors is new Ada.Containers.Vectors (<>); -- Package that maps the element into a record. with package Element_Mapper is new Record_Mapper (Element_Type => Vectors.Element_Type, others => <>); package Util.Serialize.Mappers.Vector_Mapper is subtype Element_Type is Vectors.Element_Type; subtype Vector is Vectors.Vector; subtype Index_Type is Vectors.Index_Type; type Vector_Type_Access is access all Vector; -- Procedure to give access to the <b>Vector</b> object from the context. type Process_Object is not null access procedure (Ctx : in out Util.Serialize.Contexts.Context'Class; Process : not null access procedure (Item : in out Vector)); -- ----------------------- -- Data context -- ----------------------- -- Data context to get access to the target element. type Vector_Data is new Util.Serialize.Contexts.Data with private; type Vector_Data_Access is access all Vector_Data'Class; -- Get the vector object. function Get_Vector (Data : in Vector_Data) return Vector_Type_Access; -- Set the vector object. procedure Set_Vector (Data : in out Vector_Data; Vector : in Vector_Type_Access); -- ----------------------- -- Record mapper -- ----------------------- type Mapper is new Util.Serialize.Mappers.Mapper with private; type Mapper_Access is access all Mapper'Class; -- Execute the mapping operation on the object associated with the current context. -- The object is extracted from the context and the <b>Execute</b> operation is called. procedure Execute (Handler : in Mapper; Map : in Mapping'Class; Ctx : in out Util.Serialize.Contexts.Context'Class; Value : in Util.Beans.Objects.Object); -- Set the <b>Data</b> vector in the context. procedure Set_Context (Ctx : in out Util.Serialize.Contexts.Context'Class; Data : in Vector_Type_Access); procedure Set_Mapping (Into : in out Mapper; Inner : in Element_Mapper.Mapper_Access); -- Find the mapper associated with the given name. -- Returns null if there is no mapper. function Find_Mapper (Controller : in Mapper; Name : in String) return Util.Serialize.Mappers.Mapper_Access; procedure Start_Object (Handler : in Mapper; Context : in out Util.Serialize.Contexts.Context'Class; Name : in String); procedure Finish_Object (Handler : in Mapper; Context : in out Util.Serialize.Contexts.Context'Class; Name : in String); -- Write the element on the stream using the mapper description. procedure Write (Handler : in Mapper; Stream : in out Util.Serialize.IO.Output_Stream'Class; Element : in Vectors.Vector); private type Vector_Data is new Util.Serialize.Contexts.Data with record Vector : Vector_Type_Access; Position : Index_Type; end record; type Mapper is new Util.Serialize.Mappers.Mapper with record Map : aliased Element_Mapper.Mapper; end record; overriding procedure Initialize (Controller : in out Mapper); end Util.Serialize.Mappers.Vector_Mapper;
----------------------------------------------------------------------- -- keystore-passwords-unsafe -- Unsafe password provider -- Copyright (C) 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. ----------------------------------------------------------------------- package body Keystore.Passwords.Unsafe is type Provider (Len : Natural) is limited new Keystore.Passwords.Provider with record Password : String (1 .. Len); end record; -- Get the password through the Getter operation. overriding procedure Get_Password (From : in Provider; Getter : not null access procedure (Password : in Secret_Key)); -- ------------------------------ -- Create a unsafe command line base password provider. -- ------------------------------ function Create (Password : in String) return Provider_Access is begin return new Provider '(Len => Password'Length, Password => Password); end Create; -- ------------------------------ -- Get the password through the Getter operation. -- ------------------------------ overriding procedure Get_Password (From : in Provider; Getter : not null access procedure (Password : in Secret_Key)) is begin Getter (Keystore.Create (From.Password)); end Get_Password; end Keystore.Passwords.Unsafe;
with Ada.Containers.Vectors; with Ada.Strings.Unbounded; package Command_Line is package SU renames Ada.Strings.Unbounded; package Input_File_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => SU.Unbounded_String, "=" => SU."="); function Parse_Command_Line (Input_Files : out Input_File_Vectors.Vector; Recurse_Projects : out Boolean; Directory_Prefix : out SU.Unbounded_String; Output_File : out SU.Unbounded_String) return Boolean; end Command_Line;
------------------------------------------------------ --| Semaphores | ------------------------------------------------------ --| Author | Jack (Yevhenii) Shendrikov | --| Group | IO-82 | --| Variant | #25 | --| Date | 29.11.2020 | ------------------------------------------------------ --| Function 1 | D = SORT(A)+SORT(B)+SORT(C)*(MA*ME) | --| Function 2 | MF = (MG*MH)*TRANS(MK) | --| Function 3 | S = (MO*MP)*V+t*MR*(O+P) | ------------------------------------------------------ with Data; with Ada.Integer_Text_IO, Ada.Text_IO, Ada.Characters.Latin_1; use Ada.Integer_Text_IO, Ada.Text_IO, Ada.Characters.Latin_1; with System.Multiprocessors; use System.Multiprocessors; with Semaphores; use Semaphores; procedure Lab1 is N: Integer; MY_SIMA : SIMA (1,2); procedure Tasks is package My_Data is new Data(N); use My_Data; CPU_0: CPU_Range := 0; CPU_1: CPU_Range := 1; CPU_2: CPU_Range := 2; task T1 is pragma Task_Name("T1"); pragma Priority(4); pragma Storage_Size(500000000); pragma CPU (CPU_0); end T1; task T2 is pragma Task_Name("T2"); pragma Priority(3); pragma Storage_Size(500000000); pragma CPU (CPU_1); end T2; task T3 is pragma Task_Name("T3"); pragma Priority(7); pragma Storage_Size(500000000); pragma CPU (CPU_2); end T3; task body T1 is A,B,C,D: Vector; MA,ME: Matrix; begin Put_Line("Task T1 started"); delay 0.7; Put_Line("T1 is waiting for a permit."); -- Generate Input Values MY_SIMA.P; -- Acquire the semaphore New_Line; Put_Line("T1 gets a permit."); delay 1.0; Input_Val_F1(A,B,C,MA,ME); Put_Line("T1 releases the permit."); MY_SIMA.V; -- Release the semaphore New_Line; Put_Line("T1 is waiting for a permit."); -- Calculate The Result D := Func1(A,B,C,MA,ME); delay 1.0; -- Output MY_SIMA.P; -- Acquire the semaphore Put_Line("T1 gets a permit."); Put("T1 | "); Vector_Output(D, "D"); Put_Line("T1 releases the permit."); New_Line; MY_SIMA.V; -- Release the semaphore Put_Line("Task T1 finished"); New_Line; end T1; task body T2 is MG,MH,MK,MF: Matrix; begin Put_Line("Task T2 started"); delay 1.0; Put_Line("T2 is waiting for a permit."); -- Generate Input Values MY_SIMA.P; -- Acquire the semaphore New_Line; Put_Line("T2 gets a permit."); delay 1.0; Input_Val_F2(MG,MH,MK); Put_Line("T2 releases the permit."); New_Line; MY_SIMA.V; -- Release the semaphore New_Line; Put_Line("T2 is waiting for a permit."); -- Calculate The Result MF := Func2(MG,MH,MK); delay 1.0; -- Output MY_SIMA.P; -- Acquire the semaphore Put_Line("T2 gets a permit."); Put_Line("T2 | "); Matrix_Output(MF, "MF"); Put_Line("T2 releases the permit."); MY_SIMA.V; -- Release the semaphore Put_Line("Task T2 finished"); New_Line; end T2; task body T3 is t: Integer; V,O,P,S: Vector; MO,MP,MR: Matrix; begin Put_Line("Task T3 started"); delay 0.5; Put_Line("T3 is waiting for a permit."); -- Generate Input Values MY_SIMA.P; -- Acquire the semaphore New_Line; Put_Line("T3 gets a permit."); delay 1.0; Input_Val_F3(t,V,O,P,MO,MP,MR); Put_Line("T3 releases the permit."); MY_SIMA.V; -- Release the semaphore New_Line; Put_Line("T3 is waiting for a permit."); -- Calculate The Result S := Func3(t,V,O,P,MO,MP,MR); delay 1.0; -- Output MY_SIMA.P; -- Acquire the semaphore Put_Line("T3 gets a permit."); Put("T3 | "); Vector_Output(S, "S"); Put_Line("T3 releases the permit."); New_Line; MY_SIMA.V; -- Release the semaphore Put_Line("Task T3 finished"); New_Line; end T3; begin Put_Line("Calculations started"); New_Line; end Tasks; begin Put_Line("Function 1: D = SORT(A)+SORT(B)+SORT(C)*(MA*ME)" & CR & LF & "Function 2: MF = (MG*MH)*TRANS(MK)" & CR & LF & "Function 3: S = (MO*MP)*V+t*MR*(O+P)" & CR & LF); Put_Line("!!! Note that if the value of N > 10 -> the result will not be displayed !!!" & CR & LF & "!!! If you enter N <= 0 - execution will be terminated !!!" & CR & LF); Put("Enter N: "); Get(N); New_Line; Tasks; Put_Line("All task finished"); end Lab1;
with Ada.Streams; with Ada.Text_IO; with Crypto.SHA512; use Crypto.SHA512; procedure Test_SHA512 is procedure Test_01 is use type Ada.Streams.Stream_Element_Array; C : Context := Initial; D : Fingerprint; begin Update (C, "a"); Final (C, D); pragma Assert ( Image (D) = "1f40fc92da241694750979ee6cf582f2d5d7d28e18335de05abc54d0560e0f5302860c652bf08" & "d560252aa5e74210546f369fbbbce8c12cfc7957b2652fe9a75"); pragma Assert (D = Value (Image (D))); end Test_01; pragma Debug (Test_01); begin -- finish Ada.Text_IO.Put_Line (Ada.Text_IO.Standard_Error.all, "ok"); end Test_SHA512;
pragma Style_Checks (Off); -- This spec has been automatically generated from STM32H743x.svd pragma Restrictions (No_Elaboration_Code); with HAL; with System; package STM32_SVD.EXTI is pragma Preelaborate; --------------- -- Registers -- --------------- -- RTSR1_TR array type RTSR1_TR_Field_Array is array (0 .. 21) of Boolean with Component_Size => 1, Size => 22; -- Type definition for RTSR1_TR type RTSR1_TR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- TR as a value Val : HAL.UInt22; when True => -- TR as an array Arr : RTSR1_TR_Field_Array; end case; end record with Unchecked_Union, Size => 22; for RTSR1_TR_Field use record Val at 0 range 0 .. 21; Arr at 0 range 0 .. 21; end record; -- EXTI rising trigger selection register type RTSR1_Register is record -- Rising trigger event configuration bit of Configurable Event input TR : RTSR1_TR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_22_31 : HAL.UInt10 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RTSR1_Register use record TR at 0 range 0 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; -- FTSR1_TR array type FTSR1_TR_Field_Array is array (0 .. 21) of Boolean with Component_Size => 1, Size => 22; -- Type definition for FTSR1_TR type FTSR1_TR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- TR as a value Val : HAL.UInt22; when True => -- TR as an array Arr : FTSR1_TR_Field_Array; end case; end record with Unchecked_Union, Size => 22; for FTSR1_TR_Field use record Val at 0 range 0 .. 21; Arr at 0 range 0 .. 21; end record; -- EXTI falling trigger selection register type FTSR1_Register is record -- Rising trigger event configuration bit of Configurable Event input TR : FTSR1_TR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_22_31 : HAL.UInt10 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for FTSR1_Register use record TR at 0 range 0 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; -- SWIER1_SWIER array type SWIER1_SWIER_Field_Array is array (0 .. 21) of Boolean with Component_Size => 1, Size => 22; -- Type definition for SWIER1_SWIER type SWIER1_SWIER_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SWIER as a value Val : HAL.UInt22; when True => -- SWIER as an array Arr : SWIER1_SWIER_Field_Array; end case; end record with Unchecked_Union, Size => 22; for SWIER1_SWIER_Field use record Val at 0 range 0 .. 21; Arr at 0 range 0 .. 21; end record; -- EXTI software interrupt event register type SWIER1_Register is record -- Rising trigger event configuration bit of Configurable Event input SWIER : SWIER1_SWIER_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_22_31 : HAL.UInt10 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SWIER1_Register use record SWIER at 0 range 0 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; -- D3PMR1_MR array type D3PMR1_MR_Field_Array is array (0 .. 15) of Boolean with Component_Size => 1, Size => 16; -- Type definition for D3PMR1_MR type D3PMR1_MR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt16; when True => -- MR as an array Arr : D3PMR1_MR_Field_Array; end case; end record with Unchecked_Union, Size => 16; for D3PMR1_MR_Field use record Val at 0 range 0 .. 15; Arr at 0 range 0 .. 15; end record; -- D3PMR1_MR array type D3PMR1_MR_Field_Array_1 is array (19 .. 21) of Boolean with Component_Size => 1, Size => 3; -- Type definition for D3PMR1_MR type D3PMR1_MR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt3; when True => -- MR as an array Arr : D3PMR1_MR_Field_Array_1; end case; end record with Unchecked_Union, Size => 3; for D3PMR1_MR_Field_1 use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- EXTI D3 pending mask register type D3PMR1_Register is record -- Rising trigger event configuration bit of Configurable Event input MR : D3PMR1_MR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_16_18 : HAL.UInt3 := 16#0#; -- Rising trigger event configuration bit of Configurable Event input MR_1 : D3PMR1_MR_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_22_24 : HAL.UInt3 := 16#0#; -- Rising trigger event configuration bit of Configurable Event input MR25 : Boolean := False; -- unspecified Reserved_26_31 : HAL.UInt6 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PMR1_Register use record MR at 0 range 0 .. 15; Reserved_16_18 at 0 range 16 .. 18; MR_1 at 0 range 19 .. 21; Reserved_22_24 at 0 range 22 .. 24; MR25 at 0 range 25 .. 25; Reserved_26_31 at 0 range 26 .. 31; end record; -- D3PCR1L_PCS array element subtype D3PCR1L_PCS_Element is HAL.UInt2; -- D3PCR1L_PCS array type D3PCR1L_PCS_Field_Array is array (0 .. 15) of D3PCR1L_PCS_Element with Component_Size => 2, Size => 32; -- EXTI D3 pending clear selection register low type D3PCR1L_Register (As_Array : Boolean := False) is record case As_Array is when False => -- PCS as a value Val : HAL.UInt32; when True => -- PCS as an array Arr : D3PCR1L_PCS_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PCR1L_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- D3PCR1H_PCS array element subtype D3PCR1H_PCS_Element is HAL.UInt2; -- D3PCR1H_PCS array type D3PCR1H_PCS_Field_Array is array (19 .. 21) of D3PCR1H_PCS_Element with Component_Size => 2, Size => 6; -- Type definition for D3PCR1H_PCS type D3PCR1H_PCS_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PCS as a value Val : HAL.UInt6; when True => -- PCS as an array Arr : D3PCR1H_PCS_Field_Array; end case; end record with Unchecked_Union, Size => 6; for D3PCR1H_PCS_Field use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; subtype D3PCR1H_PCS25_Field is HAL.UInt2; -- EXTI D3 pending clear selection register high type D3PCR1H_Register is record -- unspecified Reserved_0_5 : HAL.UInt6 := 16#0#; -- D3 Pending request clear input signal selection on Event input x = -- truncate ((n+32)/2) PCS : D3PCR1H_PCS_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_12_17 : HAL.UInt6 := 16#0#; -- D3 Pending request clear input signal selection on Event input x = -- truncate ((n+32)/2) PCS25 : D3PCR1H_PCS25_Field := 16#0#; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PCR1H_Register use record Reserved_0_5 at 0 range 0 .. 5; PCS at 0 range 6 .. 11; Reserved_12_17 at 0 range 12 .. 17; PCS25 at 0 range 18 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- EXTI rising trigger selection register type RTSR2_Register is record -- unspecified Reserved_0_16 : HAL.UInt17 := 16#0#; -- Rising trigger event configuration bit of Configurable Event input -- x+32 TR49 : Boolean := False; -- unspecified Reserved_18_18 : HAL.Bit := 16#0#; -- Rising trigger event configuration bit of Configurable Event input -- x+32 TR51 : Boolean := False; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RTSR2_Register use record Reserved_0_16 at 0 range 0 .. 16; TR49 at 0 range 17 .. 17; Reserved_18_18 at 0 range 18 .. 18; TR51 at 0 range 19 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- EXTI falling trigger selection register type FTSR2_Register is record -- unspecified Reserved_0_16 : HAL.UInt17 := 16#0#; -- Falling trigger event configuration bit of Configurable Event input -- x+32 TR49 : Boolean := False; -- unspecified Reserved_18_18 : HAL.Bit := 16#0#; -- Falling trigger event configuration bit of Configurable Event input -- x+32 TR51 : Boolean := False; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for FTSR2_Register use record Reserved_0_16 at 0 range 0 .. 16; TR49 at 0 range 17 .. 17; Reserved_18_18 at 0 range 18 .. 18; TR51 at 0 range 19 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- EXTI software interrupt event register type SWIER2_Register is record -- unspecified Reserved_0_16 : HAL.UInt17 := 16#0#; -- Software interrupt on line x+32 SWIER49 : Boolean := False; -- unspecified Reserved_18_18 : HAL.Bit := 16#0#; -- Software interrupt on line x+32 SWIER51 : Boolean := False; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SWIER2_Register use record Reserved_0_16 at 0 range 0 .. 16; SWIER49 at 0 range 17 .. 17; Reserved_18_18 at 0 range 18 .. 18; SWIER51 at 0 range 19 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- D3PMR2_MR array type D3PMR2_MR_Field_Array is array (34 .. 35) of Boolean with Component_Size => 1, Size => 2; -- Type definition for D3PMR2_MR type D3PMR2_MR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt2; when True => -- MR as an array Arr : D3PMR2_MR_Field_Array; end case; end record with Unchecked_Union, Size => 2; for D3PMR2_MR_Field use record Val at 0 range 0 .. 1; Arr at 0 range 0 .. 1; end record; -- D3PMR2_MR array type D3PMR2_MR_Field_Array_1 is array (48 .. 53) of Boolean with Component_Size => 1, Size => 6; -- Type definition for D3PMR2_MR type D3PMR2_MR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt6; when True => -- MR as an array Arr : D3PMR2_MR_Field_Array_1; end case; end record with Unchecked_Union, Size => 6; for D3PMR2_MR_Field_1 use record Val at 0 range 0 .. 5; Arr at 0 range 0 .. 5; end record; -- EXTI D3 pending mask register type D3PMR2_Register is record -- unspecified Reserved_0_1 : HAL.UInt2 := 16#0#; -- D3 Pending Mask on Event input x+32 MR : D3PMR2_MR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_4_8 : HAL.UInt5 := 16#0#; -- D3 Pending Mask on Event input x+32 MR41 : Boolean := False; -- unspecified Reserved_10_15 : HAL.UInt6 := 16#0#; -- D3 Pending Mask on Event input x+32 MR_1 : D3PMR2_MR_Field_1 := (As_Array => False, Val => 16#0#); -- unspecified Reserved_22_31 : HAL.UInt10 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PMR2_Register use record Reserved_0_1 at 0 range 0 .. 1; MR at 0 range 2 .. 3; Reserved_4_8 at 0 range 4 .. 8; MR41 at 0 range 9 .. 9; Reserved_10_15 at 0 range 10 .. 15; MR_1 at 0 range 16 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; -- D3PCR2L_PCS array element subtype D3PCR2L_PCS_Element is HAL.UInt2; -- D3PCR2L_PCS array type D3PCR2L_PCS_Field_Array is array (34 .. 35) of D3PCR2L_PCS_Element with Component_Size => 2, Size => 4; -- Type definition for D3PCR2L_PCS type D3PCR2L_PCS_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PCS as a value Val : HAL.UInt4; when True => -- PCS as an array Arr : D3PCR2L_PCS_Field_Array; end case; end record with Unchecked_Union, Size => 4; for D3PCR2L_PCS_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; subtype D3PCR2L_PCS41_Field is HAL.UInt2; -- EXTI D3 pending clear selection register low type D3PCR2L_Register is record -- unspecified Reserved_0_3 : HAL.UInt4 := 16#0#; -- D3 Pending request clear input signal selection on Event input x = -- truncate ((n+64)/2) PCS : D3PCR2L_PCS_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_8_17 : HAL.UInt10 := 16#0#; -- D3 Pending request clear input signal selection on Event input x = -- truncate ((n+64)/2) PCS41 : D3PCR2L_PCS41_Field := 16#0#; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PCR2L_Register use record Reserved_0_3 at 0 range 0 .. 3; PCS at 0 range 4 .. 7; Reserved_8_17 at 0 range 8 .. 17; PCS41 at 0 range 18 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- D3PCR2H_PCS array element subtype D3PCR2H_PCS_Element is HAL.UInt2; -- D3PCR2H_PCS array type D3PCR2H_PCS_Field_Array is array (48 .. 53) of D3PCR2H_PCS_Element with Component_Size => 2, Size => 12; -- Type definition for D3PCR2H_PCS type D3PCR2H_PCS_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PCS as a value Val : HAL.UInt12; when True => -- PCS as an array Arr : D3PCR2H_PCS_Field_Array; end case; end record with Unchecked_Union, Size => 12; for D3PCR2H_PCS_Field use record Val at 0 range 0 .. 11; Arr at 0 range 0 .. 11; end record; -- EXTI D3 pending clear selection register high type D3PCR2H_Register is record -- Pending request clear input signal selection on Event input x= -- truncate ((n+96)/2) PCS : D3PCR2H_PCS_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PCR2H_Register use record PCS at 0 range 0 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; -- RTSR3_TR array type RTSR3_TR_Field_Array is array (84 .. 86) of Boolean with Component_Size => 1, Size => 3; -- Type definition for RTSR3_TR type RTSR3_TR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- TR as a value Val : HAL.UInt3; when True => -- TR as an array Arr : RTSR3_TR_Field_Array; end case; end record with Unchecked_Union, Size => 3; for RTSR3_TR_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- EXTI rising trigger selection register type RTSR3_Register is record -- unspecified Reserved_0_17 : HAL.UInt18 := 16#0#; -- Rising trigger event configuration bit of Configurable Event input -- x+64 TR82 : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- Rising trigger event configuration bit of Configurable Event input -- x+64 TR : RTSR3_TR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for RTSR3_Register use record Reserved_0_17 at 0 range 0 .. 17; TR82 at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; TR at 0 range 20 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; -- FTSR3_TR array type FTSR3_TR_Field_Array is array (84 .. 86) of Boolean with Component_Size => 1, Size => 3; -- Type definition for FTSR3_TR type FTSR3_TR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- TR as a value Val : HAL.UInt3; when True => -- TR as an array Arr : FTSR3_TR_Field_Array; end case; end record with Unchecked_Union, Size => 3; for FTSR3_TR_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- EXTI falling trigger selection register type FTSR3_Register is record -- unspecified Reserved_0_17 : HAL.UInt18 := 16#0#; -- Falling trigger event configuration bit of Configurable Event input -- x+64 TR82 : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- Falling trigger event configuration bit of Configurable Event input -- x+64 TR : FTSR3_TR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for FTSR3_Register use record Reserved_0_17 at 0 range 0 .. 17; TR82 at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; TR at 0 range 20 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; -- SWIER3_SWIER array type SWIER3_SWIER_Field_Array is array (84 .. 86) of Boolean with Component_Size => 1, Size => 3; -- Type definition for SWIER3_SWIER type SWIER3_SWIER_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SWIER as a value Val : HAL.UInt3; when True => -- SWIER as an array Arr : SWIER3_SWIER_Field_Array; end case; end record with Unchecked_Union, Size => 3; for SWIER3_SWIER_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- EXTI software interrupt event register type SWIER3_Register is record -- unspecified Reserved_0_17 : HAL.UInt18 := 16#0#; -- Software interrupt on line x+64 SWIER82 : Boolean := False; -- unspecified Reserved_19_19 : HAL.Bit := 16#0#; -- Software interrupt on line x+64 SWIER : SWIER3_SWIER_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SWIER3_Register use record Reserved_0_17 at 0 range 0 .. 17; SWIER82 at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; SWIER at 0 range 20 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; -- EXTI D3 pending mask register type D3PMR3_Register is record -- unspecified Reserved_0_23 : HAL.UInt24 := 16#0#; -- D3 Pending Mask on Event input x+64 MR88 : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PMR3_Register use record Reserved_0_23 at 0 range 0 .. 23; MR88 at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; subtype D3PCR3H_PCS88_Field is HAL.UInt2; -- EXTI D3 pending clear selection register high type D3PCR3H_Register is record -- unspecified Reserved_0_17 : HAL.UInt18 := 16#0#; -- D3 Pending request clear input signal selection on Event input x= -- truncate N+160/2 PCS88 : D3PCR3H_PCS88_Field := 16#0#; -- unspecified Reserved_20_31 : HAL.UInt12 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for D3PCR3H_Register use record Reserved_0_17 at 0 range 0 .. 17; PCS88 at 0 range 18 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- CPUIMR1_MR array type CPUIMR1_MR_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- EXTI interrupt mask register type CPUIMR1_Register (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt32; when True => -- MR as an array Arr : CPUIMR1_MR_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUIMR1_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- CPUEMR1_MR array type CPUEMR1_MR_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- EXTI event mask register type CPUEMR1_Register (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt32; when True => -- MR as an array Arr : CPUEMR1_MR_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUEMR1_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- CPUPR1_PR array type CPUPR1_PR_Field_Array is array (0 .. 21) of Boolean with Component_Size => 1, Size => 22; -- Type definition for CPUPR1_PR type CPUPR1_PR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PR as a value Val : HAL.UInt22; when True => -- PR as an array Arr : CPUPR1_PR_Field_Array; end case; end record with Unchecked_Union, Size => 22; for CPUPR1_PR_Field use record Val at 0 range 0 .. 21; Arr at 0 range 0 .. 21; end record; -- EXTI pending register type CPUPR1_Register is record -- CPU Event mask on Event input x PR : CPUPR1_PR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_22_31 : HAL.UInt10 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUPR1_Register use record PR at 0 range 0 .. 21; Reserved_22_31 at 0 range 22 .. 31; end record; -- CPUIMR2_MR array type CPUIMR2_MR_Field_Array is array (0 .. 12) of Boolean with Component_Size => 1, Size => 13; -- Type definition for CPUIMR2_MR type CPUIMR2_MR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt13; when True => -- MR as an array Arr : CPUIMR2_MR_Field_Array; end case; end record with Unchecked_Union, Size => 13; for CPUIMR2_MR_Field use record Val at 0 range 0 .. 12; Arr at 0 range 0 .. 12; end record; -- CPUIMR2_MR array type CPUIMR2_MR_Field_Array_1 is array (14 .. 31) of Boolean with Component_Size => 1, Size => 18; -- Type definition for CPUIMR2_MR type CPUIMR2_MR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt18; when True => -- MR as an array Arr : CPUIMR2_MR_Field_Array_1; end case; end record with Unchecked_Union, Size => 18; for CPUIMR2_MR_Field_1 use record Val at 0 range 0 .. 17; Arr at 0 range 0 .. 17; end record; -- EXTI interrupt mask register type CPUIMR2_Register is record -- CPU Interrupt Mask on Direct Event input x+32 MR : CPUIMR2_MR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_13_13 : HAL.Bit := 16#0#; -- CPU Interrupt Mask on Direct Event input x+32 MR_1 : CPUIMR2_MR_Field_1 := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUIMR2_Register use record MR at 0 range 0 .. 12; Reserved_13_13 at 0 range 13 .. 13; MR_1 at 0 range 14 .. 31; end record; -- CPUEMR2_MR array type CPUEMR2_MR_Field_Array is array (32 .. 44) of Boolean with Component_Size => 1, Size => 13; -- Type definition for CPUEMR2_MR type CPUEMR2_MR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt13; when True => -- MR as an array Arr : CPUEMR2_MR_Field_Array; end case; end record with Unchecked_Union, Size => 13; for CPUEMR2_MR_Field use record Val at 0 range 0 .. 12; Arr at 0 range 0 .. 12; end record; -- CPUEMR2_MR array type CPUEMR2_MR_Field_Array_1 is array (46 .. 63) of Boolean with Component_Size => 1, Size => 18; -- Type definition for CPUEMR2_MR type CPUEMR2_MR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt18; when True => -- MR as an array Arr : CPUEMR2_MR_Field_Array_1; end case; end record with Unchecked_Union, Size => 18; for CPUEMR2_MR_Field_1 use record Val at 0 range 0 .. 17; Arr at 0 range 0 .. 17; end record; -- EXTI event mask register type CPUEMR2_Register is record -- CPU Interrupt Mask on Direct Event input x+32 MR : CPUEMR2_MR_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_13_13 : HAL.Bit := 16#0#; -- CPU Interrupt Mask on Direct Event input x+32 MR_1 : CPUEMR2_MR_Field_1 := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUEMR2_Register use record MR at 0 range 0 .. 12; Reserved_13_13 at 0 range 13 .. 13; MR_1 at 0 range 14 .. 31; end record; -- EXTI pending register type CPUPR2_Register is record -- unspecified Reserved_0_16 : HAL.UInt17; -- Read-only. Configurable event inputs x+32 Pending bit PR49 : Boolean; -- unspecified Reserved_18_18 : HAL.Bit; -- Read-only. Configurable event inputs x+32 Pending bit PR51 : Boolean; -- unspecified Reserved_20_31 : HAL.UInt12; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUPR2_Register use record Reserved_0_16 at 0 range 0 .. 16; PR49 at 0 range 17 .. 17; Reserved_18_18 at 0 range 18 .. 18; PR51 at 0 range 19 .. 19; Reserved_20_31 at 0 range 20 .. 31; end record; -- CPUIMR3_MR array type CPUIMR3_MR_Field_Array is array (64 .. 80) of Boolean with Component_Size => 1, Size => 17; -- Type definition for CPUIMR3_MR type CPUIMR3_MR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt17; when True => -- MR as an array Arr : CPUIMR3_MR_Field_Array; end case; end record with Unchecked_Union, Size => 17; for CPUIMR3_MR_Field use record Val at 0 range 0 .. 16; Arr at 0 range 0 .. 16; end record; -- CPUIMR3_MR array type CPUIMR3_MR_Field_Array_1 is array (84 .. 88) of Boolean with Component_Size => 1, Size => 5; -- Type definition for CPUIMR3_MR type CPUIMR3_MR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt5; when True => -- MR as an array Arr : CPUIMR3_MR_Field_Array_1; end case; end record with Unchecked_Union, Size => 5; for CPUIMR3_MR_Field_1 use record Val at 0 range 0 .. 4; Arr at 0 range 0 .. 4; end record; -- EXTI interrupt mask register type CPUIMR3_Register is record -- Read-only. CPU Interrupt Mask on Direct Event input x+64 MR : CPUIMR3_MR_Field; -- unspecified Reserved_17_17 : HAL.Bit; -- Read-only. CPU Interrupt Mask on Direct Event input x+64 MR82 : Boolean; -- unspecified Reserved_19_19 : HAL.Bit; -- Read-only. CPU Interrupt Mask on Direct Event input x+64 MR_1 : CPUIMR3_MR_Field_1; -- unspecified Reserved_25_31 : HAL.UInt7; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUIMR3_Register use record MR at 0 range 0 .. 16; Reserved_17_17 at 0 range 17 .. 17; MR82 at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; MR_1 at 0 range 20 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; -- CPUEMR3_MR array type CPUEMR3_MR_Field_Array is array (64 .. 80) of Boolean with Component_Size => 1, Size => 17; -- Type definition for CPUEMR3_MR type CPUEMR3_MR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt17; when True => -- MR as an array Arr : CPUEMR3_MR_Field_Array; end case; end record with Unchecked_Union, Size => 17; for CPUEMR3_MR_Field use record Val at 0 range 0 .. 16; Arr at 0 range 0 .. 16; end record; -- CPUEMR3_MR array type CPUEMR3_MR_Field_Array_1 is array (84 .. 88) of Boolean with Component_Size => 1, Size => 5; -- Type definition for CPUEMR3_MR type CPUEMR3_MR_Field_1 (As_Array : Boolean := False) is record case As_Array is when False => -- MR as a value Val : HAL.UInt5; when True => -- MR as an array Arr : CPUEMR3_MR_Field_Array_1; end case; end record with Unchecked_Union, Size => 5; for CPUEMR3_MR_Field_1 use record Val at 0 range 0 .. 4; Arr at 0 range 0 .. 4; end record; -- EXTI event mask register type CPUEMR3_Register is record -- Read-only. CPU Event mask on Event input x+64 MR : CPUEMR3_MR_Field; -- unspecified Reserved_17_17 : HAL.Bit; -- Read-only. CPU Event mask on Event input x+64 MR82 : Boolean; -- unspecified Reserved_19_19 : HAL.Bit; -- Read-only. CPU Event mask on Event input x+64 MR_1 : CPUEMR3_MR_Field_1; -- unspecified Reserved_25_31 : HAL.UInt7; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUEMR3_Register use record MR at 0 range 0 .. 16; Reserved_17_17 at 0 range 17 .. 17; MR82 at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; MR_1 at 0 range 20 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; -- CPUPR3_PR array type CPUPR3_PR_Field_Array is array (84 .. 86) of Boolean with Component_Size => 1, Size => 3; -- Type definition for CPUPR3_PR type CPUPR3_PR_Field (As_Array : Boolean := False) is record case As_Array is when False => -- PR as a value Val : HAL.UInt3; when True => -- PR as an array Arr : CPUPR3_PR_Field_Array; end case; end record with Unchecked_Union, Size => 3; for CPUPR3_PR_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- EXTI pending register type CPUPR3_Register is record -- unspecified Reserved_0_17 : HAL.UInt18; -- Read-only. Configurable event inputs x+64 Pending bit PR82 : Boolean; -- unspecified Reserved_19_19 : HAL.Bit; -- Read-only. Configurable event inputs x+64 Pending bit PR : CPUPR3_PR_Field; -- unspecified Reserved_23_31 : HAL.UInt9; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CPUPR3_Register use record Reserved_0_17 at 0 range 0 .. 17; PR82 at 0 range 18 .. 18; Reserved_19_19 at 0 range 19 .. 19; PR at 0 range 20 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- External interrupt/event controller type EXTI_Peripheral is record -- EXTI rising trigger selection register RTSR1 : aliased RTSR1_Register; -- EXTI falling trigger selection register FTSR1 : aliased FTSR1_Register; -- EXTI software interrupt event register SWIER1 : aliased SWIER1_Register; -- EXTI D3 pending mask register D3PMR1 : aliased D3PMR1_Register; -- EXTI D3 pending clear selection register low D3PCR1L : aliased D3PCR1L_Register; -- EXTI D3 pending clear selection register high D3PCR1H : aliased D3PCR1H_Register; -- EXTI rising trigger selection register RTSR2 : aliased RTSR2_Register; -- EXTI falling trigger selection register FTSR2 : aliased FTSR2_Register; -- EXTI software interrupt event register SWIER2 : aliased SWIER2_Register; -- EXTI D3 pending mask register D3PMR2 : aliased D3PMR2_Register; -- EXTI D3 pending clear selection register low D3PCR2L : aliased D3PCR2L_Register; -- EXTI D3 pending clear selection register high D3PCR2H : aliased D3PCR2H_Register; -- EXTI rising trigger selection register RTSR3 : aliased RTSR3_Register; -- EXTI falling trigger selection register FTSR3 : aliased FTSR3_Register; -- EXTI software interrupt event register SWIER3 : aliased SWIER3_Register; -- EXTI D3 pending mask register D3PMR3 : aliased D3PMR3_Register; -- EXTI D3 pending clear selection register high D3PCR3H : aliased D3PCR3H_Register; -- EXTI interrupt mask register CPUIMR1 : aliased CPUIMR1_Register; -- EXTI event mask register CPUEMR1 : aliased CPUEMR1_Register; -- EXTI pending register CPUPR1 : aliased CPUPR1_Register; -- EXTI interrupt mask register CPUIMR2 : aliased CPUIMR2_Register; -- EXTI event mask register CPUEMR2 : aliased CPUEMR2_Register; -- EXTI pending register CPUPR2 : aliased CPUPR2_Register; -- EXTI interrupt mask register CPUIMR3 : aliased CPUIMR3_Register; -- EXTI event mask register CPUEMR3 : aliased CPUEMR3_Register; -- EXTI pending register CPUPR3 : aliased CPUPR3_Register; end record with Volatile; for EXTI_Peripheral use record RTSR1 at 16#0# range 0 .. 31; FTSR1 at 16#4# range 0 .. 31; SWIER1 at 16#8# range 0 .. 31; D3PMR1 at 16#C# range 0 .. 31; D3PCR1L at 16#10# range 0 .. 31; D3PCR1H at 16#14# range 0 .. 31; RTSR2 at 16#20# range 0 .. 31; FTSR2 at 16#24# range 0 .. 31; SWIER2 at 16#28# range 0 .. 31; D3PMR2 at 16#2C# range 0 .. 31; D3PCR2L at 16#30# range 0 .. 31; D3PCR2H at 16#34# range 0 .. 31; RTSR3 at 16#40# range 0 .. 31; FTSR3 at 16#44# range 0 .. 31; SWIER3 at 16#48# range 0 .. 31; D3PMR3 at 16#4C# range 0 .. 31; D3PCR3H at 16#54# range 0 .. 31; CPUIMR1 at 16#80# range 0 .. 31; CPUEMR1 at 16#84# range 0 .. 31; CPUPR1 at 16#88# range 0 .. 31; CPUIMR2 at 16#90# range 0 .. 31; CPUEMR2 at 16#94# range 0 .. 31; CPUPR2 at 16#98# range 0 .. 31; CPUIMR3 at 16#A0# range 0 .. 31; CPUEMR3 at 16#A4# range 0 .. 31; CPUPR3 at 16#A8# range 0 .. 31; end record; -- External interrupt/event controller EXTI_Periph : aliased EXTI_Peripheral with Import, Address => EXTI_Base; end STM32_SVD.EXTI;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Internals.OCL_Elements; with AMF.OCL.State_Exps; with AMF.UML.Comments.Collections; with AMF.UML.Dependencies.Collections; with AMF.UML.Elements.Collections; with AMF.UML.Named_Elements; with AMF.UML.Namespaces.Collections; with AMF.UML.Packages.Collections; with AMF.UML.States; with AMF.UML.String_Expressions; with AMF.UML.Types; with AMF.Visitors; package AMF.Internals.OCL_State_Exps is type OCL_State_Exp_Proxy is limited new AMF.Internals.OCL_Elements.OCL_Element_Proxy and AMF.OCL.State_Exps.OCL_State_Exp with null record; overriding function Get_Referred_State (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.States.UML_State_Access; -- Getter of StateExp::referredState. -- overriding procedure Set_Referred_State (Self : not null access OCL_State_Exp_Proxy; To : AMF.UML.States.UML_State_Access); -- Setter of StateExp::referredState. -- overriding function Get_Type (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Types.UML_Type_Access; -- Getter of TypedElement::type. -- -- The type of the TypedElement. -- This information is derived from the return result for this Operation. overriding procedure Set_Type (Self : not null access OCL_State_Exp_Proxy; To : AMF.UML.Types.UML_Type_Access); -- Setter of TypedElement::type. -- -- The type of the TypedElement. -- This information is derived from the return result for this Operation. overriding function Get_Client_Dependency (Self : not null access constant OCL_State_Exp_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 (Self : not null access constant OCL_State_Exp_Proxy) return AMF.Optional_String; -- Getter of NamedElement::name. -- -- The name of the NamedElement. overriding procedure Set_Name (Self : not null access OCL_State_Exp_Proxy; To : AMF.Optional_String); -- Setter of NamedElement::name. -- -- The name of the NamedElement. overriding function Get_Name_Expression (Self : not null access constant OCL_State_Exp_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 OCL_State_Exp_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 OCL_State_Exp_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 OCL_State_Exp_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_Visibility (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Optional_UML_Visibility_Kind; -- Getter of NamedElement::visibility. -- -- Determines where the NamedElement appears within different Namespaces -- within the overall model, and its accessibility. overriding procedure Set_Visibility (Self : not null access OCL_State_Exp_Proxy; To : AMF.UML.Optional_UML_Visibility_Kind); -- Setter of NamedElement::visibility. -- -- Determines where the NamedElement appears within different Namespaces -- within the overall model, and its accessibility. overriding function Get_Owned_Comment (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Comments.Collections.Set_Of_UML_Comment; -- Getter of Element::ownedComment. -- -- The Comments owned by this element. overriding function Get_Owned_Element (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element; -- Getter of Element::ownedElement. -- -- The Elements owned by this element. overriding function Get_Owner (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Elements.UML_Element_Access; -- Getter of Element::owner. -- -- The Element that owns this element. overriding function All_Namespaces (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Namespaces.Collections.Ordered_Set_Of_UML_Namespace; -- Operation NamedElement::allNamespaces. -- -- The query allNamespaces() gives the sequence of namespaces in which the -- NamedElement is nested, working outwards. overriding function All_Owning_Packages (Self : not null access constant OCL_State_Exp_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 OCL_State_Exp_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 OCL_State_Exp_Proxy) return AMF.UML.Namespaces.UML_Namespace_Access; -- Operation NamedElement::namespace. -- -- Missing derivation for NamedElement::/namespace : Namespace overriding function Qualified_Name (Self : not null access constant OCL_State_Exp_Proxy) return League.Strings.Universal_String; -- Operation NamedElement::qualifiedName. -- -- When there is a name, and all of the containing namespaces have a name, -- the qualified name is constructed from the names of the containing -- namespaces. overriding function Separator (Self : not null access constant OCL_State_Exp_Proxy) return League.Strings.Universal_String; -- Operation NamedElement::separator. -- -- The query separator() gives the string that is used to separate names -- when constructing a qualified name. overriding function All_Owned_Elements (Self : not null access constant OCL_State_Exp_Proxy) return AMF.UML.Elements.Collections.Set_Of_UML_Element; -- Operation Element::allOwnedElements. -- -- The query allOwnedElements() gives all of the direct and indirect owned -- elements of an element. overriding function Must_Be_Owned (Self : not null access constant OCL_State_Exp_Proxy) return Boolean; -- Operation Element::mustBeOwned. -- -- The query mustBeOwned() indicates whether elements of this type must -- have an owner. Subclasses of Element that do not require an owner must -- override this operation. overriding procedure Enter_Element (Self : not null access constant OCL_State_Exp_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant OCL_State_Exp_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant OCL_State_Exp_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.OCL_State_Exps;
-- 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.Frame.Frame_Options_Test_Data is -- begin read only type Test_Frame_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_Frame_Options); procedure Tear_Down(Gnattest_T: in out Test_Frame_Options); end Tk.Frame.Frame_Options_Test_Data;
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" with Ada.Unchecked_Deallocation; with Yaml.Dom.Node; with Yaml.Dom.Sequence_Data; with Yaml.Dom.Mapping_Data; with Yaml.Dom.Node_Memory; package body Yaml.Dom is use type Text.Reference; use type Count_Type; use type Node.Instance; function For_Document (Document : not null access Document_Instance) return Sequence_Data.Instance with Import, Convention => Ada, Link_Name => "AdaYaml__Sequence_Data__For_Document"; function For_Document (Document : not null access Document_Instance) return Mapping_Data.Instance with Import, Convention => Ada, Link_Name => "AdaYaml__Mapping_Data__For_Document"; type Nullable_Node_Pointer is access all Node.Instance; procedure Free is new Ada.Unchecked_Deallocation (Node.Instance, Nullable_Node_Pointer); procedure Decrease_Refcount (Object : not null access Document_Instance) is begin if Object.Refcount = 1 and then Object.Root_Node /= null then declare Memory : Node_Memory.Instance; procedure Visit_Pair (Key, Value : not null access Node.Instance); procedure Visit (Cur : not null access Node.Instance) is Visited : Boolean; begin Memory.Visit (Cur, Visited); if Visited then return; end if; case Cur.Kind is when Scalar => null; when Sequence => Cur.Items.Iterate (Visit'Access); when Mapping => Cur.Pairs.Iterate (Visit_Pair'Access); end case; end Visit; procedure Visit_Pair (Key, Value : not null access Node.Instance) is begin Visit (Key); Visit (Value); end Visit_Pair; begin Visit (Object.Root_Node); while not Memory.Is_Empty loop declare Ptr : Nullable_Node_Pointer := Nullable_Node_Pointer (Memory.Pop_First); begin Free (Ptr); end; end loop; end; end if; Yaml.Decrease_Refcount (Object); end Decrease_Refcount; procedure Adjust (Object : in out Document_Reference) is begin Increase_Refcount (Object.Data); end Adjust; procedure Finalize (Object : in out Document_Reference) is begin Dom.Decrease_Refcount (Object.Data); end Finalize; procedure Adjust (Object : in out Node_Reference) is begin Increase_Refcount (Object.Document); end Adjust; procedure Finalize (Object : in out Node_Reference) is begin Dom.Decrease_Refcount (Object.Document); end Finalize; procedure Adjust (Object : in out Optional_Node_Reference) is begin if Object.Document /= null then Increase_Refcount (Object.Document); end if; end Adjust; procedure Finalize (Object : in out Optional_Node_Reference) is begin if Object.Document /= null then Dom.Decrease_Refcount (Object.Document); end if; end Finalize; function New_Sequence (Document : not null access Document_Instance; Tag : Text.Reference; Style : Collection_Style_Type) return Node_Pointer is (new Node.Instance'(Kind => Sequence, Tag => Tag, Sequence_Style => Style, Items => For_Document (Document))); function New_Mapping (Document : not null access Document_Instance; Tag : Text.Reference; Style : Collection_Style_Type) return Node_Pointer is (new Node.Instance'(Kind => Mapping, Tag => Tag, Mapping_Style => Style, Pairs => For_Document (Document))); function New_Document (Pool : Text.Pool.Reference := Text.Pool.With_Capacity (Text.Pool.Default_Size); Implicit_Start, Implicit_End : Boolean := True) return Document_Reference is begin return (Ada.Finalization.Controlled with Data => new Document_Instance'(Refcount_Base with Pool => Pool, Root_Node => null, Implicit_Start => Implicit_Start, Implicit_End => Implicit_End)); end New_Document; function New_Scalar (Parent : Document_Reference'Class; Content : String := ""; Tag : Text.Reference := Yaml.Tags.Question_Mark; Style : Scalar_Style_Type := Any) return Node_Reference is begin Increase_Refcount (Parent.Data); return ((Ada.Finalization.Controlled with Document => Parent.Data, Data => new Node.Instance'(Tag => Tag, Kind => Scalar, Scalar_Style => Style, Content => Parent.Data.Pool.From_String (Content)))); end New_Scalar; function New_Scalar (Parent : Document_Reference'Class; Content : Text.Reference; Tag : Text.Reference := Yaml.Tags.Question_Mark; Style : Scalar_Style_Type := Any) return Node_Reference is begin Increase_Refcount (Parent.Data); return ((Ada.Finalization.Controlled with Document => Parent.Data, Data => new Node.Instance'(Tag => Tag, Kind => Scalar, Scalar_Style => Style, Content => Content))); end New_Scalar; function New_Sequence (Parent : Document_Reference'Class; Tag : Text.Reference := Yaml.Tags.Question_Mark; Style : Collection_Style_Type := Any) return Node_Reference is begin Increase_Refcount (Parent.Data); return ((Ada.Finalization.Controlled with Document => Parent.Data, Data => New_Sequence (Parent.Data, Tag, Style))); end New_Sequence; function New_Mapping (Parent : Document_Reference'Class; Tag : Text.Reference := Yaml.Tags.Question_Mark; Style : Collection_Style_Type := Any) return Node_Reference is begin Increase_Refcount (Parent.Data); return ((Ada.Finalization.Controlled with Document => Parent.Data, Data => New_Mapping (Parent.Data, Tag, Style))); end New_Mapping; function Nodes_Equal (Left, Right : access Node.Instance) return Boolean is (Left = Right or else (Left /= null and then Right /= null and then Left.all = Right.all)); function "=" (Left, Right : Document_Reference) return Boolean is (Nodes_Equal (Left.Data.Root_Node, Right.Data.Root_Node)); function "=" (Left, Right : Node_Reference) return Boolean is (Same_Node (Left, Right) or else Left.Data.all = Right.Data.all); -- checks whether the two references reference the same node function Same_Node (Left, Right : Node_Reference) return Boolean is (Left.Data = Right.Data); function Is_Empty (Object : Document_Reference) return Boolean is (Object.Data.Root_Node = null); function Root (Object : Document_Reference'Class) return Node_Reference is begin Increase_Refcount (Object.Data); return (Ada.Finalization.Controlled with Document => Object.Data, Data => Node_Pointer (Object.Data.Root_Node)); end Root; procedure Set_Root (Object : Document_Reference; Value : Node_Reference'Class) is begin Object.Data.Root_Node := Value.Data; end Set_Root; procedure Set_Root (Object : Document_Reference; Value : Optional_Node_Reference'Class) is begin Object.Data.Root_Node := Value.Data; end Set_Root; function Starts_Implicitly (Object : Document_Reference) return Boolean is (Object.Data.Implicit_Start); function Ends_Implicitly (Object : Document_Reference) return Boolean is (Object.Data.Implicit_End); procedure Set_Representation_Hints (Object : Document_Reference; Implicit_Start, Implicit_End : Boolean) is begin Object.Data.Implicit_Start := Implicit_Start; Object.Data.Implicit_End := Implicit_End; end Set_Representation_Hints; function Value (Object : Node_Reference) return Accessor is ((Data => Object.Data)); function Value (Object : Optional_Node_Reference) return Accessor is ((Data => Object.Data)); function Required (Object : Optional_Node_Reference'Class) return Node_Reference is begin Increase_Refcount (Object.Document); return (Ada.Finalization.Controlled with Document => Object.Document, Data => Node_Pointer (Object.Data)); end Required; function Optional (Object : Node_Reference'Class) return Optional_Node_Reference is begin Increase_Refcount (Object.Document); return (Ada.Finalization.Controlled with Document => Object.Document, Data => Object.Data); end Optional; end Yaml.Dom;
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="17"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>sigmoid_top</name> <module_structure>Pipeline</module_structure> <ret_bitwidth>16</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_r</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953394531</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>109</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_2"> <Value> <Obj> <type>0</type> <id>8</id> <name>in_read</name> <fileName>Sigmoid.cpp</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>3</lineNumber> <contextFuncName>sigmoid_top</contextFuncName> <contextNormFuncName>sigmoid_top</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>Sigmoid.cpp</first> <second>sigmoid_top</second> </first> <second>3</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741613612</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>119</item> <item>120</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>1</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_3"> <Value> <Obj> <type>0</type> <id>9</id> <name>icmp_ln1549</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741487420</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>121</item> <item>123</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.28</m_delay> <m_topoIndex>2</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>10</id> <name>icmp_ln938</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>938</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>938</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1013281633</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>124</item> <item>126</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.28</m_delay> <m_topoIndex>57</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>11</id> <name>p_Result_s</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1227</lineNumber> <contextFuncName>countLeadingZeros</contextFuncName> <contextNormFuncName>countLeadingZeros</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first> <second>countLeadingZeros</second> </first> <second>1227</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741487420</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>128</item> <item>129</item> <item>131</item> <item>133</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>3</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>12</id> <name>p_Result_6</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1228</lineNumber> <contextFuncName>countLeadingZeros</contextFuncName> <contextNormFuncName>countLeadingZeros</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first> <second>countLeadingZeros</second> </first> <second>1228</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741947196</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>135</item> <item>137</item> <item>138</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>4</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>13</id> <name>l</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1229</lineNumber> <contextFuncName>countLeadingZeros</contextFuncName> <contextNormFuncName>countLeadingZeros</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first> <second>countLeadingZeros</second> </first> <second>1229</second> </item> </second> </item> </inlineStackInfo> <originalName>l</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>143</item> </oprand_edges> <opcode>cttz</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>5</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>14</id> <name>sub_ln947</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>947</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>947</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741487420</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>145</item> <item>146</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.51</m_delay> <m_topoIndex>6</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>15</id> <name>trunc_ln947</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>947</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>947</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>892543020</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>147</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>7</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>16</id> <name>lsb_index</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>947</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>947</second> </item> </second> </item> </inlineStackInfo> <originalName>lsb_index</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>148</item> <item>150</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.51</m_delay> <m_topoIndex>8</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>17</id> <name>tmp_5</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>949</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>949</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>152</item> <item>153</item> <item>155</item> <item>157</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>9</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>18</id> <name>icmp_ln949</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>949</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>949</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741613612</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>158</item> <item>160</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.28</m_delay> <m_topoIndex>10</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>19</id> <name>trunc_ln950</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>950</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>950</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>892543020</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>161</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>11</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>20</id> <name>sub_ln950</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>950</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>950</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741875756</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>5</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>163</item> <item>164</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.10</m_delay> <m_topoIndex>12</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>21</id> <name>zext_ln950</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>950</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>950</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>165</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>13</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>22</id> <name>lshr_ln950</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>950</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>950</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741875756</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>166</item> <item>167</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>14</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>23</id> <name>p_Result_2</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>950</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>950</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>168</item> <item>169</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>15</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>24</id> <name>icmp_ln950</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>950</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>950</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>170</item> <item>171</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.58</m_delay> <m_topoIndex>16</m_topoIndex> <m_clusterGroupNumber>1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_7</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>173</item> <item>174</item> <item>175</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>17</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>26</id> <name>xor_ln952</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741487420</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>176</item> <item>177</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>18</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>27</id> <name>and_ln949</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>949</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>949</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741487420</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>178</item> <item>179</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>19</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>28</id> <name>add_ln952</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741947196</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>180</item> <item>182</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.34</m_delay> <m_topoIndex>20</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>29</id> <name>shl_ln952</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>184</item> <item>185</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>21</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>30</id> <name>and_ln952</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741482540</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>186</item> <item>187</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>22</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>31</id> <name>p_Result_3</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>188</item> <item>189</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.21</m_delay> <m_topoIndex>23</m_topoIndex> <m_clusterGroupNumber>3</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>32</id> <name>a</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName>a</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>190</item> <item>191</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>24</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>33</id> <name>zext_ln960</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>960</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>960</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>192</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>36</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>34</id> <name>icmp_ln961</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>961</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>961</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>193</item> <item>194</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.28</m_delay> <m_topoIndex>25</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>35</id> <name>add_ln961</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>961</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>961</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>195</item> <item>197</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.51</m_delay> <m_topoIndex>26</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>36</id> <name>zext_ln961</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>961</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>961</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>942874668</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>37</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>37</id> <name>lshr_ln961</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>961</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>961</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1013281633</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>199</item> <item>200</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>38</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>38</id> <name>sub_ln962</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>962</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>962</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741749052</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>202</item> <item>203</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.51</m_delay> <m_topoIndex>27</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>39</id> <name>zext_ln962</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>962</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>962</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1768713801</coreId> <rtlModuleName></rtlModuleName> </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>39</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>40</id> <name>shl_ln962</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>962</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>962</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>205</item> <item>206</item> </oprand_edges> <opcode>shl</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>40</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>41</id> <name>tobool29_i_i647</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>952</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>952</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1631205950</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>207</item> <item>208</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.47</m_delay> <m_topoIndex>28</m_topoIndex> <m_clusterGroupNumber>2</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>42</id> <name>m</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>961</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>961</second> </item> </second> </item> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1948265526</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>211</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>41</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>43</id> <name>zext_ln964</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>964</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>964</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1747871091</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>212</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>42</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>44</id> <name>m_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>964</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>964</second> </item> </second> </item> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>213</item> <item>214</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.00</m_delay> <m_topoIndex>43</m_topoIndex> <m_clusterGroupNumber>4</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>45</id> <name>m_5</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>965</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>965</second> </item> </second> </item> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>544175214</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>216</item> <item>217</item> <item>218</item> <item>220</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>44</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>46</id> <name>zext_ln965</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>965</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>965</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701080941</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>221</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>45</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>47</id> <name>p_Result_4</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>968</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>968</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>223</item> <item>224</item> <item>225</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>46</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>48</id> <name>select_ln946</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>946</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>946</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1629954158</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>226</item> <item>228</item> <item>230</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.49</m_delay> <m_topoIndex>47</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>49</id> <name>trunc_ln946</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>946</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>946</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601134448</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>231</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>29</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>50</id> <name>sub_ln968</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>968</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>968</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953060399</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>233</item> <item>234</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>48</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>51</id> <name>add_ln968</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>968</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>968</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1551134572</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>235</item> <item>236</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.98</m_delay> <m_topoIndex>49</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>52</id> <name>tmp</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>974</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>974</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>825898033</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>238</item> <item>240</item> <item>241</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>50</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>53</id> <name>p_Result_7</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>974</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>974</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1663057509</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>243</item> <item>244</item> <item>245</item> <item>247</item> <item>248</item> </oprand_edges> <opcode>partset</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>51</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>54</id> <name>bitcast_ln741</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_common.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>741</lineNumber> <contextFuncName>rawBitsToDouble</contextFuncName> <contextNormFuncName>rawBitsToDouble</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_common.h</first> <second>rawBitsToDouble</second> </first> <second>741</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701080941</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>249</item> </oprand_edges> <opcode>bitcast</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>52</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>55</id> <name>trunc_ln3</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1868771121</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>52</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>251</item> <item>252</item> <item>253</item> <item>254</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>53</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>56</id> <name>icmp_ln1560</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1902080097</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>255</item> <item>257</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.07</m_delay> <m_topoIndex>54</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>57</id> <name>icmp_ln1560_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>858350948</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>258</item> <item>260</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.36</m_delay> <m_topoIndex>55</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>58</id> <name>or_ln1560</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>673197109</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>261</item> <item>262</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>58</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>59</id> <name>tmp_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601265520</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>263</item> <item>265</item> </oprand_edges> <opcode>dcmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>2.81</m_delay> <m_topoIndex>56</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>60</id> <name>and_ln1560</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1768713801</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>266</item> <item>267</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>59</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>61</id> <name>xor_ln1560</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1767057440</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>268</item> <item>269</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.47</m_delay> <m_topoIndex>60</m_topoIndex> <m_clusterGroupNumber>5</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_9</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1631205950</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>271</item> <item>272</item> <item>274</item> <item>275</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>30</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>63</id> <name>icmp_ln1549_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>544175214</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>276</item> <item>278</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.86</m_delay> <m_topoIndex>31</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>64</id> <name>tmp_2</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1629954158</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>280</item> <item>281</item> <item>283</item> <item>284</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>32</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>65</id> <name>and_ln</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1868767294</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>286</item> <item>287</item> <item>289</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>61</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>66</id> <name>zext_ln712</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601200476</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>290</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>62</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>67</id> <name>x0_V</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName>x0.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601200476</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>291</item> <item>293</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.34</m_delay> <m_topoIndex>63</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>68</id> <name>zext_ln6</name> <fileName>Sigmoid.cpp</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>6</lineNumber> <contextFuncName>sigmoid_top</contextFuncName> <contextNormFuncName>sigmoid_top</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>Sigmoid.cpp</first> <second>sigmoid_top</second> </first> <second>6</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702060386</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>294</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>64</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>69</id> <name>tmp_3</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702060386</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>13</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>296</item> <item>297</item> <item>299</item> <item>300</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>33</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>70</id> <name>and_ln712_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702060386</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>302</item> <item>303</item> <item>304</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>65</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>71</id> <name>zext_ln712_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702060386</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>305</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>66</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>72</id> <name>x0_V_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName>x0.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1633449071</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>306</item> <item>308</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.34</m_delay> <m_topoIndex>67</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>73</id> <name>add_ln712</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1769239916</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>309</item> <item>311</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.34</m_delay> <m_topoIndex>68</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_4</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>691761261</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>313</item> <item>314</item> <item>316</item> <item>317</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>69</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>75</id> <name>x0_V_2</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_20_6_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;20, 6, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName>x0.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601200476</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>319</item> <item>320</item> <item>321</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>70</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>76</id> <name>or_ln938</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>938</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>938</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1834970975</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>322</item> <item>323</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.47</m_delay> <m_topoIndex>71</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>77</id> <name>or_ln1560_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601465961</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>324</item> <item>325</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>72</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>78</id> <name>x0_V_3</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1560</lineNumber> <contextFuncName>operator&amp;gt;=</contextFuncName> <contextNormFuncName>operator_ge</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=</second> </first> <second>1560</second> </item> </second> </item> </inlineStackInfo> <originalName>x0.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741749052</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>326</item> <item>327</item> <item>328</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>73</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>79</id> <name>xor_ln938</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>938</lineNumber> <contextFuncName>to_double</contextFuncName> <contextNormFuncName>to_double</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>to_double</second> </first> <second>938</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>926170213</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>74</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>80</id> <name>and_ln1549</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1834970975</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>75</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>81</id> <name>and_ln1549_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1869438831</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</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_isStartOfPath>0</m_isStartOfPath> <m_delay>0.47</m_delay> <m_topoIndex>76</m_topoIndex> <m_clusterGroupNumber>7</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>82</id> <name>x0_V_4</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName>x0.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>539766834</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>335</item> <item>336</item> <item>337</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.47</m_delay> <m_topoIndex>77</m_topoIndex> <m_clusterGroupNumber>6</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>83</id> <name>x0_V_6</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1549</lineNumber> <contextFuncName>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_ge_32_32_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;=&amp;lt;32, 32, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1549</second> </item> </second> </item> </inlineStackInfo> <originalName>x0.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1834970975</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>338</item> <item>340</item> <item>341</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.39</m_delay> <m_topoIndex>85</m_topoIndex> <m_clusterGroupNumber>8</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>84</id> <name>zext_ln1168</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1168</lineNumber> <contextFuncName>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_16_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1869438831</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>342</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>34</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>85</id> <name>r_V</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1171</lineNumber> <contextFuncName>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_16_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1171</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741749052</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>29</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>343</item> <item>345</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.54</m_delay> <m_topoIndex>35</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>86</id> <name>m_4</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>640</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</first> <second>get</second> </first> <second>640</second> </item> </second> </item> </inlineStackInfo> <originalName>m</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>826041715</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>347</item> <item>348</item> <item>350</item> <item>352</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>95</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>87</id> <name>n</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>640</lineNumber> <contextFuncName>get</contextFuncName> <contextNormFuncName>get</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</first> <second>get</second> </first> <second>640</second> </item> </second> </item> </inlineStackInfo> <originalName>n</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2020173407</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>353</item> <item>354</item> <item>356</item> <item>358</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>78</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>88</id> <name>r_V_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>566</lineNumber> <contextFuncName>operator unsigned long long</contextFuncName> <contextNormFuncName>operator_unsigned_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_ref.h</first> <second>operator unsigned long long</second> </first> <second>566</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741749052</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>360</item> <item>361</item> <item>362</item> <item>364</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>79</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>89</id> <name>zext_ln1168_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1168</lineNumber> <contextFuncName>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_16_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>826041715</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>365</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>80</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>90</id> <name>r_V_2</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1171</lineNumber> <contextFuncName>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_16_4_false_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;16, 4, false, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1171</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1869438831</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>366</item> <item>368</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.54</m_delay> <m_topoIndex>81</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>91</id> <name>zext_ln573</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>573</lineNumber> <contextFuncName>operator unsigned long long</contextFuncName> <contextNormFuncName>operator_unsigned_long_long</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_int_base.h</first> <second>operator unsigned long long</second> </first> <second>573</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741749052</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>369</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>82</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>92</id> <name>trunc_ln4</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1717530721</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>371</item> <item>372</item> <item>374</item> <item>375</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>86</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>93</id> <name>zext_ln1246</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1633449071</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>376</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>87</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>94</id> <name>ret_V</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName>ret.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702060386</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>378</item> <item>379</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.34</m_delay> <m_topoIndex>88</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>95</id> <name>ROM_EXP_V_addr</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1169</lineNumber> <contextFuncName>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_47_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1169</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>380</item> <item>382</item> <item>383</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>83</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>96</id> <name>r_V_3</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1169</lineNumber> <contextFuncName>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_47_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1169</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>384</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.14</m_delay> <m_topoIndex>84</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>97</id> <name>zext_ln1168_2</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1168</lineNumber> <contextFuncName>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_47_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>385</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>89</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>98</id> <name>zext_ln1171</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1171</lineNumber> <contextFuncName>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_47_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1171</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>621029840</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>386</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>90</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>99</id> <name>r_V_4</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1171</lineNumber> <contextFuncName>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_47_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1171</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1834970975</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>30</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>387</item> <item>388</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.54</m_delay> <m_topoIndex>91</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>100</id> <name>zext_ln1168_3</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1168</lineNumber> <contextFuncName>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_47_33_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;47, 33, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1168</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>389</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>96</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>101</id> <name>zext_ln1386</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1386</lineNumber> <contextFuncName>operator&amp;gt;&amp;gt;</contextFuncName> <contextNormFuncName>operator_rs</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;&amp;gt;</second> </first> <second>1386</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>390</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>97</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>102</id> <name>r</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1386</lineNumber> <contextFuncName>operator&amp;gt;&amp;gt;</contextFuncName> <contextNormFuncName>operator_rs</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;gt;&amp;gt;</second> </first> <second>1386</second> </item> </second> </item> </inlineStackInfo> <originalName>r</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>556558544</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>391</item> <item>392</item> </oprand_edges> <opcode>lshr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>98</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>103</id> <name>exp_negx_V</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>717</lineNumber> <contextFuncName>operator=&amp;lt;63, 35, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_63_35_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;63, 35, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>717</second> </item> </second> </item> </inlineStackInfo> <originalName>exp_negx.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>394</item> <item>395</item> <item>397</item> <item>399</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>99</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>104</id> <name>zext_ln1352</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1352</lineNumber> <contextFuncName>operator&amp;lt;&amp;lt;</contextFuncName> <contextNormFuncName>operator_ls</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>1352</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>400</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>92</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>105</id> <name>trunc_ln1352</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1352</lineNumber> <contextFuncName>operator&amp;lt;&amp;lt;</contextFuncName> <contextNormFuncName>operator_ls</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator&amp;lt;&amp;lt;</second> </first> <second>1352</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>4294967295</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>401</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>93</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>106</id> <name>r_V_6</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1171</lineNumber> <contextFuncName>operator*&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_mul_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator*&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1171</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>402</item> <item>403</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.54</m_delay> <m_topoIndex>94</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>107</id> <name>sext_ln1245</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1245</lineNumber> <contextFuncName>operator+&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator+&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1245</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>0</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>404</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>100</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>108</id> <name>ret_V_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1245</lineNumber> <contextFuncName>operator+&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_add_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator+&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1245</second> </item> </second> </item> </inlineStackInfo> <originalName>ret.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2996679736</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>405</item> <item>407</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.96</m_delay> <m_topoIndex>101</m_topoIndex> <m_clusterGroupNumber>9</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>109</id> <name>zext_ln1246_1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_79_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1797268061</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>43</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>408</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>102</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>110</id> <name>sext_ln1246</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_79_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1769239916</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>43</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>409</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>103</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>111</id> <name>mul_ln1246</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_79_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1869182069</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>43</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>410</item> <item>411</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>5.49</m_delay> <m_topoIndex>104</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>112</id> <name>lhs_V</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>737</lineNumber> <contextFuncName>operator=&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>737</second> </item> </second> </item> </inlineStackInfo> <originalName>lhs.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>539767861</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>43</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>413</item> <item>414</item> <item>416</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>105</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>113</id> <name>ret_V_2</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>1246</lineNumber> <contextFuncName>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_sub_79_37_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator-&amp;lt;79, 37, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>1246</second> </item> </second> </item> </inlineStackInfo> <originalName>ret.V</originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>874523702</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>43</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>417</item> <item>418</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>1.62</m_delay> <m_topoIndex>106</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>114</id> <name>tmp_6</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>740</lineNumber> <contextFuncName>operator=&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>740</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>694510703</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>420</item> <item>421</item> <item>423</item> <item>425</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>107</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>115</id> <name>and_ln1</name> <fileName>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>740</lineNumber> <contextFuncName>operator=&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</contextFuncName> <contextNormFuncName>operator_assign_16_2_true_AP_TRN_AP_WRAP_0</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>C:/Xilinx/Vitis_HLS/2021.1/common/technology/autopilot\ap_fixed_base.h</first> <second>operator=&amp;lt;16, 2, true, AP_TRN, AP_WRAP, 0&amp;gt;</second> </first> <second>740</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1600415096</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>427</item> <item>428</item> <item>429</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>108</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>116</id> <name>_ln35</name> <fileName>Sigmoid.cpp</fileName> <fileDirectory>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</fileDirectory> <lineNumber>35</lineNumber> <contextFuncName>sigmoid_top</contextFuncName> <contextNormFuncName>sigmoid_top</contextNormFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>C:\Users\Sunnyday\AppData\Roaming\Xilinx\Vitis</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>Sigmoid.cpp</first> <second>sigmoid_top</second> </first> <second>35</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1600415096</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>430</item> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_isStartOfPath>0</m_isStartOfPath> <m_delay>0.00</m_delay> <m_topoIndex>109</m_topoIndex> <m_clusterGroupNumber>-1</m_clusterGroupNumber> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>51</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_111"> <Value> <Obj> <type>2</type> <id>122</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953394531</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>20479</content> </item> <item class_id_reference="16" object_id="_112"> <Value> <Obj> <type>2</type> <id>125</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953394531</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_113"> <Value> <Obj> <type>2</type> <id>130</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953394531</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_114"> <Value> <Obj> <type>2</type> <id>132</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953394531</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_115"> <Value> <Obj> <type>2</type> <id>136</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953394531</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>65535</content> </item> <item class_id_reference="16" object_id="_116"> <Value> <Obj> <type>2</type> <id>142</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>572669287</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_117"> <Value> <Obj> <type>2</type> <id>144</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>2020173407</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_118"> <Value> <Obj> <type>2</type> <id>149</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1397508187</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4294967243</content> </item> <item class_id_reference="16" object_id="_119"> <Value> <Obj> <type>2</type> <id>154</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>893020206</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_120"> <Value> <Obj> <type>2</type> <id>156</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1886352501</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_121"> <Value> <Obj> <type>2</type> <id>159</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1818391919</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>31</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_122"> <Value> <Obj> <type>2</type> <id>162</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741749051</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>5</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_123"> <Value> <Obj> <type>2</type> <id>181</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1717924464</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>65483</content> </item> <item class_id_reference="16" object_id="_124"> <Value> <Obj> <type>2</type> <id>183</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1818322464</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_125"> <Value> <Obj> <type>2</type> <id>196</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601200442</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4294967242</content> </item> <item class_id_reference="16" object_id="_126"> <Value> <Obj> <type>2</type> <id>201</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>741550437</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>54</content> </item> <item class_id_reference="16" object_id="_127"> <Value> <Obj> <type>2</type> <id>219</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702043749</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_128"> <Value> <Obj> <type>2</type> <id>227</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601265520</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1023</content> </item> <item class_id_reference="16" object_id="_129"> <Value> <Obj> <type>2</type> <id>229</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>673197109</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>1022</content> </item> <item class_id_reference="16" object_id="_130"> <Value> <Obj> <type>2</type> <id>232</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1650418789</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_131"> <Value> <Obj> <type>2</type> <id>239</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1630019628</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_132"> <Value> <Obj> <type>2</type> <id>246</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>539768105</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>52</content> </item> <item class_id_reference="16" object_id="_133"> <Value> <Obj> <type>2</type> <id>256</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1330007625</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>11</bitwidth> </Value> <const_type>0</const_type> <content>2047</content> </item> <item class_id_reference="16" object_id="_134"> <Value> <Obj> <type>2</type> <id>259</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1685024095</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>52</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_135"> <Value> <Obj> <type>2</type> <id>264</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>694510703</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>1</const_type> <content>2.375</content> </item> <item class_id_reference="16" object_id="_136"> <Value> <Obj> <type>2</type> <id>273</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>644182881</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>12</content> </item> <item class_id_reference="16" object_id="_137"> <Value> <Obj> <type>2</type> <id>277</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>539767840</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_138"> <Value> <Obj> <type>2</type> <id>282</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1953721967</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>5</content> </item> <item class_id_reference="16" object_id="_139"> <Value> <Obj> <type>2</type> <id>288</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1918854503</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_140"> <Value> <Obj> <type>2</type> <id>292</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701080941</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <const_type>0</const_type> <content>13824</content> </item> <item class_id_reference="16" object_id="_141"> <Value> <Obj> <type>2</type> <id>298</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701080941</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_142"> <Value> <Obj> <type>2</type> <id>307</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1226980729</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>10240</content> </item> <item class_id_reference="16" object_id="_143"> <Value> <Obj> <type>2</type> <id>310</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1629910131</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>8192</content> </item> <item class_id_reference="16" object_id="_144"> <Value> <Obj> <type>2</type> <id>315</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701080941</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_145"> <Value> <Obj> <type>2</type> <id>339</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601200424</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>16384</content> </item> <item class_id_reference="16" object_id="_146"> <Value> <Obj> <type>2</type> <id>344</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1853187616</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>29</bitwidth> </Value> <const_type>0</const_type> <content>5909</content> </item> <item class_id_reference="16" object_id="_147"> <Value> <Obj> <type>2</type> <id>349</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>543516513</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>24</content> </item> <item class_id_reference="16" object_id="_148"> <Value> <Obj> <type>2</type> <id>351</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>539587694</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>27</content> </item> <item class_id_reference="16" object_id="_149"> <Value> <Obj> <type>2</type> <id>355</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>795766637</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>20</content> </item> <item class_id_reference="16" object_id="_150"> <Value> <Obj> <type>2</type> <id>357</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>694510703</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>23</content> </item> <item class_id_reference="16" object_id="_151"> <Value> <Obj> <type>2</type> <id>363</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1768316784</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>19</content> </item> <item class_id_reference="16" object_id="_152"> <Value> <Obj> <type>2</type> <id>367</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>543649385</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>20</bitwidth> </Value> <const_type>0</const_type> <content>2839</content> </item> <item class_id_reference="16" object_id="_153"> <Value> <Obj> <type>2</type> <id>373</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>644182881</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>10</content> </item> <item class_id_reference="16" object_id="_154"> <Value> <Obj> <type>2</type> <id>377</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1919250543</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>15</bitwidth> </Value> <const_type>0</const_type> <content>16384</content> </item> <item class_id_reference="16" object_id="_155"> <Value> <Obj> <type>2</type> <id>381</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701080941</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_156"> <Value> <Obj> <type>2</type> <id>396</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1702390118</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>14</content> </item> <item class_id_reference="16" object_id="_157"> <Value> <Obj> <type>2</type> <id>398</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1601200424</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>29</content> </item> <item class_id_reference="16" object_id="_158"> <Value> <Obj> <type>2</type> <id>406</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>539780469</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>17</bitwidth> </Value> <const_type>0</const_type> <content>16384</content> </item> <item class_id_reference="16" object_id="_159"> <Value> <Obj> <type>2</type> <id>415</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1920213036</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>29</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>422</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1701978146</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>28</content> </item> <item class_id_reference="16" object_id="_161"> <Value> <Obj> <type>2</type> <id>424</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>1919250543</coreId> <rtlModuleName></rtlModuleName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>42</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="_162"> <Obj> <type>3</type> <id>117</id> <name>sigmoid_top</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <contextNormFuncName></contextNormFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <control></control> <opType></opType> <implIndex></implIndex> <coreName></coreName> <isStorage>0</isStorage> <storageDepth>0</storageDepth> <coreId>825110834</coreId> <rtlModuleName></rtlModuleName> </Obj> <node_objs> <count>109</count> <item_version>0</item_version> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> <item>17</item> <item>18</item> <item>19</item> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> <item>35</item> <item>36</item> <item>37</item> <item>38</item> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</item> <item>64</item> <item>65</item> <item>66</item> <item>67</item> <item>68</item> <item>69</item> <item>70</item> <item>71</item> <item>72</item> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>211</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_163"> <id>120</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>8</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_164"> <id>121</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_165"> <id>123</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>9</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_166"> <id>124</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_167"> <id>126</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_168"> <id>129</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_169"> <id>131</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_170"> <id>133</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_171"> <id>137</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_172"> <id>138</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_173"> <id>141</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_174"> <id>143</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_175"> <id>145</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_176"> <id>146</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>14</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_177"> <id>147</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>15</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_178"> <id>148</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_179"> <id>150</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>16</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_180"> <id>153</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_181"> <id>155</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_182"> <id>157</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_183"> <id>158</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_184"> <id>160</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>18</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_185"> <id>161</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>19</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_186"> <id>163</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_187"> <id>164</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_188"> <id>165</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_189"> <id>166</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_190"> <id>167</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>22</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_191"> <id>168</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_192"> <id>169</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_193"> <id>170</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_194"> <id>171</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>24</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_195"> <id>174</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_196"> <id>175</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_197"> <id>176</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_198"> <id>177</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_199"> <id>178</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_200"> <id>179</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_201"> <id>180</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_202"> <id>182</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_203"> <id>184</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_204"> <id>185</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>29</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_205"> <id>186</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="_206"> <id>187</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>30</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_207"> <id>188</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_208"> <id>189</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>31</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_209"> <id>190</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_210"> <id>191</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_211"> <id>192</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_212"> <id>193</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_213"> <id>194</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>34</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_214"> <id>195</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_215"> <id>197</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_216"> <id>198</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_217"> <id>199</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>37</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_218"> <id>200</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="_219"> <id>202</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_220"> <id>203</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_221"> <id>204</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_222"> <id>205</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>40</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_223"> <id>206</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="_224"> <id>207</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_225"> <id>208</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>41</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_226"> <id>209</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_227"> <id>210</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_228"> <id>211</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>42</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_229"> <id>212</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>43</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_230"> <id>213</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>44</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_231"> <id>214</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="_232"> <id>217</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_233"> <id>218</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_234"> <id>220</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>45</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_235"> <id>221</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="_236"> <id>224</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_237"> <id>225</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>47</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_238"> <id>226</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="_239"> <id>228</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_240"> <id>230</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>48</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_241"> <id>231</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>49</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_242"> <id>233</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_243"> <id>234</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>50</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_244"> <id>235</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_245"> <id>236</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_246"> <id>240</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_247"> <id>241</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>52</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_248"> <id>244</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_249"> <id>245</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_250"> <id>247</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_251"> <id>248</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>53</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_252"> <id>249</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>54</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_253"> <id>252</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_254"> <id>253</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_255"> <id>254</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>55</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_256"> <id>255</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_257"> <id>257</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>56</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_258"> <id>258</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_259"> <id>260</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>57</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_260"> <id>261</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="_261"> <id>262</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="_262"> <id>263</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_263"> <id>265</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>59</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_264"> <id>266</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_265"> <id>267</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_266"> <id>268</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_267"> <id>269</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>61</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_268"> <id>272</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_269"> <id>274</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_270"> <id>275</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>62</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_271"> <id>276</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="_272"> <id>278</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>63</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_273"> <id>281</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_274"> <id>283</id> <edge_type>1</edge_type> <source_obj>282</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_275"> <id>284</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>64</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_276"> <id>287</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="_277"> <id>289</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>65</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_278"> <id>290</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="_279"> <id>291</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="_280"> <id>293</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>67</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_281"> <id>294</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>68</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_282"> <id>297</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_283"> <id>299</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_284"> <id>300</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>69</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_285"> <id>303</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="_286"> <id>304</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>70</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_287"> <id>305</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="_288"> <id>306</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="_289"> <id>308</id> <edge_type>1</edge_type> <source_obj>307</source_obj> <sink_obj>72</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_290"> <id>309</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_291"> <id>311</id> <edge_type>1</edge_type> <source_obj>310</source_obj> <sink_obj>73</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_292"> <id>314</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_293"> <id>316</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_294"> <id>317</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>74</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_295"> <id>320</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_296"> <id>321</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>75</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_297"> <id>322</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_298"> <id>323</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>76</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_299"> <id>324</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_300"> <id>325</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>77</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_301"> <id>326</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="_302"> <id>327</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_303"> <id>328</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>78</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_304"> <id>329</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_305"> <id>330</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>79</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_306"> <id>331</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>80</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_307"> <id>332</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="_308"> <id>333</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_309"> <id>334</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>81</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_310"> <id>335</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="_311"> <id>336</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_312"> <id>337</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>82</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_313"> <id>338</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_314"> <id>340</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_315"> <id>341</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_316"> <id>342</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>84</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_317"> <id>343</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_318"> <id>345</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>85</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_319"> <id>348</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_320"> <id>350</id> <edge_type>1</edge_type> <source_obj>349</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_321"> <id>352</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>86</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_322"> <id>354</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_323"> <id>356</id> <edge_type>1</edge_type> <source_obj>355</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_324"> <id>358</id> <edge_type>1</edge_type> <source_obj>357</source_obj> <sink_obj>87</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_325"> <id>361</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_326"> <id>362</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_327"> <id>364</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>88</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_328"> <id>365</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>89</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_329"> <id>366</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_330"> <id>368</id> <edge_type>1</edge_type> <source_obj>367</source_obj> <sink_obj>90</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_331"> <id>369</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>91</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_332"> <id>372</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_333"> <id>374</id> <edge_type>1</edge_type> <source_obj>373</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_334"> <id>375</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>92</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_335"> <id>376</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>93</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_336"> <id>378</id> <edge_type>1</edge_type> <source_obj>377</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_337"> <id>379</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>94</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_338"> <id>380</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_339"> <id>382</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_340"> <id>383</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>95</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_341"> <id>384</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>96</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_342"> <id>385</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="_343"> <id>386</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>98</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_344"> <id>387</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="_345"> <id>388</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>99</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_346"> <id>389</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>100</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_347"> <id>390</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>101</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_348"> <id>391</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_349"> <id>392</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>102</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_350"> <id>395</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_351"> <id>397</id> <edge_type>1</edge_type> <source_obj>396</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_352"> <id>399</id> <edge_type>1</edge_type> <source_obj>398</source_obj> <sink_obj>103</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_353"> <id>400</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>104</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_354"> <id>401</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>105</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_355"> <id>402</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="_356"> <id>403</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="_357"> <id>404</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="_358"> <id>405</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_359"> <id>407</id> <edge_type>1</edge_type> <source_obj>406</source_obj> <sink_obj>108</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_360"> <id>408</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="_361"> <id>409</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>110</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_362"> <id>410</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>111</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_363"> <id>411</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="_364"> <id>414</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_365"> <id>416</id> <edge_type>1</edge_type> <source_obj>415</source_obj> <sink_obj>112</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_366"> <id>417</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_367"> <id>418</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>113</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_368"> <id>421</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_369"> <id>423</id> <edge_type>1</edge_type> <source_obj>422</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_370"> <id>425</id> <edge_type>1</edge_type> <source_obj>424</source_obj> <sink_obj>114</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_371"> <id>428</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="_372"> <id>429</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>115</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_373"> <id>430</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>116</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_374"> <mId>1</mId> <mTag>sigmoid_top</mTag> <mNormTag>sigmoid_top</mNormTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>117</item> </basic_blocks> <mII>1</mII> <mDepth>11</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>10</mMinLatency> <mMaxLatency>10</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>109</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>8</first> <second class_id="28" tracking_level="0" version="0"> <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>2</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>16</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>18</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>19</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>20</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>21</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>22</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>41</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>44</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>46</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>47</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>0</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>2</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>60</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>2</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>0</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>83</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>0</first> <second>3</second> </second> </item> <item> <first>86</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>3</first> <second>3</second> </second> </item> <item> <first>91</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>97</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>6</first> <second>3</second> </second> </item> <item> <first>100</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>6</first> <second>3</second> </second> </item> <item> <first>107</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>10</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>117</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>10</second> </second> </item> </bblk_ent_exit> <regions class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="1" version="0" object_id="_375"> <region_name>sigmoid_top</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>117</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>11</pipe_depth> <mDBIIViolationVec class_id="34" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </mDBIIViolationVec> </item> </regions> <dp_fu_nodes class_id="35" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="36" 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="37" 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="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core> <count>0</count> <item_version>0</item_version> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
-- Copyright (c) 2019 Maxim Reznik <reznikmm@gmail.com> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Ada.Characters.Wide_Wide_Latin_1; with League.Text_Codecs; with Slim.Message_Visiters; package body Slim.Messages.strm is List : constant Field_Description_Array := ((Uint_8_Field, 1), -- Command (Uint_8_Field, 1), -- Auto_Start (Uint_8_Field, 1), -- Format (Uint_8_Field, 1), -- PCM_Sample_Size (Uint_8_Field, 1), -- PCM_Sample_Rate (Uint_8_Field, 1), -- PCM_Channels (Uint_8_Field, 1), -- PCM_Endian (Uint_8_Field, 1), -- Threshold (Uint_8_Field, 1), -- Spdif (Uint_8_Field, 1), -- Transition_Period (Uint_8_Field, 1), -- Transition_Type (Uint_8_Field, 1), -- Flags (Uint_8_Field, 1), -- Output_Threshold (Uint_8_Field, 1), -- Reserved (Uint_32_Field, 1), -- Replay_Gain (Uint_16_Field, 1), -- Server_Port (Uint_8_Field, 4), -- Server_IP (Custom_Field, 1)); -- Request ---------- -- Read -- ---------- overriding function Read (Data : not null access League.Stream_Element_Vectors.Stream_Element_Vector) return Strm_Message is begin return Result : Strm_Message do Read_Fields (Result, List, Data.all); end return; end Read; ----------------------- -- Read_Custom_Field -- ----------------------- overriding procedure Read_Custom_Field (Self : in out Strm_Message; Index : Positive; Input : in out Ada.Streams.Stream_Element_Offset; Data : League.Stream_Element_Vectors.Stream_Element_Vector) is use type Ada.Streams.Stream_Element_Offset; Content : constant Ada.Streams.Stream_Element_Array (1 .. Data.Length) := Data.To_Stream_Element_Array; begin pragma Assert (Index = 1); Self.Request := League.Text_Codecs.Codec_For_Application_Locale.Decode (Content (Input .. Content'Last)); Input := Content'Last + 1; end Read_Custom_Field; ---------- -- Stop -- ---------- not overriding procedure Simple_Command (Self : in out Strm_Message; Command : Play_Command) is begin Self.Data_8 := ((case Command is when Start => Character'Pos ('s'), when Pause => Character'Pos ('p'), when Unpause => Character'Pos ('u'), when Stop => Character'Pos ('q'), when Status => Character'Pos ('t'), when Flush => Character'Pos ('f'), when Skip_Ahead => Character'Pos ('a')), Character'Pos ('0'), -- Auto_Start Character'Pos ('m'), -- Format Character'Pos ('?'), -- PCM_Sample_Size Character'Pos ('?'), -- PCM_Sample_Rate Character'Pos ('?'), -- PCM_Channels Character'Pos ('?'), -- PCM_Endian 0, -- Threshold 0, -- Spdif 0, -- Transition_Period Character'Pos ('0'), -- Transition_Type 0, -- Flags 0, -- Output_Threshold 0, -- Reserved 0, 0, 0, 0); -- Server_IP Self.Request.Clear; end Simple_Command; ----------- -- Start -- ----------- not overriding procedure Start (Self : in out Strm_Message; Server : Server_Address; Request : League.String_Vectors.Universal_String_Vector; Auto_Play : Boolean := True) is subtype X is Interfaces.Unsigned_8; Auto_Start : Character := '2'; -- direct streaming Image : constant League.String_Vectors.Universal_String_Vector := League.Strings.From_UTF_8_String (GNAT.Sockets.Image (Server.Addr)).Split ('.'); CR_LF : constant Wide_Wide_String := (Ada.Characters.Wide_Wide_Latin_1.CR, Ada.Characters.Wide_Wide_Latin_1.LF); begin if Auto_Play then Auto_Start := '3'; -- direct+auto end if; Self.Data_8 := (Character'Pos ('s'), Character'Pos (Auto_Start), -- Auto_Start Character'Pos ('m'), -- Format MP3 Character'Pos ('?'), -- PCM_Sample_Size Character'Pos ('?'), -- PCM_Sample_Rate Character'Pos ('?'), -- PCM_Channels Character'Pos ('?'), -- PCM_Endian 20, -- Threshold, KB input buffer data before autostart or notify 0, -- Spdif 0, -- Transition_Period Character'Pos ('0'), -- Transition_Type 0, -- Flags 1, -- Output Threshold, output buffer before playback starts 0.1s 0, -- Reserved X'Wide_Wide_Value (Image (1).To_Wide_Wide_String), X'Wide_Wide_Value (Image (2).To_Wide_Wide_String), X'Wide_Wide_Value (Image (3).To_Wide_Wide_String), X'Wide_Wide_Value (Image (4).To_Wide_Wide_String)); Self.Data_16 := (1 => Interfaces.Unsigned_16 (Server.Port)); -- Port Self.Data_32 := (1 => 0); -- replay gain Self.Request := Request.Join (CR_LF); end Start; ----------- -- Visit -- ----------- overriding procedure Visit (Self : not null access Strm_Message; Visiter : in out Slim.Message_Visiters.Visiter'Class) is begin Visiter.strm (Self); end Visit; ----------- -- Write -- ----------- overriding procedure Write (Self : Strm_Message; Tag : out Message_Tag; Data : out League.Stream_Element_Vectors.Stream_Element_Vector) is begin Tag := "strm"; Write_Fields (Self, List, Data); end Write; ------------------------ -- Write_Custom_Field -- ------------------------ overriding procedure Write_Custom_Field (Self : Strm_Message; Index : Positive; Data : in out League.Stream_Element_Vectors.Stream_Element_Vector) is begin pragma Assert (Index = 1); Data.Append (League.Text_Codecs.Codec_For_Application_Locale.Encode (Self.Request)); end Write_Custom_Field; end Slim.Messages.strm;
-- C87B09C.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 OVERLOADING RESOLUTION USES THE RULE THAT: -- -- IN A FLOATING POINT TYPE DEFINITION, THE DIGITS EXPRESSION MUST -- BE OF SOME INTEGRAL TYPE. SIMILARLY, THE DELTA EXPRESSION IN A -- FIXED POINT TYPE DEFINITION MUST BE OF SOME REAL TYPE. -- TRH 30 JUNE 82 WITH REPORT; USE REPORT; PROCEDURE C87B09C IS FUNCTION "+" (X : INTEGER) RETURN FLOAT IS BEGIN FAILED ("DIGITS EXPRESSION MUST BE OF AN INTEGRAL TYPE"); RETURN 2.0; END "+"; FUNCTION "+" (X : FLOAT) RETURN INTEGER IS BEGIN FAILED ("DELTA EXPRESSION MUST BE OF A REAL TYPE"); RETURN 2; END "+"; BEGIN TEST ("C87B09C","OVERLOADED DIGITS/DELTA EXPRESSIONS IN " & "REAL TYPE DEFINITIONS"); DECLARE TYPE EXACT IS DIGITS "+" (4); TYPE CENTI IS DELTA "+" (0.01) RANGE -2.0 .. 2.0; TYPE CLOSE IS DIGITS "+" (2) RANGE -1.0 .. 1.0; TYPE DECI IS DELTA "+" (0.1) RANGE -1.0 .. 1.0; BEGIN NULL; END; RESULT; END C87B09C;
------------------------------------------------------------------------------ -- -- -- 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 League.Holders; package AMF.UMLDI.Holders is pragma Preelaborate; -- UMLAssociationOrConnectorOrLinkShapeKind [0..1] function Element (Holder : League.Holders.Holder) return AMF.UMLDI.Optional_UMLDI_UML_Association_Or_Connector_Or_Link_Shape_Kind; function To_Holder (Element : AMF.UMLDI.Optional_UMLDI_UML_Association_Or_Connector_Or_Link_Shape_Kind) return League.Holders.Holder; -- UMLInheritedStateBorderKind [0..1] function Element (Holder : League.Holders.Holder) return AMF.UMLDI.Optional_UMLDI_UML_Inherited_State_Border_Kind; function To_Holder (Element : AMF.UMLDI.Optional_UMLDI_UML_Inherited_State_Border_Kind) return League.Holders.Holder; -- UMLInteractionDiagramKind [0..1] function Element (Holder : League.Holders.Holder) return AMF.UMLDI.Optional_UMLDI_UML_Interaction_Diagram_Kind; function To_Holder (Element : AMF.UMLDI.Optional_UMLDI_UML_Interaction_Diagram_Kind) return League.Holders.Holder; -- UMLInteractionTableLabelKind [0..1] function Element (Holder : League.Holders.Holder) return AMF.UMLDI.Optional_UMLDI_UML_Interaction_Table_Label_Kind; function To_Holder (Element : AMF.UMLDI.Optional_UMLDI_UML_Interaction_Table_Label_Kind) return League.Holders.Holder; -- UMLNavigabilityNotationKind [0..1] function Element (Holder : League.Holders.Holder) return AMF.UMLDI.Optional_UMLDI_UML_Navigability_Notation_Kind; function To_Holder (Element : AMF.UMLDI.Optional_UMLDI_UML_Navigability_Notation_Kind) return League.Holders.Holder; end AMF.UMLDI.Holders;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M -- -- -- -- S p e c -- -- (SGI Irix, n32 ABI) -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package System is pragma Pure (System); -- Note that we take advantage of the implementation permission to -- make this unit Pure instead of Preelaborable, see RM 13.7(36) type Name is (SYSTEM_NAME_GNAT); System_Name : constant Name := SYSTEM_NAME_GNAT; -- System-Dependent Named Numbers Min_Int : constant := Long_Long_Integer'First; Max_Int : constant := Long_Long_Integer'Last; Max_Binary_Modulus : constant := 2 ** Long_Long_Integer'Size; Max_Nonbinary_Modulus : constant := Integer'Last; Max_Base_Digits : constant := Long_Long_Float'Digits; Max_Digits : constant := Long_Long_Float'Digits; Max_Mantissa : constant := 63; Fine_Delta : constant := 2.0 ** (-Max_Mantissa); Tick : constant := Standard'Tick; -- Storage-related Declarations type Address is private; Null_Address : constant Address; Storage_Unit : constant := Standard'Storage_Unit; Word_Size : constant := Standard'Word_Size; Memory_Size : constant := 2 ** Standard'Address_Size; -- Address comparison function "<" (Left, Right : Address) return Boolean; function "<=" (Left, Right : Address) return Boolean; function ">" (Left, Right : Address) return Boolean; function ">=" (Left, Right : Address) return Boolean; function "=" (Left, Right : Address) return Boolean; pragma Import (Intrinsic, "<"); pragma Import (Intrinsic, "<="); pragma Import (Intrinsic, ">"); pragma Import (Intrinsic, ">="); pragma Import (Intrinsic, "="); -- Other System-Dependent Declarations type Bit_Order is (High_Order_First, Low_Order_First); Default_Bit_Order : constant Bit_Order := High_Order_First; -- Priority-related Declarations (RM D.1) Max_Priority : constant Positive := 30; Max_Interrupt_Priority : constant Positive := 31; subtype Any_Priority is Integer range 0 .. Standard'Max_Interrupt_Priority; subtype Priority is Any_Priority range 0 .. Standard'Max_Priority; -- Functional notation is needed in the following to avoid visibility -- problems when this package is compiled through rtsfind in the middle -- of another compilation. subtype Interrupt_Priority is Any_Priority range Standard."+" (Standard'Max_Priority, 1) .. Standard'Max_Interrupt_Priority; Default_Priority : constant Priority := Standard."/" (Standard."+" (Priority'First, Priority'Last), 2); private type Address is mod Memory_Size; Null_Address : constant Address := 0; -------------------------------------- -- System Implementation Parameters -- -------------------------------------- -- These parameters provide information about the target that is used -- by the compiler. They are in the private part of System, where they -- can be accessed using the special circuitry in the Targparm unit -- whose source should be consulted for more detailed descriptions -- of the individual switch values. AAMP : constant Boolean := False; Command_Line_Args : constant Boolean := True; Denorm : constant Boolean := False; Frontend_Layout : constant Boolean := False; Functions_Return_By_DSP : constant Boolean := True; Long_Shifts_Inlined : constant Boolean := True; High_Integrity_Mode : constant Boolean := False; Machine_Overflows : constant Boolean := False; Machine_Rounds : constant Boolean := True; OpenVMS : constant Boolean := False; Signed_Zeros : constant Boolean := True; Stack_Check_Default : constant Boolean := False; Stack_Check_Probes : constant Boolean := True; Use_Ada_Main_Program_Name : constant Boolean := False; ZCX_By_Default : constant Boolean := True; GCC_ZCX_Support : constant Boolean := False; Front_End_ZCX_Support : constant Boolean := True; -- Note: Denorm is False because denormals are not supported on the -- R10000, and we want the code to be valid for this processor. end System;
-- This file is covered by the Internet Software Consortium (ISC) License -- Reference: ../License.txt with Ada.Calendar.Arithmetic; with Ada.Calendar.Formatting; with Ada.Direct_IO; with Replicant.Platform; package body PortScan.Buildcycle is package ACA renames Ada.Calendar.Arithmetic; package ACF renames Ada.Calendar.Formatting; package REP renames Replicant; ---------------------- -- initialize_log -- ---------------------- function initialize_log (id : builders) return Boolean is FA : access TIO.File_Type; H_ENV : constant String := "Environment"; H_OPT : constant String := "Options"; CFG1 : constant String := "/etc/make.conf"; CFG2 : constant String := "/etc/mk.conf"; UNAME : constant String := JT.USS (uname_mrv); BENV : constant String := get_environment (id); COPTS : constant String := get_options_configuration (id); PTVAR : JT.Text := get_port_variables (id); begin trackers (id).dynlink.Clear; trackers (id).head_time := CAL.Clock; declare log_path : constant String := log_name (trackers (id).seq_id); begin -- Try to defend malicious symlink: https://en.wikipedia.org/wiki/Symlink_race if AD.Exists (log_path) then AD.Delete_File (log_path); end if; TIO.Create (File => trackers (id).log_handle, Mode => TIO.Out_File, Name => log_path); FA := trackers (id).log_handle'Access; exception when error : others => raise cycle_log_error with "failed to create log " & log_path; end; TIO.Put_Line (FA.all, "=> Building " & get_catport (all_ports (trackers (id).seq_id))); TIO.Put_Line (FA.all, "Started : " & timestamp (trackers (id).head_time)); TIO.Put (FA.all, "Platform: " & UNAME); if BENV = discerr then TIO.Put_Line (FA.all, LAT.LF & "Environment definition failed, " & "aborting entire build"); return False; end if; TIO.Put_Line (FA.all, LAT.LF & log_section (H_ENV, True)); TIO.Put (FA.all, BENV); TIO.Put_Line (FA.all, log_section (H_ENV, False) & LAT.LF); TIO.Put_Line (FA.all, log_section (H_OPT, True)); TIO.Put (FA.all, COPTS); TIO.Put_Line (FA.all, log_section (H_OPT, False) & LAT.LF); dump_port_variables (id => id, content => PTVAR); case software_framework is when ports_collection => TIO.Put_Line (FA.all, log_section (CFG1, True)); TIO.Put (FA.all, dump_make_conf (id, CFG1)); TIO.Put_Line (FA.all, log_section (CFG1, False) & LAT.LF); when pkgsrc => TIO.Put_Line (FA.all, log_section (CFG2, True)); TIO.Put (FA.all, dump_make_conf (id, CFG2)); TIO.Put_Line (FA.all, log_section (CFG2, False) & LAT.LF); end case; return True; end initialize_log; -------------------- -- finalize_log -- -------------------- procedure finalize_log (id : builders) is begin TIO.Put_Line (trackers (id).log_handle, log_section ("Termination", True)); trackers (id).tail_time := CAL.Clock; TIO.Put_Line (trackers (id).log_handle, "Finished: " & timestamp (trackers (id).tail_time)); TIO.Put_Line (trackers (id).log_handle, log_duration (start => trackers (id).head_time, stop => trackers (id).tail_time)); TIO.Close (trackers (id).log_handle); end finalize_log; -------------------- -- log_duration -- -------------------- function log_duration (start, stop : CAL.Time) return String is raw : JT.Text := JT.SUS ("Duration:"); diff_days : ACA.Day_Count; diff_secs : Duration; leap_secs : ACA.Leap_Seconds_Count; use type ACA.Day_Count; begin ACA.Difference (Left => stop, Right => start, Days => diff_days, Seconds => diff_secs, Leap_Seconds => leap_secs); if diff_days > 0 then if diff_days = 1 then JT.SU.Append (raw, " 1 day and " & ACF.Image (Elapsed_Time => diff_secs)); else JT.SU.Append (raw, diff_days'Img & " days and " & ACF.Image (Elapsed_Time => diff_secs)); end if; else JT.SU.Append (raw, " " & ACF.Image (Elapsed_Time => diff_secs)); end if; return JT.USS (raw); end log_duration; ------------------------ -- elapsed_HH_MM_SS -- ------------------------ function elapsed_HH_MM_SS (start, stop : CAL.Time) return String is diff_days : ACA.Day_Count; diff_secs : Duration; leap_secs : ACA.Leap_Seconds_Count; secs_per_hour : constant Integer := 3600; total_hours : Integer; total_minutes : Integer; work_hours : Integer; work_seconds : Integer; use type ACA.Day_Count; begin ACA.Difference (Left => stop, Right => start, Days => diff_days, Seconds => diff_secs, Leap_Seconds => leap_secs); -- Seems the ACF image is shit, so let's roll our own. If more than -- 100 hours, change format to "HHH:MM.M" work_seconds := Integer (diff_secs); total_hours := work_seconds / secs_per_hour; total_hours := total_hours + Integer (diff_days) * 24; if total_hours < 24 then if work_seconds < 0 then return "--:--:--"; else work_seconds := work_seconds - (total_hours * secs_per_hour); total_minutes := work_seconds / 60; work_seconds := work_seconds - (total_minutes * 60); return JT.zeropad (total_hours, 2) & LAT.Colon & JT.zeropad (total_minutes, 2) & LAT.Colon & JT.zeropad (work_seconds, 2); end if; elsif total_hours < 100 then if work_seconds < 0 then return JT.zeropad (total_hours, 2) & ":00:00"; else work_hours := work_seconds / secs_per_hour; work_seconds := work_seconds - (work_hours * secs_per_hour); total_minutes := work_seconds / 60; work_seconds := work_seconds - (total_minutes * 60); return JT.zeropad (total_hours, 2) & LAT.Colon & JT.zeropad (total_minutes, 2) & LAT.Colon & JT.zeropad (work_seconds, 2); end if; else if work_seconds < 0 then return JT.zeropad (total_hours, 3) & ":00.0"; else work_hours := work_seconds / secs_per_hour; work_seconds := work_seconds - (work_hours * secs_per_hour); total_minutes := work_seconds / 60; work_seconds := (work_seconds - (total_minutes * 60)) * 10 / 60; return JT.zeropad (total_hours, 3) & LAT.Colon & JT.zeropad (total_minutes, 2) & '.' & JT.int2str (work_seconds); end if; end if; end elapsed_HH_MM_SS; ------------------- -- elapsed_now -- ------------------- function elapsed_now return String is begin return elapsed_HH_MM_SS (start => start_time, stop => CAL.Clock); end elapsed_now; ----------------------------- -- generic_system_command -- ----------------------------- function generic_system_command (command : String) return JT.Text is content : JT.Text; status : Integer; begin content := Unix.piped_command (command, status); if status /= 0 then raise cycle_cmd_error with "cmd: " & command & " (return code =" & status'Img & ")"; end if; return content; end generic_system_command; --------------------- -- set_uname_mrv -- --------------------- procedure set_uname_mrv is -- valid for all platforms command : constant String := "/usr/bin/uname -mrv"; begin uname_mrv := generic_system_command (command); exception when others => uname_mrv := JT.SUS (discerr); end set_uname_mrv; ---------------- -- get_root -- ---------------- function get_root (id : builders) return String is id_image : constant String := Integer (id)'Img; suffix : String := "/SL00"; begin if id < 10 then suffix (5) := id_image (2); else suffix (4 .. 5) := id_image (2 .. 3); end if; return JT.USS (PM.configuration.dir_buildbase) & suffix; end get_root; ----------------------- -- get_environment -- ----------------------- function get_environment (id : builders) return String is root : constant String := get_root (id); command : constant String := chroot & root & environment_override; begin return JT.USS (generic_system_command (command)); exception when others => return discerr; end get_environment; --------------------------------- -- get_options_configuration -- --------------------------------- function get_options_configuration (id : builders) return String is root : constant String := get_root (id); catport : constant String := get_catport (all_ports (trackers (id).seq_id)); command : constant String := chroot & root & environment_override & chroot_make_program & " -C " & port_specification (catport); begin case software_framework is when ports_collection => return JT.USS (generic_system_command (command & " showconfig")); when pkgsrc => return JT.USS (generic_system_command (command & " show-options")); end case; exception when others => return discerr; end get_options_configuration; ------------------------ -- split_collection -- ------------------------ function split_collection (line : JT.Text; title : String) return String is -- Support spaces in two ways -- 1) quoted, e.g. TYPING="The Quick Brown Fox" -- 2) Escaped, e.g. TYPING=The\ Quick\ Brown\ Fox meat : JT.Text; waiting : Boolean := True; escaped : Boolean := False; quoted : Boolean := False; keepit : Boolean; counter : Natural := 0; meatlen : Natural := 0; linelen : Natural := JT.SU.Length (line); onechar : String (1 .. 1); meatstr : String (1 .. linelen); begin loop counter := counter + 1; exit when counter > linelen; keepit := True; onechar := JT.SU.Slice (Source => line, Low => counter, High => counter); if onechar (1) = LAT.Reverse_Solidus then -- A) if inside quotes, it's literal -- B) if it's first RS, don't keep but mark escaped -- C) If it's second RS, it's literal, remove escaped -- D) RS can never start a new NV pair if not quoted then if not escaped then keepit := False; end if; escaped := not escaped; end if; elsif escaped then -- E) by definition, next character after an escape is literal -- We know it's not inside quotes. Keep this (could be a space) waiting := False; escaped := not escaped; elsif onechar (1) = LAT.Space then if waiting then keepit := False; else if not quoted then -- name-pair ended, reset waiting := True; quoted := False; onechar (1) := LAT.LF; end if; end if; else waiting := False; if onechar (1) = LAT.Quotation then quoted := not quoted; end if; end if; if keepit then meatlen := meatlen + 1; meatstr (meatlen) := onechar (1); end if; end loop; return log_section (title, True) & LAT.LF & meatstr (1 .. meatlen) & LAT.LF & log_section (title, False) & LAT.LF; end split_collection; -------------------------- -- get_port_variables -- -------------------------- function get_port_variables (id : builders) return JT.Text is root : constant String := get_root (id); catport : constant String := get_catport (all_ports (trackers (id).seq_id)); command : constant String := chroot & root & environment_override & chroot_make_program & " -C " & port_specification (catport); cmd_fpc : constant String := command & " -VCONFIGURE_ENV -VCONFIGURE_ARGS -VMAKE_ENV -VMAKE_ARGS" & " -VPLIST_SUB -VSUB_LIST"; cmd_nps : constant String := command & " .MAKE.EXPAND_VARIABLES=yes -VCONFIGURE_ENV -VCONFIGURE_ARGS" & " -VMAKE_ENV -VMAKE_FLAGS -VBUILD_MAKE_FLAGS -VPLIST_SUBST" & " -VFILES_SUBST"; begin case software_framework is when ports_collection => return generic_system_command (cmd_fpc); when pkgsrc => return generic_system_command (cmd_nps); end case; exception when others => return JT.SUS (discerr); end get_port_variables; --------------------------- -- dump_port_variables -- --------------------------- procedure dump_port_variables (id : builders; content : JT.Text) is LA : access TIO.File_Type := trackers (id).log_handle'Access; topline : JT.Text; concopy : JT.Text := content; type result_range_fpc is range 1 .. 6; type result_range_nps is range 1 .. 7; begin case software_framework is when ports_collection => for k in result_range_fpc loop JT.nextline (lineblock => concopy, firstline => topline); case k is when 1 => TIO.Put_Line (LA.all, split_collection (topline, "CONFIGURE_ENV")); when 2 => TIO.Put_Line (LA.all, split_collection (topline, "CONFIGURE_ARGS")); when 3 => TIO.Put_Line (LA.all, split_collection (topline, "MAKE_ENV")); when 4 => TIO.Put_Line (LA.all, split_collection (topline, "MAKE_ARGS")); when 5 => TIO.Put_Line (LA.all, split_collection (topline, "PLIST_SUB")); when 6 => TIO.Put_Line (LA.all, split_collection (topline, "SUB_LIST")); end case; end loop; when pkgsrc => for k in result_range_nps loop JT.nextline (lineblock => concopy, firstline => topline); case k is when 1 => TIO.Put_Line (LA.all, split_collection (topline, "CONFIGURE_ENV")); when 2 => TIO.Put_Line (LA.all, split_collection (topline, "CONFIGURE_ARGS")); when 3 => TIO.Put_Line (LA.all, split_collection (topline, "MAKE_ENV")); when 4 => TIO.Put_Line (LA.all, split_collection (topline, "MAKE_FLAGS")); when 5 => TIO.Put_Line (LA.all, split_collection (topline, "BUILD_MAKE_FLAGS")); when 6 => TIO.Put_Line (LA.all, split_collection (topline, "PLIST_SUBST")); when 7 => TIO.Put_Line (LA.all, split_collection (topline, "FILES_SUBST")); end case; end loop; end case; end dump_port_variables; ---------------- -- log_name -- ---------------- function log_name (sid : port_id) return String is catport : constant String := get_catport (all_ports (sid)); begin return JT.USS (PM.configuration.dir_logs) & "/" & JT.part_1 (catport) & "___" & JT.part_2 (catport) & ".log"; end log_name; ----------------- -- dump_file -- ----------------- function dump_file (filename : String) return String is File_Size : Natural := Natural (AD.Size (filename)); subtype File_String is String (1 .. File_Size); package File_String_IO is new Ada.Direct_IO (File_String); File : File_String_IO.File_Type; Contents : File_String; begin File_String_IO.Open (File, Mode => File_String_IO.In_File, Name => filename); File_String_IO.Read (File, Item => Contents); File_String_IO.Close (File); return String (Contents); end dump_file; ---------------------- -- dump_make_conf -- ---------------------- function dump_make_conf (id : builders; conf_file : String) return String is root : constant String := get_root (id); filename : constant String := root & conf_file; begin return dump_file (filename); end dump_make_conf; ------------------ -- initialize -- ------------------ procedure initialize (test_mode : Boolean; jail_env : JT.Text) is begin set_uname_mrv; testing := test_mode; lock_localbase := testing and then Unix.env_variable_defined ("LOCK"); slave_env := jail_env; declare logdir : constant String := JT.USS (PM.configuration.dir_logs); begin if not AD.Exists (logdir) then AD.Create_Path (New_Directory => logdir); end if; exception when error : others => raise cycle_log_error with "failed to create " & logdir; end; obtain_custom_environment; end initialize; ------------------- -- log_section -- ------------------- function log_section (title : String; header : Boolean) return String is hyphens : constant String := (1 .. 50 => '-'); begin if header then return LAT.LF & hyphens & LAT.LF & "-- " & title & LAT.LF & hyphens; else return ""; end if; end log_section; --------------------- -- log_phase_end -- --------------------- procedure log_phase_end (id : builders) is begin TIO.Put_Line (trackers (id).log_handle, "" & LAT.LF); end log_phase_end; ----------------------- -- log_phase_begin -- ----------------------- procedure log_phase_begin (phase : String; id : builders) is hyphens : constant String := (1 .. 80 => '-'); middle : constant String := "-- Phase: " & phase; begin TIO.Put_Line (trackers (id).log_handle, LAT.LF & hyphens & LAT.LF & middle & LAT.LF & hyphens); end log_phase_begin; ----------------------- -- generic_execute -- ----------------------- function generic_execute (id : builders; command : String; dogbite : out Boolean; time_limit : execution_limit) return Boolean is subtype time_cycle is execution_limit range 1 .. time_limit; subtype one_minute is Positive range 1 .. 230; -- lose 10 in rounding type dim_watchdog is array (time_cycle) of Natural; use type Unix.process_exit; watchdog : dim_watchdog; squirrel : time_cycle := time_cycle'First; cycle_done : Boolean := False; pid : Unix.pid_t; status : Unix.process_exit; lock_lines : Natural; quartersec : one_minute := one_minute'First; hangmonitor : constant Boolean := True; synthexec : constant String := host_localbase & "/libexec/synthexec"; truecommand : constant String := synthexec & " " & log_name (trackers (id).seq_id) & " " & command; begin dogbite := False; watchdog (squirrel) := trackers (id).loglines; pid := Unix.launch_process (truecommand); if Unix.fork_failed (pid) then return False; end if; loop delay 0.25; if quartersec = one_minute'Last then quartersec := one_minute'First; -- increment squirrel if squirrel = time_cycle'Last then squirrel := time_cycle'First; cycle_done := True; else squirrel := squirrel + 1; end if; if hangmonitor then lock_lines := trackers (id).loglines; if cycle_done then if watchdog (squirrel) = lock_lines then -- Log hasn't advanced in a full cycle so bail out dogbite := True; Unix.kill_process_tree (process_group => pid); delay 5.0; -- Give some time for error to write to log return False; end if; end if; watchdog (squirrel) := lock_lines; end if; else quartersec := quartersec + 1; end if; status := Unix.process_status (pid); if status = Unix.exited_normally then return True; end if; if status = Unix.exited_with_error then return False; end if; end loop; end generic_execute; ------------------------------ -- stack_linked_libraries -- ------------------------------ procedure stack_linked_libraries (id : builders; base, filename : String) is command : String := chroot & base & " /usr/bin/objdump -p " & filename; comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; begin comres := generic_system_command (command); crlen1 := JT.SU.Length (comres); loop JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; if not JT.IsBlank (topline) then if JT.contains (topline, "NEEDED") then if not trackers (id).dynlink.Contains (topline) then trackers (id).dynlink.Append (topline); end if; end if; end if; end loop; exception -- the command result was not zero, so it was an expected format -- or static file. Just skip it. (Should never happen) when bad_result : others => null; end stack_linked_libraries; ---------------------------- -- log_linked_libraries -- ---------------------------- procedure log_linked_libraries (id : builders) is procedure log_dump (cursor : string_crate.Cursor); comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; pkgfile : constant String := JT.USS (all_ports (trackers (id).seq_id).package_name); pkgname : constant String := pkgfile (1 .. pkgfile'Last - 4); root : constant String := get_root (id); command : constant String := chroot & root & environment_override & REP.root_localbase & "/sbin/pkg-static query %Fp " & pkgname; procedure log_dump (cursor : string_crate.Cursor) is begin TIO.Put_Line (trackers (id).log_handle, JT.USS (string_crate.Element (Position => cursor))); end log_dump; begin TIO.Put_Line (trackers (id).log_handle, "=> Checking shared library dependencies"); comres := generic_system_command (command); crlen1 := JT.SU.Length (comres); loop JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; if REP.Platform.dynamically_linked (root, JT.USS (topline)) then stack_linked_libraries (id, root, JT.USS (topline)); end if; end loop; trackers (id).dynlink.Iterate (log_dump'Access); exception when others => null; end log_linked_libraries; ---------------------------- -- environment_override -- ---------------------------- function environment_override (enable_tty : Boolean := False) return String is function set_terminal (enable_tty : Boolean) return String; function set_terminal (enable_tty : Boolean) return String is begin if enable_tty then return "TERM=cons25 "; end if; return "TERM=dumb "; end set_terminal; PATH : constant String := "PATH=/sbin:/bin:/usr/sbin:/usr/bin:" & REP.root_localbase & "/sbin:" & REP.root_localbase & "/bin "; TERM : constant String := set_terminal (enable_tty); USER : constant String := "USER=root "; HOME : constant String := "HOME=/root "; LANG : constant String := "LANG=C "; FTP : constant String := "SSL_NO_VERIFY_PEER=1 "; PKG8 : constant String := "PORTSDIR=" & dir_ports & " " & "PKG_DBDIR=/var/db/pkg8 " & "PKG_CACHEDIR=/var/cache/pkg8 "; CENV : constant String := JT.USS (customenv); JENV : constant String := JT.USS (slave_env); begin return " /usr/bin/env -i " & USER & HOME & LANG & PKG8 & TERM & FTP & PATH & JENV & CENV; end environment_override; --------------------- -- set_log_lines -- --------------------- procedure set_log_lines (id : builders) is log_path : constant String := log_name (trackers (id).seq_id); command : constant String := "/usr/bin/wc -l " & log_path; comres : JT.Text; begin if not uselog then trackers (id).loglines := 0; return; end if; comres := JT.trim (generic_system_command (command)); declare numtext : constant String := JT.part_1 (S => JT.USS (comres), separator => " "); begin trackers (id).loglines := Natural'Value (numtext); end; exception when others => null; -- just skip this cycle end set_log_lines; ----------------------- -- format_loglines -- ----------------------- function format_loglines (numlines : Natural) return String is begin if numlines < 10000000 then -- 10 million return JT.int2str (numlines); end if; declare kilo : constant Natural := numlines / 1000; kilotxt : constant String := JT.int2str (kilo); begin if numlines < 100000000 then -- 100 million return kilotxt (1 .. 2) & "." & kilotxt (3 .. 5) & 'M'; elsif numlines < 1000000000 then -- 1 billion return kilotxt (1 .. 3) & "." & kilotxt (3 .. 4) & 'M'; else return kilotxt (1 .. 4) & "." & kilotxt (3 .. 3) & 'M'; end if; end; end format_loglines; --------------------- -- elapsed_build -- --------------------- function elapsed_build (id : builders) return String is begin return elapsed_HH_MM_SS (start => trackers (id).head_time, stop => trackers (id).tail_time); end elapsed_build; ----------------------------- -- get_packages_per_hour -- ----------------------------- function get_packages_per_hour (packages_done : Natural; from_when : CAL.Time) return Natural is diff_days : ACA.Day_Count; diff_secs : Duration; leap_secs : ACA.Leap_Seconds_Count; result : Natural; rightnow : CAL.Time := CAL.Clock; work_seconds : Integer; work_days : Integer; use type ACA.Day_Count; begin if packages_done = 0 then return 0; end if; ACA.Difference (Left => rightnow, Right => from_when, Days => diff_days, Seconds => diff_secs, Leap_Seconds => leap_secs); work_seconds := Integer (diff_secs); work_days := Integer (diff_days); work_seconds := work_seconds + (work_days * 3600 * 24); if work_seconds < 0 then -- should be impossible to get here. return 0; end if; result := packages_done * 3600; result := result / work_seconds; return result; exception when others => return 0; end get_packages_per_hour; ------------------------ -- mark_file_system -- ------------------------ procedure mark_file_system (id : builders; action : String) is function attributes (action : String) return String; function attributes (action : String) return String is core : constant String := "uid,gid,mode,md5digest"; begin if action = "preconfig" then return core & ",time"; else return core; end if; end attributes; path_mm : String := JT.USS (PM.configuration.dir_buildbase) & "/Base"; path_sm : String := JT.USS (PM.configuration.dir_buildbase) & "/SL" & JT.zeropad (Natural (id), 2); mtfile : constant String := path_mm & "/mtree." & action & ".exclude"; command : constant String := "/usr/sbin/mtree -X " & mtfile & " -cn -k " & attributes (action) & " -p " & path_sm; filename : constant String := path_sm & "/tmp/mtree." & action; result : JT.Text; resfile : TIO.File_Type; begin result := generic_system_command (command); -- Try to defend malicious symlink: https://en.wikipedia.org/wiki/Symlink_race if AD.Exists (filename) then AD.Delete_File (filename); end if; TIO.Create (File => resfile, Mode => TIO.Out_File, Name => filename); TIO.Put (resfile, JT.USS (result)); TIO.Close (resfile); exception when others => if TIO.Is_Open (resfile) then TIO.Close (resfile); end if; end mark_file_system; -------------------------------- -- detect_leftovers_and_MIA -- -------------------------------- function detect_leftovers_and_MIA (id : builders; action : String; description : String) return Boolean is package crate is new AC.Vectors (Index_Type => Positive, Element_Type => JT.Text, "=" => JT.SU."="); package sorter is new crate.Generic_Sorting ("<" => JT.SU."<"); function ignore_modifications return Boolean; procedure print (cursor : crate.Cursor); procedure close_active_modifications; path_mm : String := JT.USS (PM.configuration.dir_buildbase) & "/Base"; path_sm : String := JT.USS (PM.configuration.dir_buildbase) & "/SL" & JT.zeropad (Natural (id), 2); mtfile : constant String := path_mm & "/mtree." & action & ".exclude"; filename : constant String := path_sm & "/tmp/mtree." & action; command : constant String := "/usr/sbin/mtree -X " & mtfile & " -f " & filename & " -p " & path_sm; status : Integer; comres : JT.Text; topline : JT.Text; crlen1 : Natural; crlen2 : Natural; toplen : Natural; skiprest : Boolean; passed : Boolean := True; activemod : Boolean := False; modport : JT.Text := JT.blank; reasons : JT.Text := JT.blank; leftover : crate.Vector; missing : crate.Vector; changed : crate.Vector; function ignore_modifications return Boolean is -- Some modifications need to be ignored -- A) */ls-R -- #ls-R files from texmf are often regenerated -- B) share/xml/catalog.ports -- # xmlcatmgr is constantly updating catalog.ports, ignore -- C) share/octave/octave_packages -- # Octave packages database, blank lines can be inserted -- # between pre-install and post-deinstall -- D) info/dir | */info/dir -- E) lib/gio/modules/giomodule.cache -- # gio modules cache could be modified for any gio modules -- F) etc/gconf/gconf.xml.defaults/%gconf-tree*.xml -- # gconftool-2 --makefile-uninstall-rule is unpredictable -- G) %%PEARDIR%%/.depdb | %%PEARDIR%%/.filemap -- # The is pear database cache -- H) "." with timestamp modification -- # this happens when ./tmp or ./var is used, which is legal filename : constant String := JT.USS (modport); fnlen : constant Natural := filename'Length; begin if filename = "usr/local/share/xml/catalog.ports" or else filename = "usr/local/share/octave/octave_packages" or else filename = "usr/local/info/dir" or else filename = "usr/local/lib/gio/modules/giomodule.cache" or else filename = "usr/local/share/pear/.depdb" or else filename = "usr/local/share/pear/.filemap" then return True; end if; if filename = "." and then JT.equivalent (reasons, "modification") then return True; end if; if fnlen > 17 and then filename (1 .. 10) = "usr/local/" then if filename (fnlen - 4 .. fnlen) = "/ls-R" or else filename (fnlen - 8 .. fnlen) = "/info/dir" then return True; end if; end if; if fnlen > 56 and then filename (1 .. 39) = "usr/local/etc/gconf/gconf.xml.defaults/" and then filename (fnlen - 3 .. fnlen) = ".xml" then if JT.contains (filename, "/%gconf-tree") then return True; end if; end if; return False; end ignore_modifications; procedure close_active_modifications is begin if activemod and then not ignore_modifications then JT.SU.Append (modport, " [ "); JT.SU.Append (modport, reasons); JT.SU.Append (modport, " ]"); if not changed.Contains (modport) then changed.Append (modport); end if; end if; activemod := False; reasons := JT.blank; modport := JT.blank; end close_active_modifications; procedure print (cursor : crate.Cursor) is dossier : constant String := JT.USS (crate.Element (cursor)); begin TIO.Put_Line (trackers (id).log_handle, LAT.HT & dossier); end print; begin -- we can't use generic_system_command because exit code /= 0 normally comres := Unix.piped_command (command, status); crlen1 := JT.SU.Length (comres); loop skiprest := False; JT.nextline (lineblock => comres, firstline => topline); crlen2 := JT.SU.Length (comres); exit when crlen1 = crlen2; crlen1 := crlen2; toplen := JT.SU.Length (topline); if not skiprest and then JT.SU.Length (topline) > 6 then declare sx : constant Natural := toplen - 5; caboose : constant String := JT.SU.Slice (topline, sx, toplen); filename : JT.Text := JT.SUS (JT.SU.Slice (topline, 1, sx - 1)); begin if caboose = " extra" then close_active_modifications; if not leftover.Contains (filename) then leftover.Append (filename); end if; skiprest := True; end if; end; end if; if not skiprest and then JT.SU.Length (topline) > 7 then declare canopy : constant String := JT.SU.Slice (topline, 1, 7); filename : JT.Text := JT.SUS (JT.SU.Slice (topline, 8, toplen)); begin if canopy = "extra: " then close_active_modifications; if not leftover.Contains (filename) then leftover.Append (filename); end if; skiprest := True; end if; end; end if; if not skiprest and then JT.SU.Length (topline) > 10 then declare sx : constant Natural := toplen - 7; caboose : constant String := JT.SU.Slice (topline, sx, toplen); filename : JT.Text := JT.SUS (JT.SU.Slice (topline, 3, sx - 1)); begin if caboose = " missing" then close_active_modifications; if not missing.Contains (filename) then missing.Append (filename); end if; skiprest := True; end if; end; end if; if not skiprest then declare line : constant String := JT.USS (topline); blank8 : constant String := " "; sx : constant Natural := toplen - 7; begin if toplen > 5 and then line (1) = LAT.HT then -- reason, but only valid if modification is active if activemod then if JT.IsBlank (reasons) then reasons := JT.SUS (JT.part_1 (line (2 .. toplen), " ")); else JT.SU.Append (reasons, " | "); JT.SU.Append (reasons, JT.part_1 (line (2 .. toplen), " ")); end if; end if; skiprest := True; end if; if not skiprest and then line (toplen) = LAT.Colon then close_active_modifications; activemod := True; modport := JT.SUS (line (1 .. toplen - 1)); skiprest := True; end if; if not skiprest and then JT.SU.Slice (topline, sx, toplen) = " changed" then close_active_modifications; activemod := True; modport := JT.SUS (line (1 .. toplen - 8)); skiprest := True; end if; end; end if; end loop; close_active_modifications; sorter.Sort (Container => changed); sorter.Sort (Container => missing); sorter.Sort (Container => leftover); TIO.Put_Line (trackers (id).log_handle, LAT.LF & "=> Checking for " & "system changes " & description); if not leftover.Is_Empty then passed := False; TIO.Put_Line (trackers (id).log_handle, LAT.LF & " Left over files/directories:"); leftover.Iterate (Process => print'Access); end if; if not missing.Is_Empty then passed := False; TIO.Put_Line (trackers (id).log_handle, LAT.LF & " Missing files/directories:"); missing.Iterate (Process => print'Access); end if; if not changed.Is_Empty then passed := False; TIO.Put_Line (trackers (id).log_handle, LAT.LF & " Modified files/directories:"); changed.Iterate (Process => print'Access); end if; if passed then TIO.Put_Line (trackers (id).log_handle, "Everything is fine."); end if; return passed; end detect_leftovers_and_MIA; ----------------------------- -- interact_with_builder -- ----------------------------- procedure interact_with_builder (id : builders) is root : constant String := get_root (id); command : constant String := chroot & root & environment_override (enable_tty => True) & REP.Platform.interactive_shell; result : Boolean; begin TIO.Put_Line ("Entering interactive test mode at the builder root " & "directory."); TIO.Put_Line ("Type 'exit' when done exploring."); result := Unix.external_command (command); end interact_with_builder; --------------------------------- -- obtain_custom_environment -- --------------------------------- procedure obtain_custom_environment is target_name : constant String := PM.synth_confdir & "/" & JT.USS (PM.configuration.profile) & "-environment"; fragment : TIO.File_Type; begin customenv := JT.blank; if AD.Exists (target_name) then TIO.Open (File => fragment, Mode => TIO.In_File, Name => target_name); while not TIO.End_Of_File (fragment) loop declare Line : String := TIO.Get_Line (fragment); begin if JT.contains (Line, "=") then JT.SU.Append (customenv, JT.trim (Line) & " "); end if; end; end loop; TIO.Close (fragment); end if; exception when others => if TIO.Is_Open (fragment) then TIO.Close (fragment); end if; end obtain_custom_environment; -------------------------------- -- set_localbase_protection -- -------------------------------- procedure set_localbase_protection (id : builders; lock : Boolean) is procedure remount (readonly : Boolean); procedure dismount; smount : constant String := get_root (id); slave_local : constant String := smount & "_localbase"; procedure remount (readonly : Boolean) is cmd_freebsd : String := "/sbin/mount_nullfs "; cmd_dragonfly : String := "/sbin/mount_null "; points : String := slave_local & " " & smount & REP.root_localbase; options : String := "-o ro "; cmd : JT.Text; cmd_output : JT.Text; begin if JT.equivalent (PM.configuration.operating_sys, "FreeBSD") then cmd := JT.SUS (cmd_freebsd); else cmd := JT.SUS (cmd_dragonfly); end if; if readonly then JT.SU.Append (cmd, options); end if; JT.SU.Append (cmd, points); if not Unix.piped_mute_command (JT.USS (cmd), cmd_output) then if uselog then TIO.Put_Line (trackers (id).log_handle, "command failed: " & JT.USS (cmd)); if not JT.IsBlank (cmd_output) then TIO.Put_Line (trackers (id).log_handle, JT.USS (cmd_output)); end if; end if; end if; end remount; procedure dismount is cmd_unmount : constant String := "/sbin/umount " & smount & REP.root_localbase; cmd_output : JT.Text; begin if not Unix.piped_mute_command (cmd_unmount, cmd_output) then if uselog then TIO.Put_Line (trackers (id).log_handle, "command failed: " & cmd_unmount); if not JT.IsBlank (cmd_output) then TIO.Put_Line (trackers (id).log_handle, JT.USS (cmd_output)); end if; end if; end if; end dismount; begin if lock then dismount; remount (readonly => True); else dismount; remount (readonly => False); end if; end set_localbase_protection; ------------------------------ -- timeout_multiplier_x10 -- ------------------------------ function timeout_multiplier_x10 return Positive is average5 : constant Float := REP.Platform.get_5_minute_load; avefloat : constant Float := average5 / Float (number_cores); begin if avefloat <= 1.0 then return 10; else return Integer (avefloat * 10.0); end if; exception when others => return 10; end timeout_multiplier_x10; --------------------------- -- valid_test_phase #2 -- --------------------------- function valid_test_phase (afterphase : String) return Boolean is begin if afterphase = "extract" or else afterphase = "patch" or else afterphase = "configure" or else afterphase = "build" or else afterphase = "stage" or else afterphase = "install" or else afterphase = "deinstall" then return True; else return False; end if; end valid_test_phase; --------------------------- -- builder_status_core -- --------------------------- function builder_status_core (id : builders; shutdown : Boolean := False; idle : Boolean := False; phasestr : String) return Display.builder_rec is result : Display.builder_rec; phaselen : constant Positive := phasestr'Length; begin -- 123456789 123456789 123456789 123456789 1234 -- SL elapsed phase lines origin -- 01 00:00:00 extract-depends 9999999 www/joe result.id := id; result.slavid := JT.zeropad (Natural (id), 2); result.LLines := (others => ' '); result.phase := (others => ' '); result.origin := (others => ' '); result.shutdown := False; result.idle := False; if shutdown then -- Overrides "idle" if both Shutdown and Idle are True result.Elapsed := "Shutdown"; result.shutdown := True; return result; end if; if idle then result.Elapsed := "Idle "; result.idle := True; return result; end if; declare catport : constant String := get_catport (all_ports (trackers (id).seq_id)); numlines : constant String := format_loglines (trackers (id).loglines); linehead : constant Natural := 8 - numlines'Length; begin result.Elapsed := elapsed_HH_MM_SS (start => trackers (id).head_time, stop => CAL.Clock); result.LLines (linehead .. 7) := numlines; if phaselen <= result.phase'Length then result.phase (1 .. phasestr'Length) := phasestr; else -- special handling for long descriptions if phasestr = "bootstrap-depends" then result.phase (1 .. 14) := "bootstrap-deps"; else result.phase := phasestr (phasestr'First .. phasestr'First + result.phase'Length - 1); end if; end if; if catport'Length > 37 then result.origin (1 .. 36) := catport (1 .. 36); result.origin (37) := LAT.Asterisk; else result.origin (1 .. catport'Length) := catport; end if; end; return result; end builder_status_core; ------------------------ -- port_specification -- ------------------------ function port_specification (catport : String) return String is begin if JT.contains (catport, "@") then return dir_ports & "/" & JT.part_1 (catport, "@") & " FLAVOR=" & JT.part_2 (catport, "@"); else return dir_ports & "/" & catport; end if; end port_specification; end PortScan.Buildcycle;
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of STMicroelectronics nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- -- -- -- This file is based on: -- -- -- -- @file stm32f4xx_hal_dac.h and stm32f4xx_hal_dac_ex.h -- -- @author MCD Application Team -- -- @version V1.3.1 -- -- @date 25-March-2015 -- -- @brief Header file of DAC HAL module. -- -- -- -- COPYRIGHT(c) 2014 STMicroelectronics -- ------------------------------------------------------------------------------ -- This file provides interfaces for the digital-to-analog converters on the -- STM32F4 (ARM Cortex M4F) microcontrollers from ST Microelectronics. with System; use System; private with STM32_SVD.DAC; package STM32.DAC is type Digital_To_Analog_Converter is limited private; type DAC_Channel is (Channel_1, Channel_2); for DAC_Channel use (Channel_1 => 1, Channel_2 => 2); -- Note that Channel 1 is tied to GPIO pin PA4, and Channel 2 to PA5 procedure Enable (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Inline, Post => Enabled (This, Channel); -- Powers up the channel. The channel is then enabled after a startup -- time "Twakeup" specified in the datasheet. -- -- NB: When no hardware trigger has been selected, the value in the -- DAC_DHRx register is transfered automatically to the DOR register. -- Therefore, in that case enabling the channel starts the output -- conversion on that channel. See the RM, section 14.3.4 "DAC -- conversion" second and third paragraphs. procedure Disable (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Inline, Post => not Enabled (This, Channel); -- When the software trigger has been selected, disabling the channel stops -- the output conversion on that channel. function Enabled (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Boolean; type DAC_Resolution is (DAC_Resolution_12_Bits, DAC_Resolution_8_Bits); Max_12bit_Resolution : constant := 16#0FFF#; Max_8bit_Resolution : constant := 16#00FF#; type Data_Alignment is (Left_Aligned, Right_Aligned); procedure Set_Output (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel; Value : UInt32; Resolution : DAC_Resolution; Alignment : Data_Alignment); -- For the specified channel, writes the output Value to the data holding -- register within This corresponding to the Resolution and Alignment. -- -- The output voltage = ((Value / Max_nbit_Counts) * VRef+), where VRef+ is -- the reference input voltage and the 'n' of Max_nbit_Counts is either 12 -- or 8. procedure Trigger_Conversion_By_Software (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Pre => Trigger_Selection (This, Channel) = Software_Trigger and Trigger_Enabled (This, Channel); -- Cause the conversion to occur and the output to appear, per 14.3.6 "DAC -- trigger selection" in the RM. This routine is needed when the Software -- Trigger has been selected and the trigger has been enabled, otherwise no -- conversion occurs. If you don't enable the trigger any prior selection -- has no effect, but note that when no *hardware* trigger is selected the -- output happens automatically when the channel is enabled. See the RM, -- section 14.3.4 "DAC conversion" second and third paragraphs. procedure Trigger_Conversion_By_Software (This : in out Digital_To_Analog_Converter); function Converted_Output_Value (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return UInt32; -- Returns the latest output value for the specified channel. procedure Set_Dual_Output_Voltages (This : in out Digital_To_Analog_Converter; Channel_1_Value : UInt32; Channel_2_Value : UInt32; Resolution : DAC_Resolution; Alignment : Data_Alignment); type Dual_Channel_Output is record Channel_1_Data : UInt16; Channel_2_Data : UInt16; end record; function Converted_Dual_Output_Value (This : Digital_To_Analog_Converter) return Dual_Channel_Output; -- Returns the combination of the latest output values for both channels. type External_Event_Trigger_Selection is (Software_Trigger, Dac_Chx_Trig1, Dac_Chx_Trig2, Dac_Chx_Trig3, Dac_Chx_Trig4, Dac_Chx_Trig5, Dac_Chx_Trig6, Dac_Chx_Trig7, Dac_Chx_Trig8, Dac_Chx_Trig9, Dac_Chx_Trig10, Dac_Chx_Trig11, Dac_Chx_Trig12, Dac_Chx_Trig13, Dac_Chx_Trig14, Dac_Chx_Trig15 ) with Size => 4; procedure Select_Trigger (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel; Trigger : External_Event_Trigger_Selection) with Pre => not Trigger_Enabled (This, Channel), -- per note in RM, pg 435 Post => Trigger_Selection (This, Channel) = Trigger and not Trigger_Enabled (This, Channel); -- If the software trigger is selected, output conversion starts once the -- channel is enabled. function Trigger_Selection (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return External_Event_Trigger_Selection; procedure Enable_Trigger (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => Trigger_Enabled (This, Channel); procedure Disable_Trigger (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => not Trigger_Enabled (This, Channel); function Trigger_Enabled (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Boolean; procedure Enable_DMA (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => DMA_Enabled (This, Channel); procedure Disable_DMA (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Post => not DMA_Enabled (This, Channel); function DMA_Enabled (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Boolean; type DAC_Status_Flag is (DMA_Underrun_Channel_1, DMA_Underrun_Channel_2); -- For the indicated channel, the currently selected trigger is driving the -- channel conversion at a frequency higher than the DMA service capability -- rate function Status (This : Digital_To_Analog_Converter; Flag : DAC_Status_Flag) return Boolean; procedure Clear_Status (This : in out Digital_To_Analog_Converter; Flag : DAC_Status_Flag) with Inline, Post => not Status (This, Flag); type DAC_Interrupts is (DMA_Underrun_Channel_1, DMA_Underrun_Channel_2); procedure Enable_Interrupts (This : in out Digital_To_Analog_Converter; Source : DAC_Interrupts) with Inline, Post => Interrupt_Enabled (This, Source); procedure Disable_Interrupts (This : in out Digital_To_Analog_Converter; Source : DAC_Interrupts) with Inline, Post => not Interrupt_Enabled (This, Source); function Interrupt_Enabled (This : Digital_To_Analog_Converter; Source : DAC_Interrupts) return Boolean with Inline; function Interrupt_Source (This : Digital_To_Analog_Converter) return DAC_Interrupts with Inline; procedure Clear_Interrupt_Pending (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel) with Inline; type Wave_Generation_Selection is (No_Wave_Generation, Noise_Wave, Triangle_Wave); type Noise_Wave_Mask_Selection is (LFSR_Unmask_Bit0, LFSR_Unmask_Bits1_0, LFSR_Unmask_Bits2_0, LFSR_Unmask_Bits3_0, LFSR_Unmask_Bits4_0, LFSR_Unmask_Bits5_0, LFSR_Unmask_Bits6_0, LFSR_Unmask_Bits7_0, LFSR_Unmask_Bits8_0, LFSR_Unmask_Bits9_0, LFSR_Unmask_Bits10_0, LFSR_Unmask_Bits11_0); -- Unmask LFSR bits for noise wave generation type Triangle_Wave_Amplitude_Selection is (Triangle_Amplitude_1, -- Select max triangle amplitude of 1 Triangle_Amplitude_3, -- Select max triangle amplitude of 3 Triangle_Amplitude_7, -- Select max triangle amplitude of 7 Triangle_Amplitude_15, -- Select max triangle amplitude of 15 Triangle_Amplitude_31, -- Select max triangle amplitude of 31 Triangle_Amplitude_63, -- Select max triangle amplitude of 63 Triangle_Amplitude_127, -- Select max triangle amplitude of 127 Triangle_Amplitude_255, -- Select max triangle amplitude of 255 Triangle_Amplitude_511, -- Select max triangle amplitude of 511 Triangle_Amplitude_1023, -- Select max triangle amplitude of 1023 Triangle_Amplitude_2047, -- Select max triangle amplitude of 2047 Triangle_Amplitude_4095); -- Select max triangle amplitude of 4095 type Wave_Generation (Kind : Wave_Generation_Selection) is record case Kind is when No_Wave_Generation => null; when Noise_Wave => Mask : Noise_Wave_Mask_Selection; when Triangle_Wave => Amplitude : Triangle_Wave_Amplitude_Selection; end case; end record; Wave_Generation_Disabled : constant Wave_Generation := (Kind => No_Wave_Generation); procedure Select_Wave_Generation (This : in out Digital_To_Analog_Converter; Channel : DAC_Channel; Selection : Wave_Generation) with Post => Selected_Wave_Generation (This, Channel) = Selection; function Selected_Wave_Generation (This : Digital_To_Analog_Converter; Channel : DAC_Channel) return Wave_Generation; function Data_Address (This : Digital_To_Analog_Converter; Channel : DAC_Channel; Resolution : DAC_Resolution; Alignment : Data_Alignment) return Address; -- Returns the address of the Data Holding register within This, for the -- specified Channel, at the specified Resolution and Alignment. -- -- This function is stricly for use with DMA, all others use the API above. private type Digital_To_Analog_Converter is new STM32_SVD.DAC.DAC_Peripheral; end STM32.DAC;
-- Julian.Ada_conversion, a sub-package of Julian. -- This package focuses on conversion between the Julian time -- i.e. duration and time expressed in fractional Julian days, -- and Ada.Calendar duration and time data. -- These routines are only usefull for implementations -- where conversions to and from the Ada time system are necessary. ---------------------------------------------------------------------------- -- Copyright Miletus 2015 -- 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: -- 1. The above copyright notice and this permission notice shall be included -- in all copies or substantial portions of the Software. -- 2. Changes with respect to any former version shall be documented. -- -- The software is provided "as is", without warranty of any kind, -- express of implied, including but not limited to the warranties of -- merchantability, fitness for a particular purpose and noninfringement. -- In no event shall the authors of 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. -- Inquiries: www.calendriermilesien.org ------------------------------------------------------------------------------- with Calendar; use Calendar; package Scaliger.Ada_conversion is function Julian_Time_Of (Ada_Timestamp : Time) return Historical_Time; -- return Julian time following the classical convention i.e.: -- Julian time takes integer values at noon GMT. function Time_Of (Julian_Timestamp : Historical_Time) return Time; -- convert Julian time into Ada time. function Julian_Duration_Of (Ada_Offset : Duration) return Historical_Duration; -- convert Ada duration (seconds) -- to Julian duration (fractional days stored in seconds) function Julian_Duration_Of (Day : Julian_Day_Duration) return Historical_Duration; -- convert a Julian day (an integer) into a julian duration -- which is expressed in seconds to the 1/8s. function Duration_Of (Julian_Offset : Historical_Duration) return Duration; function Day_Julian_Offset (Ada_Daytime : Day_Duration) return Day_Historical_Duration; -- Time of the day expressed in UTC time (0..86_400.0 s) -- to Julian duration expressed in (-0.5..+0.5) function Day_Offset (Julian_Offset : Day_Historical_Duration) return Day_Duration; -- Julian day duration -0.5..+0.5 to time of day 0..86_400.0 s function Julian_Day_Of (Julian_Timestamp : Historical_Time) return Julian_Day; -- gives the nearest integer of a Julian time function Julian_Day_Of (Ada_Timestamp : Time) return Julian_Day; -- the day corresponding to the UTC day of Ada_Timestamp function Time_Of_At_Noon (Julian_Date : Julian_Day) return Time; -- By convention, the "seconds" field is set to 12.00 UTC in this routine. end Scaliger.Ada_conversion;
------------------------------------------------------------------------------ -- Copyright (C) 2020 by Heisenbug Ltd. (gh+spat@heisenbug.eu) -- -- This work is free. You can redistribute it and/or modify it under the -- terms of the Do What The Fuck You Want To Public License, Version 2, -- as published by Sam Hocevar. See the LICENSE file for more details. ------------------------------------------------------------------------------ pragma License (Unrestricted); ------------------------------------------------------------------------------ -- -- SPARK Proof Analysis Tool -- -- S.P.A.T. - Main program -- ------------------------------------------------------------------------------ with Ada.Command_Line; with Ada.Directories; with Ada.Real_Time; with GNATCOLL.JSON; with GNATCOLL.Projects; with GNATCOLL.VFS; with SI_Units.Metric; with SI_Units.Names; with SPAT.Command_Line; with SPAT.GPR_Support; with SPAT.Log; with SPAT.Spark_Files; with SPAT.Spark_Info; with SPAT.Strings; with SPAT.Version; with System; ------------------------------------------------------------------------------ -- Run_SPAT ------------------------------------------------------------------------------ procedure Run_SPAT is --------------------------------------------------------------------------- -- Image --------------------------------------------------------------------------- function Image is new SI_Units.Metric.Fixed_Image (Item => Duration, Default_Aft => 0, Unit => SI_Units.Names.Second); --------------------------------------------------------------------------- -- Print_Entities --------------------------------------------------------------------------- procedure Print_Entities (Info : in SPAT.Spark_Info.T; Sort_By : in SPAT.Spark_Info.Sorting_Criterion); --------------------------------------------------------------------------- -- Print_Summary --------------------------------------------------------------------------- procedure Print_Summary (Info : in SPAT.Spark_Info.T; Sort_By : in SPAT.Spark_Info.Sorting_Criterion); --------------------------------------------------------------------------- -- Print_Entities --------------------------------------------------------------------------- procedure Print_Entities (Info : in SPAT.Spark_Info.T; Sort_By : in SPAT.Spark_Info.Sorting_Criterion) is separate; --------------------------------------------------------------------------- -- Print_Summary --------------------------------------------------------------------------- procedure Print_Summary (Info : in SPAT.Spark_Info.T; Sort_By : in SPAT.Spark_Info.Sorting_Criterion) is separate; use type Ada.Real_Time.Time; use type SPAT.Subject_Name; begin if not SPAT.Command_Line.Parser.Parse then SPAT.Spark_Files.Shutdown; Ada.Command_Line.Set_Exit_Status (Code => Ada.Command_Line.Failure); return; end if; if SPAT.Command_Line.Version.Get then SPAT.Log.Message (Message => "run_spat V" & SPAT.Version.Number & " (compiled by " & System.System_Name'Image & " " & SPAT.Version.Compiler & ")"); SPAT.Spark_Files.Shutdown; Ada.Command_Line.Set_Exit_Status (Code => Ada.Command_Line.Success); return; end if; if SPAT.Command_Line.Project.Get = SPAT.Null_Name then -- The project file option is mandatory (AFAICS there is no way to -- require an option argument). SPAT.Log.Message (Message => "Argument parsing failed: Missing project file argument"); SPAT.Log.Message (Message => SPAT.Command_Line.Parser.Help); SPAT.Spark_Files.Shutdown; Ada.Command_Line.Set_Exit_Status (Code => Ada.Command_Line.Failure); return; end if; Do_Run_SPAT : declare SPARK_Files : SPAT.Spark_Files.T; Start_Time : Ada.Real_Time.Time; Sort_By : constant SPAT.Spark_Info.Sorting_Criterion := SPAT.Command_Line.Sort_By.Get; Report_Mode : constant SPAT.Command_Line.Report_Mode := SPAT.Command_Line.Report.Get; Project_File : constant GNATCOLL.VFS.Filesystem_String := GNATCOLL.VFS."+" (S => SPAT.To_String (SPAT.Command_Line.Project.Get)); use type SPAT.Command_Line.Report_Mode; begin Collect_And_Parse : declare -- Step 1: Collect all .spark files. File_List : constant SPAT.Strings.File_Names := SPAT.GPR_Support.Get_SPARK_Files (GPR_File => Project_File); begin -- Step 2: Parse the files into JSON values. if not File_List.Is_Empty then SPAT.Log.Debug (Message => "Using up to" & SPAT.Spark_Files.Num_Workers'Image & " parsing threads."); Start_Time := Ada.Real_Time.Clock; SPARK_Files.Read (Names => File_List); SPAT.Log.Debug (Message => "Parsing completed in " & Image (Value => Ada.Real_Time.To_Duration (TS => Ada.Real_Time.Clock - Start_Time)) & "."); end if; end Collect_And_Parse; Process_And_Output : declare Info : SPAT.Spark_Info.T; begin -- Step 3: Process the JSON data. if not SPARK_Files.Is_Empty then Start_Time := Ada.Real_Time.Clock; for C in SPARK_Files.Iterate loop Parse_JSON_File : declare Read_Result : constant GNATCOLL.JSON.Read_Result := SPARK_Files (C); File : constant SPAT.File_Name := SPAT.Spark_Files.Key (C); begin if Read_Result.Success then Info.Map_Spark_File (Root => Read_Result.Value, File => File); else SPAT.Log.Warning (Message => SPAT.To_String (Source => File) & ": " & GNATCOLL.JSON.Format_Parsing_Error (Error => Read_Result.Error)); end if; end Parse_JSON_File; end loop; SPAT.Log.Debug (Message => "Reading completed in " & Image (Value => Ada.Real_Time.To_Duration (TS => Ada.Real_Time.Clock - Start_Time)) & "."); end if; -- Step 4: Output the JSON data. if SPAT.Command_Line.Summary.Get then Print_Summary (Info => Info, Sort_By => Sort_By); end if; if Report_Mode /= SPAT.Command_Line.None then Print_Entities (Info => Info, Sort_By => Sort_By); end if; end Process_And_Output; end Do_Run_SPAT; SPAT.Spark_Files.Shutdown; Ada.Command_Line.Set_Exit_Status (Code => Ada.Command_Line.Success); exception when others => SPAT.Spark_Files.Shutdown; raise; end Run_SPAT;
----------------------------------------------------------------------- -- asf-components-core -- ASF Core Components -- Copyright (C) 2009 - 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 ASF.Views.Nodes; with ASF.Components.Base; with ASF.Contexts.Faces; -- = Core Components = -- The facelets is the default view declaration language that uses XML and XHTML. -- It is a composition and templating framework that allows to create the component -- tree. -- -- The core components are defined in the following namespace: -- ``` -- xmlns:f="http://java.sun.com/jsf/core" -- ``` -- -- The core components are implemented by the `ASF.Components.Core` -- package which defines the `UIComponent` that describes the various elements -- provided by the core components. These components are instantiated when the -- view is created from the facelet tree that was read from the XHTML view description. -- -- @include-doc docs/comp-jsf-core/*.txt package ASF.Components.Core is use ASF.Contexts.Faces; type UIComponentBase is new Base.UIComponent with null record; -- Return a client-side identifier for this component, generating -- one if necessary. overriding function Get_Client_Id (UI : UIComponentBase) return Unbounded_String; -- ------------------------------ -- Raw text component -- ------------------------------ -- The <b>UIText</b> component represents a raw text to be written on the output stream. -- This text is also composed of EL expressions to evaluate. The text and EL nodes -- are represented by <b>ASF.Views.Nodes.Text_Tag_Node</b> and is therefore shared -- among requests. type UIText is new Base.UIComponent with private; type UIText_Access is access all UIText'Class; -- Renders the UIText evaluating the EL expressions it may contain. procedure Encode_Begin (UI : in UIText; Context : in out Faces_Context'Class); -- Set the expression array that contains reduced expressions. procedure Set_Expression_Table (UI : in out UIText; Expr_Table : in ASF.Views.Nodes.Expression_Access_Array_Access); -- Finalize the object. overriding procedure Finalize (UI : in out UIText); function Create_UIText (Tag : in ASF.Views.Nodes.Text_Tag_Node_Access) return UIText_Access; -- ------------------------------ -- Abstract Leaf component -- ------------------------------ -- The <b>UILeaf</b> component is an abstract component intended to be used -- for components without children. type UILeaf is new UIComponentBase with private; overriding procedure Encode_Children (UI : in UILeaf; Context : in out Faces_Context'Class) is null; overriding procedure Encode_Begin (UI : in UILeaf; Context : in out Faces_Context'Class) is null; overriding procedure Encode_End (UI : in UILeaf; Context : in out Faces_Context'Class) is null; -- ------------------------------ -- Component Parameter -- ------------------------------ type UIParameter is new UILeaf with private; type UIParameter_Access is access all UIParameter'Class; type UIParameter_Access_Array is array (Natural range <>) of UIParameter_Access; -- Get the parameter name function Get_Name (UI : UIParameter; Context : Faces_Context'Class) return String; -- Get the parameter value function Get_Value (UI : UIParameter; Context : Faces_Context'Class) return EL.Objects.Object; -- Get the list of parameters associated with a component. function Get_Parameters (UI : Base.UIComponent'Class) return UIParameter_Access_Array; private type UIText is new Base.UIComponent with record Text : ASF.Views.Nodes.Text_Tag_Node_Access; Expr_Table : ASF.Views.Nodes.Expression_Access_Array_Access := null; end record; type UILeaf is new UIComponentBase with null record; type UIParameter is new UILeaf with record N : Natural; end record; end ASF.Components.Core;
-- Databases - A simple database library for Ada applications -- (c) Kristian Klomsten Skordal 2019 <kristian.skordal@wafflemail.net> -- Report bugs and issues on <https://github.com/skordal/databases/issues> -- vim:ts=3:sw=3:et:si:sta with Ada.Text_IO; with Interfaces.C.Pointers; package body Databases.Sqlite is function Get_Value (This : in Column_Data) return Databases.Sql_Integer is function Sqlite3_Value_Int (Value : in Sqlite_Value_Pointer) return C.long; pragma Import (C, Sqlite3_Value_Int); Value : constant C.long := Sqlite3_Value_Int (This.Value_Object); begin return Databases.Sql_Integer (Value); end Get_Value; function Get_Value (This : in Column_Data) return Databases.Sql_Float is function Sqlite3_Value_Double (Value : in Sqlite_Value_Pointer) return C.double; pragma Import (C, Sqlite3_Value_Double); Value : constant C.double := Sqlite3_Value_Double (This.Value_Object); begin return Databases.Sql_Float (Value); end Get_Value; function Get_Value (This : in Column_Data) return Databases.Sql_Data_Array is package Byte_Array_Pointers is new Interfaces.C.Pointers ( Index => Natural, Element => Interfaces.Unsigned_8, Element_Array => Databases.Sql_Data_Array, Default_Terminator => 0); function Sqlite3_Value_Bytes (Value : in Sqlite_Value_Pointer) return C.ptrdiff_t; pragma Import (C, Sqlite3_Value_Bytes); function Sqlite3_Value_Blob (Value : in Sqlite_Value_Pointer) return Byte_Array_Pointers.Pointer; pragma Import (C, Sqlite3_Value_Blob); Blob_Pointer : constant Byte_Array_Pointers.Pointer := Sqlite3_Value_Blob (This.Value_Object); begin return Byte_Array_Pointers.Value (Blob_Pointer, Sqlite3_Value_Bytes (This.Value_Object)); end Get_Value; function Get_Value (This : in Column_Data) return String is package Char_Array_Pointers is new Interfaces.C.Pointers ( Index => C.size_t, Element => C.char, Element_Array => C.char_array, Default_Terminator => C.nul); function Sqlite3_Value_Text (Value : in Sqlite_Value_Pointer) return Char_Array_Pointers.Pointer; pragma Import (C, Sqlite3_Value_Text); Text_Pointer : constant Char_Array_Pointers.Pointer := Sqlite3_Value_Text (This.Value_Object); begin return C.To_Ada (Char_Array_Pointers.Value (Text_Pointer)); end Get_Value; procedure Finalize (This : in out Column_Data) is procedure Sqlite3_Value_Free (Value : in Sqlite_Value_Pointer); pragma Import (C, Sqlite3_Value_Free); begin Sqlite3_Value_Free (This.Value_Object); end Finalize; function Get_Column_Count (This : in Row_Data) return Natural is begin return Natural (This.Columns.Length); end Get_Column_Count; function Get_Column (This : in Row_Data; Index : in Positive) return Column_Data_Access is begin if Index > Natural (This.Columns.Length) then raise Databases.Invalid_Column_Index; else return This.Columns.Element (Index); end if; end Get_Column; procedure Finalize (This : in out Row_Data) is begin for Col of This.Columns loop Databases.Free (Col); end loop; end Finalize; function Get_Row (This : in Statement_Result; Row : in Positive) return Row_Data_Access is begin if Row > Natural (This.Rows.Length) then raise Invalid_Row_Index; else return This.Rows.Element (Row); end if; end Get_Row; function Get_Status (This : in Statement_Result) return Databases.Statement_Execution_Status is begin return This.Result_Status; end Get_Status; function Get_Returned_Row_Count (This : in Statement_Result) return Natural is begin return Natural (This.Rows.Length); end Get_Returned_Row_Count; procedure Finalize (This : in out Statement_Result) is begin for Row of This.Rows loop Databases.Free (Row); end loop; end Finalize; procedure Bind (This : in out Prepared_Statement; Index : in Positive; Value : in Sql_Integer) is function Sqlite3_Bind_Int64 (Statement : in Sqlite_Prepared_Statement_Pointer; Index : in C.int; Value : in C.long) return Sqlite_Status_Code; pragma Import (C, Sqlite3_Bind_Int64); Status_Code : constant Sqlite_Status_Code := Sqlite3_Bind_Int64 ( This.Stmt_Instance, C.int (Index), C.long (Value)); begin Handle_Sqlite_Status_Code (Status_Code); end Bind; procedure Bind (This : in out Prepared_Statement; Index : in Positive; Value : in Sql_Float) is function Sqlite3_Bind_Double (Statement : in Sqlite_Prepared_Statement_Pointer; Index : in C.int; Value : in C.double) return Sqlite_Status_Code; pragma Import (C, Sqlite3_Bind_Double); Status_Code : constant Sqlite_Status_Code := Sqlite3_Bind_Double ( This.Stmt_Instance, C.int (Index), C.double (Value)); begin Handle_Sqlite_Status_Code (Status_Code); end Bind; procedure Bind (This : in out Prepared_Statement; Index : in Positive; Value : in Boolean) is begin if Value then Bind (This, Index, 1); else Bind (This, Index, 0); end if; end Bind; procedure Bind (This : in out Prepared_Statement; Index : in Positive; Value : in String) is function Sqlite_Wrapper_Bind_String (Statement : in Sqlite_Prepared_Statement_Pointer; Index : in C.int; Value : in C.char_array) return Sqlite_Status_Code; pragma Import (C, Sqlite_Wrapper_Bind_String); Status_Code : constant Sqlite_Status_Code := Sqlite_Wrapper_Bind_String ( This.Stmt_Instance, C.int (Index), C.To_C (Value)); begin Handle_Sqlite_Status_Code (Status_Code); end Bind; procedure Clear (This : in out Prepared_Statement) is function Sqlite3_Clear_Bindings (Statement : in Sqlite_Prepared_Statement_Pointer) return Sqlite_Status_Code; pragma Import (C, Sqlite3_Clear_Bindings); Status_Code : constant Sqlite_Status_Code := Sqlite3_Clear_Bindings (This.Stmt_Instance); begin Handle_Sqlite_Status_Code (Status_Code); end Clear; procedure Reset (This : in out Prepared_Statement) is function Sqlite3_Reset (Statement : in Sqlite_Prepared_Statement_Pointer) return Sqlite_Status_Code; pragma Import (C, Sqlite3_Reset); Status_Code : constant Sqlite_Status_Code := Sqlite3_Reset (This.Stmt_Instance); begin Handle_Sqlite_Status_Code (Status_Code); end Reset; function Execute (This : in out Prepared_Statement) return Statement_Result_Access is use type Interfaces.C.int; function Sqlite3_Step (Statement : in Sqlite_Prepared_Statement_Pointer) return Sqlite_Status_Code; pragma Import (C, Sqlite3_Step); function Sqlite3_Column_Count (Statement : in Sqlite_Prepared_Statement_Pointer) return C.int; pragma Import (C, Sqlite3_Column_Count); function Sqlite3_Column_Value (Statement : in Sqlite_Prepared_Statement_Pointer; Col : in C.int) return Sqlite_Value_Pointer; pragma Import (C, Sqlite3_Column_Value); function Sqlite3_Value_Dup (Value : in Sqlite_Value_Pointer) return Sqlite_Value_Pointer; pragma Import (C, Sqlite3_Value_Dup); Status_Code : Sqlite_Status_Code; Return_Value : constant Statement_Result_Access := new Statement_Result'(Ada.Finalization.Controlled with Result_Status => Failure, Rows => Row_Data_Vectors.Empty_Vector); begin loop Status_Code := Sqlite3_Step (This.Stmt_Instance); case Status_Code is when Sqlite_Done => Statement_Result (Return_Value.all).Result_Status := Success; exit; when Sqlite_Row => -- FIXME: For SQLite, all results must be read and stored here to be accessible, as the SQLite API does -- FIXME: not provide a separate results object that allows reading objects separately from the statement. declare Row : constant Row_Data_Access := new Row_Data; begin for Col in 0 .. Sqlite3_Column_Count(This.Stmt_Instance) - 1 loop declare Column : constant Column_Data_Access := new Column_Data; begin Column_Data (Column.all).Value_Object := Sqlite3_Value_Dup (Sqlite3_Column_Value (This.Stmt_Instance, Col)); Row_Data (Row.all).Columns.Append (Column); end; end loop; Statement_Result (Return_Value.all).Rows.Append (Row); end; when others => Handle_Sqlite_Status_Code (Status_Code); end case; end loop; return Return_Value; end Execute; function Execute (This : in out Prepared_Statement) return Statement_Execution_Status is Results : Statement_Result_Access := This.Execute; Return_Value : constant Statement_Execution_Status := Results.Get_Status; begin Databases.Free (Results); return Return_Value; end Execute; procedure Finalize (This : in out Prepared_Statement) is procedure Sqlite_Wrapper_Free_Prepared_Statement (Statement : in Sqlite_Prepared_Statement_Pointer); pragma Import (C, Sqlite_Wrapper_Free_Prepared_Statement); begin Sqlite_Wrapper_Free_Prepared_Statement (This.Stmt_Instance); end Finalize; function Open (Filename : in String; Create : in Boolean := False) return Databases.Database_Access is function Sqlite_Wrapper_Open (Filename : in C.char_array; Create_File : in C.int; Status : out Sqlite_Status_Code) return Sqlite_Instance_Pointer; pragma Import (C, Sqlite_Wrapper_Open); Create_File : constant C.int := (if Create then 1 else 0); Status_Code : Sqlite_Status_Code; Db_Instance : constant Sqlite_Instance_Pointer := Sqlite_Wrapper_Open (C.To_C (Filename), Create_File, Status_Code); begin Handle_Sqlite_Status_Code (Status_Code); return new Database'(Instance => Db_Instance); end Open; procedure Close (This : in out Database) is procedure Sqlite_Wrapper_Close (Instance : in Sqlite_Instance_Pointer); pragma Import (C, Sqlite_Wrapper_Close); begin Sqlite_Wrapper_Close (This.Instance); This.Instance := null; end Close; function Is_Open (This : in Database) return Boolean is begin return This.Instance /= null; end Is_Open; function Prepare (This : in out Database; Statement : in String) return Databases.Prepared_Statement_Access is function Sqlite_Wrapper_Prepare (Instance : in Sqlite_Instance_Pointer; Statement : in C.char_array; Statement_Length : in C.int; Status_Code : out Sqlite_Status_Code) return Sqlite_Prepared_Statement_Pointer; pragma Import (C, Sqlite_Wrapper_Prepare); Status_Code : Sqlite_Status_Code; Statement_Instance : constant Sqlite_Prepared_Statement_Pointer := Sqlite_Wrapper_Prepare (This.Instance, C.To_C (Statement), C.int (Statement'Length), Status_Code); begin Handle_Sqlite_Status_Code (Status_Code); return new Prepared_Statement'(Ada.Finalization.Controlled with Db_Instance => This.Instance, Stmt_Instance => Statement_Instance); end Prepare; procedure Handle_Sqlite_Status_Code (Status : in Sqlite_Status_Code) is begin case Status is when Sqlite_Ok => return; when Sqlite_IOErr => raise Databases.IO_Error; when Sqlite_Cant_Open => raise Databases.File_Error; when others => Ada.Text_IO.Put_Line ("Databases.Sqlite: Got unknown error code: " & Sqlite_Status_Code'Image (Status)); raise Databases.Unspecified_Error; end case; end Handle_Sqlite_Status_Code; end Databases.Sqlite;
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2004 Dmitriy Anisimkov -- -- -- -- Open source license information is in the zlib.ads file. -- ---------------------------------------------------------------- -- -- $Id: buffer_demo.adb,v 1.1 2005/09/23 22:39:01 beng Exp $ -- This demo program provided by Dr Steve Sangwine <sjs@essex.ac.uk> -- -- Demonstration of a problem with Zlib-Ada (already fixed) when a buffer -- of exactly the correct size is used for decompressed data, and the last -- few bytes passed in to Zlib are checksum bytes. -- This program compresses a string of text, and then decompresses the -- compressed text into a buffer of the same size as the original text. with Ada.Streams; use Ada.Streams; with Ada.Text_IO; with ZLib; use ZLib; procedure Buffer_Demo is EOL : Character renames ASCII.LF; Text : constant String := "Four score and seven years ago our fathers brought forth," & EOL & "upon this continent, a new nation, conceived in liberty," & EOL & "and dedicated to the proposition that `all men are created equal'."; Source : Stream_Element_Array (1 .. Text'Length); for Source'Address use Text'Address; begin Ada.Text_IO.Put (Text); Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line ("Uncompressed size : " & Positive'Image (Text'Length) & " bytes"); declare Compressed_Data : Stream_Element_Array (1 .. Text'Length); L : Stream_Element_Offset; begin Compress : declare Compressor : Filter_Type; I : Stream_Element_Offset; begin Deflate_Init (Compressor); -- Compress the whole of T at once. Translate (Compressor, Source, I, Compressed_Data, L, Finish); pragma Assert (I = Source'Last); Close (Compressor); Ada.Text_IO.Put_Line ("Compressed size : " & Stream_Element_Offset'Image (L) & " bytes"); end Compress; -- Now we decompress the data, passing short blocks of data to Zlib -- (because this demonstrates the problem - the last block passed will -- contain checksum information and there will be no output, only a -- check inside Zlib that the checksum is correct). Decompress : declare Decompressor : Filter_Type; Uncompressed_Data : Stream_Element_Array (1 .. Text'Length); Block_Size : constant := 4; -- This makes sure that the last block contains -- only Adler checksum data. P : Stream_Element_Offset := Compressed_Data'First - 1; O : Stream_Element_Offset; begin Inflate_Init (Decompressor); loop Translate (Decompressor, Compressed_Data (P + 1 .. Stream_Element_Offset'Min (P + Block_Size, L)), P, Uncompressed_Data (Total_Out (Decompressor) + 1 .. Uncompressed_Data'Last), O, No_Flush); Ada.Text_IO.Put_Line ("Total in : " & Count'Image (Total_In (Decompressor)) & ", out : " & Count'Image (Total_Out (Decompressor))); exit when P = L; end loop; Ada.Text_IO.New_Line; Ada.Text_IO.Put_Line ("Decompressed text matches original text : " & Boolean'Image (Uncompressed_Data = Source)); end Decompress; end; end Buffer_Demo;
-- This file is generated by SWIG. Please do not modify by hand. -- with Interfaces.C; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_render_fixed_iterator_t is -- Item -- type Item is record data : access xcb.xcb_render_fixed_t; the_rem : aliased Interfaces.C.int; index : aliased Interfaces.C.int; end record; -- Item_Array -- type Item_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_render_fixed_iterator_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_render_fixed_iterator_t.Item, Element_Array => xcb.xcb_render_fixed_iterator_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C .size_t range <>) of aliased xcb.xcb_render_fixed_iterator_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_render_fixed_iterator_t.Pointer, Element_Array => xcb.xcb_render_fixed_iterator_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_render_fixed_iterator_t;
package body Forward_Declaration is procedure P is null; procedure Q; procedure Q is null; end Forward_Declaration;
------------------------------------------------------------------------------- -- 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 Keccak.Generic_Duplex; generic with package Duplex is new Keccak.Generic_Duplex(<>); package Duplex_Runner is procedure Run_Tests (File_Name : in String; Capacity : in Positive; Num_Passed : out Natural; Num_Failed : out Natural); end Duplex_Runner;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . F A T _ L L F -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2009, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains an instantiation of the floating-point attribute -- runtime routines for the type Long_Long_Float. with System.Fat_Gen; package System.Fat_LLF is pragma Pure; -- Note the only entity from this package that is accessed by Rtsfind -- is the name of the package instantiation. Entities within this package -- (i.e. the individual floating-point attribute routines) are accessed -- by name using selected notation. package Attr_Long_Long_Float is new System.Fat_Gen (Long_Long_Float); end System.Fat_LLF;
package FRUnaligned1 is type r is array (1 .. 72) of Boolean; pragma Pack (r); type s is record x : Boolean; y : r; end record; for s use record x at 0 range 0 .. 0; y at 0 range 1 .. 72; end record; end FRUnaligned1;
-- This spec has been automatically generated from STM32L4x6.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with HAL; with System; package STM32_SVD.CAN is pragma Preelaborate; --------------- -- Registers -- --------------- -- master control register type MCR_Register is record -- INRQ INRQ : Boolean := False; -- SLEEP SLEEP : Boolean := True; -- TXFP TXFP : Boolean := False; -- RFLM RFLM : Boolean := False; -- NART NART : Boolean := False; -- AWUM AWUM : Boolean := False; -- ABOM ABOM : Boolean := False; -- TTCM TTCM : Boolean := False; -- unspecified Reserved_8_14 : HAL.UInt7 := 16#0#; -- RESET RESET : Boolean := False; -- DBF DBF : Boolean := True; -- unspecified Reserved_17_31 : HAL.UInt15 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for MCR_Register use record INRQ at 0 range 0 .. 0; SLEEP at 0 range 1 .. 1; TXFP at 0 range 2 .. 2; RFLM at 0 range 3 .. 3; NART at 0 range 4 .. 4; AWUM at 0 range 5 .. 5; ABOM at 0 range 6 .. 6; TTCM at 0 range 7 .. 7; Reserved_8_14 at 0 range 8 .. 14; RESET at 0 range 15 .. 15; DBF at 0 range 16 .. 16; Reserved_17_31 at 0 range 17 .. 31; end record; -- master status register type MSR_Register is record -- Read-only. INAK INAK : Boolean := False; -- Read-only. SLAK SLAK : Boolean := True; -- ERRI ERRI : Boolean := False; -- WKUI WKUI : Boolean := False; -- SLAKI SLAKI : Boolean := False; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Read-only. TXM TXM : Boolean := False; -- Read-only. RXM RXM : Boolean := False; -- Read-only. SAMP SAMP : Boolean := True; -- Read-only. RX RX : Boolean := True; -- unspecified Reserved_12_31 : HAL.UInt20 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for MSR_Register use record INAK at 0 range 0 .. 0; SLAK at 0 range 1 .. 1; ERRI at 0 range 2 .. 2; WKUI at 0 range 3 .. 3; SLAKI at 0 range 4 .. 4; Reserved_5_7 at 0 range 5 .. 7; TXM at 0 range 8 .. 8; RXM at 0 range 9 .. 9; SAMP at 0 range 10 .. 10; RX at 0 range 11 .. 11; Reserved_12_31 at 0 range 12 .. 31; end record; subtype TSR_CODE_Field is HAL.UInt2; -- TSR_TME array type TSR_TME_Field_Array is array (0 .. 2) of Boolean with Component_Size => 1, Size => 3; -- Type definition for TSR_TME type TSR_TME_Field (As_Array : Boolean := False) is record case As_Array is when False => -- TME as a value Val : HAL.UInt3; when True => -- TME as an array Arr : TSR_TME_Field_Array; end case; end record with Unchecked_Union, Size => 3; for TSR_TME_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- TSR_LOW array type TSR_LOW_Field_Array is array (0 .. 2) of Boolean with Component_Size => 1, Size => 3; -- Type definition for TSR_LOW type TSR_LOW_Field (As_Array : Boolean := False) is record case As_Array is when False => -- LOW as a value Val : HAL.UInt3; when True => -- LOW as an array Arr : TSR_LOW_Field_Array; end case; end record with Unchecked_Union, Size => 3; for TSR_LOW_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- transmit status register type TSR_Register is record -- RQCP0 RQCP0 : Boolean := False; -- TXOK0 TXOK0 : Boolean := False; -- ALST0 ALST0 : Boolean := False; -- TERR0 TERR0 : Boolean := False; -- unspecified Reserved_4_6 : HAL.UInt3 := 16#0#; -- ABRQ0 ABRQ0 : Boolean := False; -- RQCP1 RQCP1 : Boolean := False; -- TXOK1 TXOK1 : Boolean := False; -- ALST1 ALST1 : Boolean := False; -- TERR1 TERR1 : Boolean := False; -- unspecified Reserved_12_14 : HAL.UInt3 := 16#0#; -- ABRQ1 ABRQ1 : Boolean := False; -- RQCP2 RQCP2 : Boolean := False; -- TXOK2 TXOK2 : Boolean := False; -- ALST2 ALST2 : Boolean := False; -- TERR2 TERR2 : Boolean := False; -- unspecified Reserved_20_22 : HAL.UInt3 := 16#0#; -- ABRQ2 ABRQ2 : Boolean := False; -- Read-only. CODE CODE : TSR_CODE_Field := 16#0#; -- Read-only. Lowest priority flag for mailbox 0 TME : TSR_TME_Field := (As_Array => False, Val => 16#1#); -- Read-only. Lowest priority flag for mailbox 0 LOW : TSR_LOW_Field := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TSR_Register use record RQCP0 at 0 range 0 .. 0; TXOK0 at 0 range 1 .. 1; ALST0 at 0 range 2 .. 2; TERR0 at 0 range 3 .. 3; Reserved_4_6 at 0 range 4 .. 6; ABRQ0 at 0 range 7 .. 7; RQCP1 at 0 range 8 .. 8; TXOK1 at 0 range 9 .. 9; ALST1 at 0 range 10 .. 10; TERR1 at 0 range 11 .. 11; Reserved_12_14 at 0 range 12 .. 14; ABRQ1 at 0 range 15 .. 15; RQCP2 at 0 range 16 .. 16; TXOK2 at 0 range 17 .. 17; ALST2 at 0 range 18 .. 18; TERR2 at 0 range 19 .. 19; Reserved_20_22 at 0 range 20 .. 22; ABRQ2 at 0 range 23 .. 23; CODE at 0 range 24 .. 25; TME at 0 range 26 .. 28; LOW at 0 range 29 .. 31; end record; subtype RF0R_FMP0_Field is HAL.UInt2; -- receive FIFO 0 register type RF0R_Register is record -- Read-only. FMP0 FMP0 : RF0R_FMP0_Field := 16#0#; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- FULL0 FULL0 : Boolean := False; -- FOVR0 FOVR0 : Boolean := False; -- RFOM0 RFOM0 : Boolean := False; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RF0R_Register use record FMP0 at 0 range 0 .. 1; Reserved_2_2 at 0 range 2 .. 2; FULL0 at 0 range 3 .. 3; FOVR0 at 0 range 4 .. 4; RFOM0 at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; subtype RF1R_FMP1_Field is HAL.UInt2; -- receive FIFO 1 register type RF1R_Register is record -- Read-only. FMP1 FMP1 : RF1R_FMP1_Field := 16#0#; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- FULL1 FULL1 : Boolean := False; -- FOVR1 FOVR1 : Boolean := False; -- RFOM1 RFOM1 : Boolean := False; -- unspecified Reserved_6_31 : HAL.UInt26 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RF1R_Register use record FMP1 at 0 range 0 .. 1; Reserved_2_2 at 0 range 2 .. 2; FULL1 at 0 range 3 .. 3; FOVR1 at 0 range 4 .. 4; RFOM1 at 0 range 5 .. 5; Reserved_6_31 at 0 range 6 .. 31; end record; -- interrupt enable register type IER_Register is record -- TMEIE TMEIE : Boolean := False; -- FMPIE0 FMPIE0 : Boolean := False; -- FFIE0 FFIE0 : Boolean := False; -- FOVIE0 FOVIE0 : Boolean := False; -- FMPIE1 FMPIE1 : Boolean := False; -- FFIE1 FFIE1 : Boolean := False; -- FOVIE1 FOVIE1 : Boolean := False; -- unspecified Reserved_7_7 : HAL.Bit := 16#0#; -- EWGIE EWGIE : Boolean := False; -- EPVIE EPVIE : Boolean := False; -- BOFIE BOFIE : Boolean := False; -- LECIE LECIE : Boolean := False; -- unspecified Reserved_12_14 : HAL.UInt3 := 16#0#; -- ERRIE ERRIE : Boolean := False; -- WKUIE WKUIE : Boolean := False; -- SLKIE SLKIE : Boolean := False; -- unspecified Reserved_18_31 : HAL.UInt14 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for IER_Register use record TMEIE at 0 range 0 .. 0; FMPIE0 at 0 range 1 .. 1; FFIE0 at 0 range 2 .. 2; FOVIE0 at 0 range 3 .. 3; FMPIE1 at 0 range 4 .. 4; FFIE1 at 0 range 5 .. 5; FOVIE1 at 0 range 6 .. 6; Reserved_7_7 at 0 range 7 .. 7; EWGIE at 0 range 8 .. 8; EPVIE at 0 range 9 .. 9; BOFIE at 0 range 10 .. 10; LECIE at 0 range 11 .. 11; Reserved_12_14 at 0 range 12 .. 14; ERRIE at 0 range 15 .. 15; WKUIE at 0 range 16 .. 16; SLKIE at 0 range 17 .. 17; Reserved_18_31 at 0 range 18 .. 31; end record; subtype ESR_LEC_Field is HAL.UInt3; subtype ESR_TEC_Field is HAL.UInt8; subtype ESR_REC_Field is HAL.UInt8; -- interrupt enable register type ESR_Register is record -- Read-only. EWGF EWGF : Boolean := False; -- Read-only. EPVF EPVF : Boolean := False; -- Read-only. BOFF BOFF : Boolean := False; -- unspecified Reserved_3_3 : HAL.Bit := 16#0#; -- LEC LEC : ESR_LEC_Field := 16#0#; -- unspecified Reserved_7_15 : HAL.UInt9 := 16#0#; -- Read-only. TEC TEC : ESR_TEC_Field := 16#0#; -- Read-only. REC REC : ESR_REC_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for ESR_Register use record EWGF at 0 range 0 .. 0; EPVF at 0 range 1 .. 1; BOFF at 0 range 2 .. 2; Reserved_3_3 at 0 range 3 .. 3; LEC at 0 range 4 .. 6; Reserved_7_15 at 0 range 7 .. 15; TEC at 0 range 16 .. 23; REC at 0 range 24 .. 31; end record; subtype BTR_BRP_Field is HAL.UInt10; subtype BTR_TS1_Field is HAL.UInt4; subtype BTR_TS2_Field is HAL.UInt3; subtype BTR_SJW_Field is HAL.UInt2; -- bit timing register type BTR_Register is record -- BRP BRP : BTR_BRP_Field := 16#0#; -- unspecified Reserved_10_15 : HAL.UInt6 := 16#0#; -- TS1 TS1 : BTR_TS1_Field := 16#0#; -- TS2 TS2 : BTR_TS2_Field := 16#0#; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- SJW SJW : BTR_SJW_Field := 16#0#; -- unspecified Reserved_26_29 : HAL.UInt4 := 16#0#; -- LBKM LBKM : Boolean := False; -- SILM SILM : Boolean := False; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for BTR_Register use record BRP at 0 range 0 .. 9; Reserved_10_15 at 0 range 10 .. 15; TS1 at 0 range 16 .. 19; TS2 at 0 range 20 .. 22; Reserved_23_23 at 0 range 23 .. 23; SJW at 0 range 24 .. 25; Reserved_26_29 at 0 range 26 .. 29; LBKM at 0 range 30 .. 30; SILM at 0 range 31 .. 31; end record; subtype TI0R_EXID_Field is HAL.UInt18; subtype TI0R_STID_Field is HAL.UInt11; -- TX mailbox identifier register type TI0R_Register is record -- TXRQ TXRQ : Boolean := False; -- RTR RTR : Boolean := False; -- IDE IDE : Boolean := False; -- EXID EXID : TI0R_EXID_Field := 16#0#; -- STID STID : TI0R_STID_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TI0R_Register use record TXRQ at 0 range 0 .. 0; RTR at 0 range 1 .. 1; IDE at 0 range 2 .. 2; EXID at 0 range 3 .. 20; STID at 0 range 21 .. 31; end record; subtype TDT0R_DLC_Field is HAL.UInt4; subtype TDT0R_TIME_Field is HAL.UInt16; -- mailbox data length control and time stamp register type TDT0R_Register is record -- DLC DLC : TDT0R_DLC_Field := 16#0#; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; -- TGT TGT : Boolean := False; -- unspecified Reserved_9_15 : HAL.UInt7 := 16#0#; -- TIME TIME : TDT0R_TIME_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TDT0R_Register use record DLC at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; TGT at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; TIME at 0 range 16 .. 31; end record; -- TDL0R_DATA array element subtype TDL0R_DATA_Element is HAL.UInt8; -- TDL0R_DATA array type TDL0R_DATA_Field_Array is array (0 .. 3) of TDL0R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data low register type TDL0R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : TDL0R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for TDL0R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- TDH0R_DATA array element subtype TDH0R_DATA_Element is HAL.UInt8; -- TDH0R_DATA array type TDH0R_DATA_Field_Array is array (4 .. 7) of TDH0R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data high register type TDH0R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : TDH0R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for TDH0R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; subtype TI1R_EXID_Field is HAL.UInt18; subtype TI1R_STID_Field is HAL.UInt11; -- mailbox identifier register type TI1R_Register is record -- TXRQ TXRQ : Boolean := False; -- RTR RTR : Boolean := False; -- IDE IDE : Boolean := False; -- EXID EXID : TI1R_EXID_Field := 16#0#; -- STID STID : TI1R_STID_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TI1R_Register use record TXRQ at 0 range 0 .. 0; RTR at 0 range 1 .. 1; IDE at 0 range 2 .. 2; EXID at 0 range 3 .. 20; STID at 0 range 21 .. 31; end record; subtype TDT1R_DLC_Field is HAL.UInt4; subtype TDT1R_TIME_Field is HAL.UInt16; -- mailbox data length control and time stamp register type TDT1R_Register is record -- DLC DLC : TDT1R_DLC_Field := 16#0#; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; -- TGT TGT : Boolean := False; -- unspecified Reserved_9_15 : HAL.UInt7 := 16#0#; -- TIME TIME : TDT1R_TIME_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TDT1R_Register use record DLC at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; TGT at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; TIME at 0 range 16 .. 31; end record; -- TDL1R_DATA array element subtype TDL1R_DATA_Element is HAL.UInt8; -- TDL1R_DATA array type TDL1R_DATA_Field_Array is array (0 .. 3) of TDL1R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data low register type TDL1R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : TDL1R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for TDL1R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- TDH1R_DATA array element subtype TDH1R_DATA_Element is HAL.UInt8; -- TDH1R_DATA array type TDH1R_DATA_Field_Array is array (4 .. 7) of TDH1R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data high register type TDH1R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : TDH1R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for TDH1R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; subtype TI2R_EXID_Field is HAL.UInt18; subtype TI2R_STID_Field is HAL.UInt11; -- mailbox identifier register type TI2R_Register is record -- TXRQ TXRQ : Boolean := False; -- RTR RTR : Boolean := False; -- IDE IDE : Boolean := False; -- EXID EXID : TI2R_EXID_Field := 16#0#; -- STID STID : TI2R_STID_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TI2R_Register use record TXRQ at 0 range 0 .. 0; RTR at 0 range 1 .. 1; IDE at 0 range 2 .. 2; EXID at 0 range 3 .. 20; STID at 0 range 21 .. 31; end record; subtype TDT2R_DLC_Field is HAL.UInt4; subtype TDT2R_TIME_Field is HAL.UInt16; -- mailbox data length control and time stamp register type TDT2R_Register is record -- DLC DLC : TDT2R_DLC_Field := 16#0#; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; -- TGT TGT : Boolean := False; -- unspecified Reserved_9_15 : HAL.UInt7 := 16#0#; -- TIME TIME : TDT2R_TIME_Field := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for TDT2R_Register use record DLC at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; TGT at 0 range 8 .. 8; Reserved_9_15 at 0 range 9 .. 15; TIME at 0 range 16 .. 31; end record; -- TDL2R_DATA array element subtype TDL2R_DATA_Element is HAL.UInt8; -- TDL2R_DATA array type TDL2R_DATA_Field_Array is array (0 .. 3) of TDL2R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data low register type TDL2R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : TDL2R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for TDL2R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- TDH2R_DATA array element subtype TDH2R_DATA_Element is HAL.UInt8; -- TDH2R_DATA array type TDH2R_DATA_Field_Array is array (4 .. 7) of TDH2R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data high register type TDH2R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : TDH2R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for TDH2R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; subtype RI0R_EXID_Field is HAL.UInt18; subtype RI0R_STID_Field is HAL.UInt11; -- receive FIFO mailbox identifier register type RI0R_Register is record -- unspecified Reserved_0_0 : HAL.Bit; -- Read-only. RTR RTR : Boolean; -- Read-only. IDE IDE : Boolean; -- Read-only. EXID EXID : RI0R_EXID_Field; -- Read-only. STID STID : RI0R_STID_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RI0R_Register use record Reserved_0_0 at 0 range 0 .. 0; RTR at 0 range 1 .. 1; IDE at 0 range 2 .. 2; EXID at 0 range 3 .. 20; STID at 0 range 21 .. 31; end record; subtype RDT0R_DLC_Field is HAL.UInt4; subtype RDT0R_FMI_Field is HAL.UInt8; subtype RDT0R_TIME_Field is HAL.UInt16; -- mailbox data high register type RDT0R_Register is record -- Read-only. DLC DLC : RDT0R_DLC_Field; -- unspecified Reserved_4_7 : HAL.UInt4; -- Read-only. FMI FMI : RDT0R_FMI_Field; -- Read-only. TIME TIME : RDT0R_TIME_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RDT0R_Register use record DLC at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; FMI at 0 range 8 .. 15; TIME at 0 range 16 .. 31; end record; -- RDL0R_DATA array element subtype RDL0R_DATA_Element is HAL.UInt8; -- RDL0R_DATA array type RDL0R_DATA_Field_Array is array (0 .. 3) of RDL0R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data high register type RDL0R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : RDL0R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for RDL0R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- RDH0R_DATA array element subtype RDH0R_DATA_Element is HAL.UInt8; -- RDH0R_DATA array type RDH0R_DATA_Field_Array is array (4 .. 7) of RDH0R_DATA_Element with Component_Size => 8, Size => 32; -- receive FIFO mailbox data high register type RDH0R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : RDH0R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for RDH0R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; subtype RI1R_EXID_Field is HAL.UInt18; subtype RI1R_STID_Field is HAL.UInt11; -- mailbox data high register type RI1R_Register is record -- unspecified Reserved_0_0 : HAL.Bit; -- Read-only. RTR RTR : Boolean; -- Read-only. IDE IDE : Boolean; -- Read-only. EXID EXID : RI1R_EXID_Field; -- Read-only. STID STID : RI1R_STID_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RI1R_Register use record Reserved_0_0 at 0 range 0 .. 0; RTR at 0 range 1 .. 1; IDE at 0 range 2 .. 2; EXID at 0 range 3 .. 20; STID at 0 range 21 .. 31; end record; subtype RDT1R_DLC_Field is HAL.UInt4; subtype RDT1R_FMI_Field is HAL.UInt8; subtype RDT1R_TIME_Field is HAL.UInt16; -- mailbox data high register type RDT1R_Register is record -- Read-only. DLC DLC : RDT1R_DLC_Field; -- unspecified Reserved_4_7 : HAL.UInt4; -- Read-only. FMI FMI : RDT1R_FMI_Field; -- Read-only. TIME TIME : RDT1R_TIME_Field; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for RDT1R_Register use record DLC at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; FMI at 0 range 8 .. 15; TIME at 0 range 16 .. 31; end record; -- RDL1R_DATA array element subtype RDL1R_DATA_Element is HAL.UInt8; -- RDL1R_DATA array type RDL1R_DATA_Field_Array is array (0 .. 3) of RDL1R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data high register type RDL1R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : RDL1R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for RDL1R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- RDH1R_DATA array element subtype RDH1R_DATA_Element is HAL.UInt8; -- RDH1R_DATA array type RDH1R_DATA_Field_Array is array (4 .. 7) of RDH1R_DATA_Element with Component_Size => 8, Size => 32; -- mailbox data high register type RDH1R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- DATA as a value Val : HAL.UInt32; when True => -- DATA as an array Arr : RDH1R_DATA_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for RDH1R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; subtype FMR_CANSB_Field is HAL.UInt6; -- filter master register type FMR_Register is record -- Filter initialization mode FINIT : Boolean := True; -- unspecified Reserved_1_7 : HAL.UInt7 := 16#0#; -- CAN start bank CANSB : FMR_CANSB_Field := 16#E#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#A870#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FMR_Register use record FINIT at 0 range 0 .. 0; Reserved_1_7 at 0 range 1 .. 7; CANSB at 0 range 8 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; -- FM1R_FBM array type FM1R_FBM_Field_Array is array (0 .. 27) of Boolean with Component_Size => 1, Size => 28; -- Type definition for FM1R_FBM type FM1R_FBM_Field (As_Array : Boolean := False) is record case As_Array is when False => -- FBM as a value Val : HAL.UInt28; when True => -- FBM as an array Arr : FM1R_FBM_Field_Array; end case; end record with Unchecked_Union, Size => 28; for FM1R_FBM_Field use record Val at 0 range 0 .. 27; Arr at 0 range 0 .. 27; end record; -- filter mode register type FM1R_Register is record -- Filter mode FBM : FM1R_FBM_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FM1R_Register use record FBM at 0 range 0 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- FS1R_FSC array type FS1R_FSC_Field_Array is array (0 .. 27) of Boolean with Component_Size => 1, Size => 28; -- Type definition for FS1R_FSC type FS1R_FSC_Field (As_Array : Boolean := False) is record case As_Array is when False => -- FSC as a value Val : HAL.UInt28; when True => -- FSC as an array Arr : FS1R_FSC_Field_Array; end case; end record with Unchecked_Union, Size => 28; for FS1R_FSC_Field use record Val at 0 range 0 .. 27; Arr at 0 range 0 .. 27; end record; -- filter scale register type FS1R_Register is record -- Filter scale configuration FSC : FS1R_FSC_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FS1R_Register use record FSC at 0 range 0 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- FFA1R_FFA array type FFA1R_FFA_Field_Array is array (0 .. 27) of Boolean with Component_Size => 1, Size => 28; -- Type definition for FFA1R_FFA type FFA1R_FFA_Field (As_Array : Boolean := False) is record case As_Array is when False => -- FFA as a value Val : HAL.UInt28; when True => -- FFA as an array Arr : FFA1R_FFA_Field_Array; end case; end record with Unchecked_Union, Size => 28; for FFA1R_FFA_Field use record Val at 0 range 0 .. 27; Arr at 0 range 0 .. 27; end record; -- filter FIFO assignment register type FFA1R_Register is record -- Filter FIFO assignment for filter 0 FFA : FFA1R_FFA_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FFA1R_Register use record FFA at 0 range 0 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- FA1R_FACT array type FA1R_FACT_Field_Array is array (0 .. 27) of Boolean with Component_Size => 1, Size => 28; -- Type definition for FA1R_FACT type FA1R_FACT_Field (As_Array : Boolean := False) is record case As_Array is when False => -- FACT as a value Val : HAL.UInt28; when True => -- FACT as an array Arr : FA1R_FACT_Field_Array; end case; end record with Unchecked_Union, Size => 28; for FA1R_FACT_Field use record Val at 0 range 0 .. 27; Arr at 0 range 0 .. 27; end record; -- filter activation register type FA1R_Register is record -- Filter active FACT : FA1R_FACT_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for FA1R_Register use record FACT at 0 range 0 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- F0R_FB array type F0R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 0 register 1 type F0R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F0R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F0R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F1R_FB array type F1R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 1 register 1 type F1R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F1R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F1R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F2R_FB array type F2R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 2 register 1 type F2R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F2R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F2R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F3R_FB array type F3R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 3 register 1 type F3R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F3R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F3R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F4R_FB array type F4R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 4 register 1 type F4R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F4R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F4R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F5R_FB array type F5R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 5 register 1 type F5R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F5R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F5R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F6R_FB array type F6R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 6 register 1 type F6R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F6R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F6R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F7R_FB array type F7R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 7 register 1 type F7R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F7R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F7R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F8R_FB array type F8R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 8 register 1 type F8R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F8R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F8R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F9R_FB array type F9R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 9 register 1 type F9R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F9R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F9R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F10R_FB array type F10R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 10 register 1 type F10R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F10R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F10R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F11R_FB array type F11R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 11 register 1 type F11R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F11R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F11R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F12R_FB array type F12R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 4 register 1 type F12R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F12R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F12R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F13R_FB array type F13R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 13 register 1 type F13R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F13R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F13R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F14R_FB array type F14R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 14 register 1 type F14R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F14R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F14R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F15R_FB array type F15R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 15 register 1 type F15R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F15R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F15R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F16R_FB array type F16R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 16 register 1 type F16R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F16R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F16R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F17R_FB array type F17R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 17 register 1 type F17R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F17R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F17R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F18R_FB array type F18R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 18 register 1 type F18R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F18R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F18R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F19R_FB array type F19R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 19 register 1 type F19R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F19R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F19R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F20R_FB array type F20R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 20 register 1 type F20R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F20R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F20R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F21R_FB array type F21R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 21 register 1 type F21R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F21R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F21R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F22R_FB array type F22R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 22 register 1 type F22R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F22R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F22R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F23R_FB array type F23R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 23 register 1 type F23R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F23R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F23R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F24R_FB array type F24R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 24 register 1 type F24R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F24R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F24R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F25R_FB array type F25R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 25 register 1 type F25R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F25R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F25R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F26R_FB array type F26R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 26 register 1 type F26R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F26R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F26R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; -- F27R_FB array type F27R_FB_Field_Array is array (0 .. 31) of Boolean with Component_Size => 1, Size => 32; -- Filter bank 27 register 1 type F27R_Register (As_Array : Boolean := False) is record case As_Array is when False => -- FB as a value Val : HAL.UInt32; when True => -- FB as an array Arr : F27R_FB_Field_Array; end case; end record with Unchecked_Union, Size => 32, Volatile_Full_Access, Bit_Order => System.Low_Order_First; for F27R_Register use record Val at 0 range 0 .. 31; Arr at 0 range 0 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Controller area network type CAN_Peripheral is record -- master control register MCR : aliased MCR_Register; -- master status register MSR : aliased MSR_Register; -- transmit status register TSR : aliased TSR_Register; -- receive FIFO 0 register RF0R : aliased RF0R_Register; -- receive FIFO 1 register RF1R : aliased RF1R_Register; -- interrupt enable register IER : aliased IER_Register; -- interrupt enable register ESR : aliased ESR_Register; -- bit timing register BTR : aliased BTR_Register; -- TX mailbox identifier register TI0R : aliased TI0R_Register; -- mailbox data length control and time stamp register TDT0R : aliased TDT0R_Register; -- mailbox data low register TDL0R : aliased TDL0R_Register; -- mailbox data high register TDH0R : aliased TDH0R_Register; -- mailbox identifier register TI1R : aliased TI1R_Register; -- mailbox data length control and time stamp register TDT1R : aliased TDT1R_Register; -- mailbox data low register TDL1R : aliased TDL1R_Register; -- mailbox data high register TDH1R : aliased TDH1R_Register; -- mailbox identifier register TI2R : aliased TI2R_Register; -- mailbox data length control and time stamp register TDT2R : aliased TDT2R_Register; -- mailbox data low register TDL2R : aliased TDL2R_Register; -- mailbox data high register TDH2R : aliased TDH2R_Register; -- receive FIFO mailbox identifier register RI0R : aliased RI0R_Register; -- mailbox data high register RDT0R : aliased RDT0R_Register; -- mailbox data high register RDL0R : aliased RDL0R_Register; -- receive FIFO mailbox data high register RDH0R : aliased RDH0R_Register; -- mailbox data high register RI1R : aliased RI1R_Register; -- mailbox data high register RDT1R : aliased RDT1R_Register; -- mailbox data high register RDL1R : aliased RDL1R_Register; -- mailbox data high register RDH1R : aliased RDH1R_Register; -- filter master register FMR : aliased FMR_Register; -- filter mode register FM1R : aliased FM1R_Register; -- filter scale register FS1R : aliased FS1R_Register; -- filter FIFO assignment register FFA1R : aliased FFA1R_Register; -- filter activation register FA1R : aliased FA1R_Register; -- Filter bank 0 register 1 F0R1 : aliased F0R_Register; -- Filter bank 0 register 2 F0R2 : aliased F0R_Register; -- Filter bank 1 register 1 F1R1 : aliased F1R_Register; -- Filter bank 1 register 2 F1R2 : aliased F1R_Register; -- Filter bank 2 register 1 F2R1 : aliased F2R_Register; -- Filter bank 2 register 2 F2R2 : aliased F2R_Register; -- Filter bank 3 register 1 F3R1 : aliased F3R_Register; -- Filter bank 3 register 2 F3R2 : aliased F3R_Register; -- Filter bank 4 register 1 F4R1 : aliased F4R_Register; -- Filter bank 4 register 2 F4R2 : aliased F4R_Register; -- Filter bank 5 register 1 F5R1 : aliased F5R_Register; -- Filter bank 5 register 2 F5R2 : aliased F5R_Register; -- Filter bank 6 register 1 F6R1 : aliased F6R_Register; -- Filter bank 6 register 2 F6R2 : aliased F6R_Register; -- Filter bank 7 register 1 F7R1 : aliased F7R_Register; -- Filter bank 7 register 2 F7R2 : aliased F7R_Register; -- Filter bank 8 register 1 F8R1 : aliased F8R_Register; -- Filter bank 8 register 2 F8R2 : aliased F8R_Register; -- Filter bank 9 register 1 F9R1 : aliased F9R_Register; -- Filter bank 9 register 2 F9R2 : aliased F9R_Register; -- Filter bank 10 register 1 F10R1 : aliased F10R_Register; -- Filter bank 10 register 2 F10R2 : aliased F10R_Register; -- Filter bank 11 register 1 F11R1 : aliased F11R_Register; -- Filter bank 11 register 2 F11R2 : aliased F11R_Register; -- Filter bank 4 register 1 F12R1 : aliased F12R_Register; -- Filter bank 12 register 2 F12R2 : aliased F12R_Register; -- Filter bank 13 register 1 F13R1 : aliased F13R_Register; -- Filter bank 13 register 2 F13R2 : aliased F13R_Register; -- Filter bank 14 register 1 F14R1 : aliased F14R_Register; -- Filter bank 14 register 2 F14R2 : aliased F14R_Register; -- Filter bank 15 register 1 F15R1 : aliased F15R_Register; -- Filter bank 15 register 2 F15R2 : aliased F15R_Register; -- Filter bank 16 register 1 F16R1 : aliased F16R_Register; -- Filter bank 16 register 2 F16R2 : aliased F16R_Register; -- Filter bank 17 register 1 F17R1 : aliased F17R_Register; -- Filter bank 17 register 2 F17R2 : aliased F17R_Register; -- Filter bank 18 register 1 F18R1 : aliased F18R_Register; -- Filter bank 18 register 2 F18R2 : aliased F18R_Register; -- Filter bank 19 register 1 F19R1 : aliased F19R_Register; -- Filter bank 19 register 2 F19R2 : aliased F19R_Register; -- Filter bank 20 register 1 F20R1 : aliased F20R_Register; -- Filter bank 20 register 2 F20R2 : aliased F20R_Register; -- Filter bank 21 register 1 F21R1 : aliased F21R_Register; -- Filter bank 21 register 2 F21R2 : aliased F21R_Register; -- Filter bank 22 register 1 F22R1 : aliased F22R_Register; -- Filter bank 22 register 2 F22R2 : aliased F22R_Register; -- Filter bank 23 register 1 F23R1 : aliased F23R_Register; -- Filter bank 23 register 2 F23R2 : aliased F23R_Register; -- Filter bank 24 register 1 F24R1 : aliased F24R_Register; -- Filter bank 24 register 2 F24R2 : aliased F24R_Register; -- Filter bank 25 register 1 F25R1 : aliased F25R_Register; -- Filter bank 25 register 2 F25R2 : aliased F25R_Register; -- Filter bank 26 register 1 F26R1 : aliased F26R_Register; -- Filter bank 26 register 2 F26R2 : aliased F26R_Register; -- Filter bank 27 register 1 F27R1 : aliased F27R_Register; -- Filter bank 27 register 2 F27R2 : aliased F27R_Register; end record with Volatile; for CAN_Peripheral use record MCR at 16#0# range 0 .. 31; MSR at 16#4# range 0 .. 31; TSR at 16#8# range 0 .. 31; RF0R at 16#C# range 0 .. 31; RF1R at 16#10# range 0 .. 31; IER at 16#14# range 0 .. 31; ESR at 16#18# range 0 .. 31; BTR at 16#1C# range 0 .. 31; TI0R at 16#180# range 0 .. 31; TDT0R at 16#184# range 0 .. 31; TDL0R at 16#188# range 0 .. 31; TDH0R at 16#18C# range 0 .. 31; TI1R at 16#190# range 0 .. 31; TDT1R at 16#194# range 0 .. 31; TDL1R at 16#198# range 0 .. 31; TDH1R at 16#19C# range 0 .. 31; TI2R at 16#1A0# range 0 .. 31; TDT2R at 16#1A4# range 0 .. 31; TDL2R at 16#1A8# range 0 .. 31; TDH2R at 16#1AC# range 0 .. 31; RI0R at 16#1B0# range 0 .. 31; RDT0R at 16#1B4# range 0 .. 31; RDL0R at 16#1B8# range 0 .. 31; RDH0R at 16#1BC# range 0 .. 31; RI1R at 16#1C0# range 0 .. 31; RDT1R at 16#1C4# range 0 .. 31; RDL1R at 16#1C8# range 0 .. 31; RDH1R at 16#1CC# range 0 .. 31; FMR at 16#200# range 0 .. 31; FM1R at 16#204# range 0 .. 31; FS1R at 16#20C# range 0 .. 31; FFA1R at 16#214# range 0 .. 31; FA1R at 16#21C# range 0 .. 31; F0R1 at 16#240# range 0 .. 31; F0R2 at 16#244# range 0 .. 31; F1R1 at 16#248# range 0 .. 31; F1R2 at 16#24C# range 0 .. 31; F2R1 at 16#250# range 0 .. 31; F2R2 at 16#254# range 0 .. 31; F3R1 at 16#258# range 0 .. 31; F3R2 at 16#25C# range 0 .. 31; F4R1 at 16#260# range 0 .. 31; F4R2 at 16#264# range 0 .. 31; F5R1 at 16#268# range 0 .. 31; F5R2 at 16#26C# range 0 .. 31; F6R1 at 16#270# range 0 .. 31; F6R2 at 16#274# range 0 .. 31; F7R1 at 16#278# range 0 .. 31; F7R2 at 16#27C# range 0 .. 31; F8R1 at 16#280# range 0 .. 31; F8R2 at 16#284# range 0 .. 31; F9R1 at 16#288# range 0 .. 31; F9R2 at 16#28C# range 0 .. 31; F10R1 at 16#290# range 0 .. 31; F10R2 at 16#294# range 0 .. 31; F11R1 at 16#298# range 0 .. 31; F11R2 at 16#29C# range 0 .. 31; F12R1 at 16#2A0# range 0 .. 31; F12R2 at 16#2A4# range 0 .. 31; F13R1 at 16#2A8# range 0 .. 31; F13R2 at 16#2AC# range 0 .. 31; F14R1 at 16#2B0# range 0 .. 31; F14R2 at 16#2B4# range 0 .. 31; F15R1 at 16#2B8# range 0 .. 31; F15R2 at 16#2BC# range 0 .. 31; F16R1 at 16#2C0# range 0 .. 31; F16R2 at 16#2C4# range 0 .. 31; F17R1 at 16#2C8# range 0 .. 31; F17R2 at 16#2CC# range 0 .. 31; F18R1 at 16#2D0# range 0 .. 31; F18R2 at 16#2D4# range 0 .. 31; F19R1 at 16#2D8# range 0 .. 31; F19R2 at 16#2DC# range 0 .. 31; F20R1 at 16#2E0# range 0 .. 31; F20R2 at 16#2E4# range 0 .. 31; F21R1 at 16#2E8# range 0 .. 31; F21R2 at 16#2EC# range 0 .. 31; F22R1 at 16#2F0# range 0 .. 31; F22R2 at 16#2F4# range 0 .. 31; F23R1 at 16#2F8# range 0 .. 31; F23R2 at 16#2FC# range 0 .. 31; F24R1 at 16#300# range 0 .. 31; F24R2 at 16#304# range 0 .. 31; F25R1 at 16#308# range 0 .. 31; F25R2 at 16#30C# range 0 .. 31; F26R1 at 16#310# range 0 .. 31; F26R2 at 16#314# range 0 .. 31; F27R1 at 16#318# range 0 .. 31; F27R2 at 16#31C# range 0 .. 31; end record; -- Controller area network CAN1_Periph : aliased CAN_Peripheral with Import, Address => System'To_Address (16#40006400#); -- Controller area network CAN2_Periph : aliased CAN_Peripheral with Import, Address => System'To_Address (16#40006800#); end STM32_SVD.CAN;
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- G N A T . O S _ L I B -- -- -- -- S p e c -- -- -- -- $Revision$ -- -- -- Copyright (C) 1995-2001 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Operating system interface facilities -- This package contains types and procedures for interfacing to the -- underlying OS. It is used by the GNAT compiler and by tools associated -- with the GNAT compiler, and therefore works for the various operating -- systems to which GNAT has been ported. This package will undoubtedly -- grow as new services are needed by various tools. -- This package tends to use fairly low-level Ada in order to not bring -- in large portions of the RTL. For example, functions return access -- to string as part of avoiding functions returning unconstrained types; -- types related to dates are defined here instead of using the types -- from Calendar, since use of Calendar forces linking in of tasking code. -- Except where specifically noted, these routines are portable across -- all GNAT implementations on all supported operating systems. with System; with Unchecked_Deallocation; package GNAT.OS_Lib is pragma Elaborate_Body (OS_Lib); type String_Access is access all String; -- General purpose string access type procedure Free is new Unchecked_Deallocation (Object => String, Name => String_Access); type String_List is array (Positive range <>) of String_Access; type String_List_Access is access all String_List; -- General purpose array and pointer for list of string accesses --------------------- -- Time/Date Stuff -- --------------------- -- The OS's notion of time is represented by the private type OS_Time. -- This is the type returned by the File_Time_Stamp functions to obtain -- the time stamp of a specified file. Functions and a procedure (modeled -- after the similar subprograms in package Calendar) are provided for -- extracting information from a value of this type. Although these are -- called GM, the intention is not that they provide GMT times in all -- cases but rather the actual (time-zone independent) time stamp of the -- file (of course in Unix systems, this *is* in GMT form). type OS_Time is private; subtype Year_Type is Integer range 1900 .. 2099; subtype Month_Type is Integer range 1 .. 12; subtype Day_Type is Integer range 1 .. 31; subtype Hour_Type is Integer range 0 .. 23; subtype Minute_Type is Integer range 0 .. 59; subtype Second_Type is Integer range 0 .. 59; function GM_Year (Date : OS_Time) return Year_Type; function GM_Month (Date : OS_Time) return Month_Type; function GM_Day (Date : OS_Time) return Day_Type; function GM_Hour (Date : OS_Time) return Hour_Type; function GM_Minute (Date : OS_Time) return Minute_Type; function GM_Second (Date : OS_Time) return Second_Type; procedure GM_Split (Date : OS_Time; Year : out Year_Type; Month : out Month_Type; Day : out Day_Type; Hour : out Hour_Type; Minute : out Minute_Type; Second : out Second_Type); ---------------- -- File Stuff -- ---------------- -- These routines give access to the open/creat/close/read/write level -- of I/O routines in the typical C library (these functions are not -- part of the ANSI C standard, but are typically available in all -- systems). See also package Interfaces.C_Streams for access to the -- stream level routines. -- Note on file names. If a file name is passed as type String in any -- of the following specifications, then the name is a normal Ada string -- and need not be NUL-terminated. However, a trailing NUL character is -- permitted, and will be ignored (more accurately, the NUL and any -- characters that follow it will be ignored). type File_Descriptor is private; -- Corresponds to the int file handle values used in the C routines, Standin : constant File_Descriptor; Standout : constant File_Descriptor; Standerr : constant File_Descriptor; -- File descriptors for standard input output files Invalid_FD : constant File_Descriptor; -- File descriptor returned when error in opening/creating file; type Mode is (Binary, Text); for Mode'Size use Integer'Size; for Mode use (Binary => 0, Text => 1); -- Used in all the Open and Create calls to specify if the file is to be -- opened in binary mode or text mode. In systems like Unix, this has no -- effect, but in systems capable of text mode translation, the use of -- Text as the mode parameter causes the system to do CR/LF translation -- and also to recognize the DOS end of file character on input. The use -- of Text where appropriate allows programs to take a portable Unix view -- of DOs-format files and process them appropriately. function Open_Read (Name : String; Fmode : Mode) return File_Descriptor; -- Open file Name for reading, returning file descriptor File descriptor -- returned is Invalid_FD if file cannot be opened. function Open_Read_Write (Name : String; Fmode : Mode) return File_Descriptor; -- Open file Name for both reading and writing, returning file -- descriptor. File descriptor returned is Invalid_FD if file cannot be -- opened. function Create_File (Name : String; Fmode : Mode) return File_Descriptor; -- Creates new file with given name for writing, returning file descriptor -- for subsequent use in Write calls. File descriptor returned is -- Invalid_FD if file cannot be successfully created function Create_New_File (Name : String; Fmode : Mode) return File_Descriptor; -- Create new file with given name for writing, returning file descriptor -- for subsequent use in Write calls. This differs from Create_File in -- that it fails if the file already exists. File descriptor returned is -- Invalid_FD if the file exists or cannot be created. Temp_File_Len : constant Integer := 12; -- Length of name returned by Create_Temp_File call (GNAT-XXXXXX & NUL) subtype Temp_File_Name is String (1 .. Temp_File_Len); -- String subtype set by Create_Temp_File procedure Create_Temp_File (FD : out File_Descriptor; Name : out Temp_File_Name); -- Create and open for writing a temporary file. The name of the -- file and the File Descriptor are returned. The File Descriptor -- returned is Invalid_FD in the case of failure. No mode parameter -- is provided. Since this is a temporary file, there is no point in -- doing text translation on it. procedure Close (FD : File_Descriptor); pragma Import (C, Close, "close"); -- Close file referenced by FD procedure Delete_File (Name : String; Success : out Boolean); -- Deletes file. Success is set True or False indicating if the delete is -- successful. procedure Rename_File (Old_Name : String; New_Name : String; Success : out Boolean); -- Rename a file. Successis set True or False indicating if the rename is -- successful. function Read (FD : File_Descriptor; A : System.Address; N : Integer) return Integer; pragma Import (C, Read, "read"); -- Read N bytes to address A from file referenced by FD. Returned value -- is count of bytes actually read, which can be less than N at EOF. function Write (FD : File_Descriptor; A : System.Address; N : Integer) return Integer; pragma Import (C, Write, "write"); -- Write N bytes from address A to file referenced by FD. The returned -- value is the number of bytes written, which can be less than N if -- a disk full condition was detected. Seek_Cur : constant := 1; Seek_End : constant := 2; Seek_Set : constant := 0; -- Used to indicate origin for Lseek call procedure Lseek (FD : File_Descriptor; offset : Long_Integer; origin : Integer); pragma Import (C, Lseek, "lseek"); -- Sets the current file pointer to the indicated offset value, -- relative to the current position (origin = SEEK_CUR), end of -- file (origin = SEEK_END), or start of file (origin = SEEK_SET). function File_Length (FD : File_Descriptor) return Long_Integer; pragma Import (C, File_Length, "__gnat_file_length"); -- Get length of file from file descriptor FD function File_Time_Stamp (Name : String) return OS_Time; -- Given the name of a file or directory, Name, obtains and returns the -- time stamp. This function can be used for an unopend file. function File_Time_Stamp (FD : File_Descriptor) return OS_Time; -- Get time stamp of file from file descriptor FD function Normalize_Pathname (Name : String; Directory : String := "") return String; -- Returns a file name as an absolute path name, resolving all relative -- directories, and symbolic links. The parameter Directory is a fully -- resolved path name for a directory, or the empty string (the default). -- Name is the name of a file, which is either relative to the given -- directory name, if Directory is non-null, or to the current working -- directory if Directory is null. The result returned is the normalized -- name of the file. For most cases, if two file names designate the same -- file through different paths, Normalize_Pathname will return the same -- canonical name in both cases. However, there are cases when this is -- not true; for example, this is not true in Unix for two hard links -- designating the same file. -- -- If Name cannot be resolved or is null on entry (for example if there is -- a circularity in symbolic links: A is a symbolic link for B, while B is -- a symbolic link for A), then Normalize_Pathname returns an empty string. -- -- In VMS, if Name follows the VMS syntax file specification, it is first -- converted into Unix syntax. If the conversion fails, Normalize_Pathname -- returns an empty string. function Is_Absolute_Path (Name : String) return Boolean; -- Returns True if Name is an absolute path name, i.e. it designates -- a directory absolutely, rather than relative to another directory. function Is_Regular_File (Name : String) return Boolean; -- Determines if the given string, Name, is the name of an existing -- regular file. Returns True if so, False otherwise. function Is_Directory (Name : String) return Boolean; -- Determines if the given string, Name, is the name of a directory. -- Returns True if so, False otherwise. function Is_Writable_File (Name : String) return Boolean; -- Determines if the given string, Name, is the name of an existing -- file that is writable. Returns True if so, False otherwise. function Locate_Exec_On_Path (Exec_Name : String) return String_Access; -- Try to locate an executable whose name is given by Exec_Name in the -- directories listed in the environment Path. If the Exec_Name doesn't -- have the executable suffix, it will be appended before the search. -- Otherwise works like Locate_Regular_File below. -- -- Note that this function allocates some memory for the returned value. -- This memory needs to be deallocated after use. function Locate_Regular_File (File_Name : String; Path : String) return String_Access; -- Try to locate a regular file whose name is given by File_Name in the -- directories listed in Path. If a file is found, its full pathname is -- returned; otherwise, a null pointer is returned. If the File_Name given -- is an absolute pathname, then Locate_Regular_File just checks that the -- file exists and is a regular file. Otherwise, the Path argument is -- parsed according to OS conventions, and for each directory in the Path -- a check is made if File_Name is a relative pathname of a regular file -- from that directory. -- -- Note that this function allocates some memory for the returned value. -- This memory needs to be deallocated after use. function Get_Debuggable_Suffix return String_Access; -- Return the debuggable suffix convention. Usually this is the same as -- the convention for Get_Executable_Suffix. -- -- Note that this function allocates some memory for the returned value. -- This memory needs to be deallocated after use. function Get_Executable_Suffix return String_Access; -- Return the executable suffix convention. -- -- Note that this function allocates some memory for the returned value. -- This memory needs to be deallocated after use. function Get_Object_Suffix return String_Access; -- Return the object suffix convention. -- -- Note that this function allocates some memory for the returned value. -- This memory needs to be deallocated after use. -- The following section contains low-level routines using addresses to -- pass file name and executable name. In each routine the name must be -- Nul-Terminated. For complete documentation refer to the equivalent -- routine (but using string) defined above. subtype C_File_Name is System.Address; -- This subtype is used to document that a parameter is the address -- of a null-terminated string containing the name of a file. function Open_Read (Name : C_File_Name; Fmode : Mode) return File_Descriptor; function Open_Read_Write (Name : C_File_Name; Fmode : Mode) return File_Descriptor; function Create_File (Name : C_File_Name; Fmode : Mode) return File_Descriptor; function Create_New_File (Name : C_File_Name; Fmode : Mode) return File_Descriptor; procedure Delete_File (Name : C_File_Name; Success : out Boolean); procedure Rename_File (Old_Name : C_File_Name; New_Name : C_File_Name; Success : out Boolean); function File_Time_Stamp (Name : C_File_Name) return OS_Time; function Is_Regular_File (Name : C_File_Name) return Boolean; function Is_Directory (Name : C_File_Name) return Boolean; function Is_Writable_File (Name : C_File_Name) return Boolean; function Locate_Regular_File (File_Name : C_File_Name; Path : C_File_Name) return String_Access; ------------------ -- Subprocesses -- ------------------ subtype Argument_List is String_List; -- Type used for argument list in call to Spawn. The lower bound -- of the array should be 1, and the length of the array indicates -- the number of arguments. subtype Argument_List_Access is String_List_Access; -- Type used to return an Argument_List without dragging in secondary -- stack. procedure Spawn (Program_Name : String; Args : Argument_List; Success : out Boolean); -- The first parameter of function Spawn is the name of the executable. -- The second parameter contains the arguments to be passed to the -- program. Success is False if the named program could not be spawned -- or its execution completed unsuccessfully. Note that the caller will -- be blocked until the execution of the spawned program is complete. -- For maximum portability, use a full path name for the Program_Name -- argument. On some systems (notably Unix systems) a simple file -- name may also work (if the executable can be located in the path). -- -- Note: Arguments that contain spaces and/or quotes such as -- "--GCC=gcc -v" or "--GCC=""gcc-v""" are not portable -- across OSes. They may or may not have the desired effect. function Spawn (Program_Name : String; Args : Argument_List) return Integer; -- Like above, but as function returning the exact exit status type Process_Id is private; -- A private type used to identify a process activated by the following -- non-blocking call. The only meaningful operation on this type is a -- comparison for equality. Invalid_Pid : constant Process_Id; -- A special value used to indicate errors, as described below. function Non_Blocking_Spawn (Program_Name : String; Args : Argument_List) return Process_Id; -- This is a non blocking call. The Process_Id of the spawned process -- is returned. Parameters are to be used as in Spawn. If Invalid_Id -- is returned the program could not be spawned. procedure Wait_Process (Pid : out Process_Id; Success : out Boolean); -- Wait for the completion of any of the processes created by previous -- calls to Non_Blocking_Spawn. The caller will be suspended until one -- of these processes terminates (normally or abnormally). If any of -- these subprocesses terminates prior to the call to Wait_Process (and -- has not been returned by a previous call to Wait_Process), then the -- call to Wait_Process is immediate. Pid identifies the process that -- has terminated (matching the value returned from Non_Blocking_Spawn). -- Success is set to True if this sub-process terminated successfully. -- If Pid = Invalid_Id, there were no subprocesses left to wait on. function Argument_String_To_List (Arg_String : String) return Argument_List_Access; -- Take a string that is a program and it's arguments and parse it into -- an Argument_List. ------------------- -- Miscellaneous -- ------------------- function Getenv (Name : String) return String_Access; -- Get the value of the environment variable. Returns an access -- to the empty string if the environment variable does not exist -- or has an explicit null value (in some operating systems these -- are distinct cases, in others they are not; this interface -- abstracts away that difference. procedure Setenv (Name : String; Value : String); -- Set the value of the environment variable Name to Value. This call -- modifies the current environment, but does not modify the parent -- process environment. After a call to Setenv, Getenv (Name) will -- always return a String_Access referencing the same String as Value. -- This is true also for the null string case (the actual effect may -- be to either set an explicit null as the value, or to remove the -- entry, this is operating system dependent). Note that any following -- calls to Spawn will pass an environment to the spawned process that -- includes the changes made by Setenv calls. This procedure is not -- available under VMS. procedure OS_Exit (Status : Integer); pragma Import (C, OS_Exit, "__gnat_os_exit"); -- Exit to OS with given status code (program is terminated) procedure OS_Abort; pragma Import (C, OS_Abort, "abort"); -- Exit to OS signalling an abort (traceback or other appropriate -- diagnostic information should be given if possible, or entry made -- to the debugger if that is possible). function Errno return Integer; pragma Import (C, Errno, "__get_errno"); -- Return the task-safe last error number. procedure Set_Errno (Errno : Integer); pragma Import (C, Set_Errno, "__set_errno"); -- Set the task-safe error number. Directory_Separator : constant Character; -- The character that is used to separate parts of a pathname. Path_Separator : constant Character; -- The character to separate paths in an environment variable value. private pragma Import (C, Path_Separator, "__gnat_path_separator"); pragma Import (C, Directory_Separator, "__gnat_dir_separator"); type OS_Time is new Integer; type File_Descriptor is new Integer; Standin : constant File_Descriptor := 0; Standout : constant File_Descriptor := 1; Standerr : constant File_Descriptor := 2; Invalid_FD : constant File_Descriptor := -1; type Process_Id is new Integer; Invalid_Pid : constant Process_Id := -1; end GNAT.OS_Lib;
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" with Glfw.API; with Glfw.Enums; package body Glfw.Windows.Context is procedure Make_Current (Window : access Glfw.Windows.Window'Class) is begin if not Window.Initialized then -- null is accepted to detach the current context, but an uninitialized -- window *should* lead to an exception instead of detaching the -- context, so we handle this here raise Operation_Exception with "Window not initialized"; end if; if Window = null then API.Make_Context_Current (System.Null_Address); else API.Make_Context_Current (Window.Handle); end if; end Make_Current; function Current return access Glfw.Windows.Window'Class is use type System.Address; Raw : constant System.Address := API.Get_Current_Context; begin if Raw = System.Null_Address then return null; else return Window_Ptr (Raw); end if; end Current; procedure Swap_Buffers (Window : not null access Glfw.Windows.Window'Class) is begin API.Swap_Buffers (Window.Handle); end Swap_Buffers; procedure Set_Swap_Interval (Value : Swap_Interval) renames API.Swap_Interval; function Client_API (Window : not null access Glfw.Windows.Window'Class) return API_Kind is begin return API.Get_Window_Attrib (Window.Handle, Enums.Client_API); end Client_API; function Profile (Window : not null access Glfw.Windows.Window'Class) return OpenGL_Profile_Kind is begin return API.Get_Window_Attrib (Window.Handle, Enums.OpenGL_Profile); end Profile; procedure Get_Context_Version (Window : not null access Glfw.Windows.Window'Class; Major : out Positive; Minor, Revision : out Natural) is begin Major := Positive (Interfaces.C.int'( (API.Get_Window_Attrib (Window.Handle, Enums.Context_Version_Major)))); Minor := Natural (Interfaces.C.int'( (API.Get_Window_Attrib (Window.Handle, Enums.Context_Version_Minor)))); Revision := Natural (Interfaces.C.int'( (API.Get_Window_Attrib (Window.Handle, Enums.Context_Revision)))); end Get_Context_Version; function Is_Forward_Compat (Window : not null access Glfw.Windows.Window'Class) return Boolean is begin return Boolean (Bool'(API.Get_Window_Attrib (Window.Handle, Enums.OpenGL_Forward_Compat))); end Is_Forward_Compat; function Is_Debug_Context (Window : not null access Glfw.Windows.Window'Class) return Boolean is begin return Boolean (Bool'(API.Get_Window_Attrib (Window.Handle, Enums.OpenGL_Debug_Context))); end Is_Debug_Context; function Robustness (Window : not null access Glfw.Windows.Window'Class) return Robustness_Kind is begin return API.Get_Window_Attrib (Window.Handle, Enums.Context_Robustness); end Robustness; end Glfw.Windows.Context;
-- { dg-do run } with Init3; use Init3; with Text_IO; use Text_IO; with Dump; procedure S3 is A1 : R1 := My_R1; A2 : R2 := My_R2; N1 : Nested1; N2 : Nested2; C1 : Init3.Count; C2 : Init3.Count; C3 : Init3.Count; begin Put ("A1 :"); Dump (A1'Address, R1'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "A1 : e2 59 d1 48 b4 aa d9 bb.*\n" } Put ("A2 :"); Dump (A2'Address, R1'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "A2 : 84 8d 15 9e 15 5b 35 df.*\n" } N1 := A1.N; C1 := N1.C1; C2 := N1.C2; C3 := N1.C3; Put_Line("C1 :" & C1'Img); -- { dg-output "C1 : 171.*\n" } Put_Line("C2 :" & C2'Img); -- { dg-output "C2 : 205.*\n" } Put_Line("C3 :" & C3'Img); -- { dg-output "C3 : 239.*\n" } N1.C1 := C1; N1.C2 := C2; N1.C3 := C3; A1.N := N1; N2 := A2.N; C1 := N2.C1; C2 := N2.C2; C3 := N2.C3; Put_Line("C1 :" & C1'Img); -- { dg-output "C1 : 171.*\n" } Put_Line("C2 :" & C2'Img); -- { dg-output "C2 : 205.*\n" } Put_Line("C3 :" & C3'Img); -- { dg-output "C3 : 239.*\n" } N2.C1 := C1; N2.C2 := C2; N2.C3 := C3; A2.N := N2; Put ("A1 :"); Dump (A1'Address, R1'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "A1 : e2 59 d1 48 b4 aa d9 bb.*\n" } Put ("A2 :"); Dump (A2'Address, R1'Max_Size_In_Storage_Elements); New_Line; -- { dg-output "A2 : 84 8d 15 9e 15 5b 35 df.*\n" } end;
with AUnit; with AUnit.Simple_Test_Cases; with kv.avm.Assemblers; with kv.avm.Instances; with kv.avm.Machines; with kv.avm.Memories; with kv.avm.Processors; package kv.avm.Asm_Tests is type Test_A1 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A1) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A1); type Test_A2 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A2) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A2); type Test_A3 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A3) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A3); type Test_A4 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A4) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A4); type Test_A5 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A5) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A5); type Test_A6 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A6) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A6); type Test_A7 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A7) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A7); type Test_A8 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A8) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A8); type Test_A9 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A9) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A9); type Test_A10 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A10) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A10); type Superclass_Test_Case is abstract new AUnit.Simple_Test_Cases.Test_Case with record Builder : aliased kv.avm.Assemblers.Assembler_Type; --VM : aliased kv.avm.Machines.Machine_Type; -- This leads to uninitialized attribute of VM CPU : aliased kv.avm.Processors.Processor_Type; Instance_Factory : aliased kv.avm.Instances.Instance_Factory; Registers : aliased kv.avm.Memories.Register_Array_Type; end record; overriding procedure Set_Up (T : in out Superclass_Test_Case); overriding procedure Tear_Down (T : in out Superclass_Test_Case); not overriding procedure Load (T : in out Superclass_Test_Case; Volea : in String); not overriding procedure Prep_VM (T : in out Superclass_Test_Case; VM : access kv.avm.Machines.Machine_Type; Start_Actor : in String; Start_Message : in String); not overriding procedure Run_VM (T : in out Superclass_Test_Case; VM : access kv.avm.Machines.Machine_Type; Steps : in Positive); type Test_A11 is new Superclass_Test_Case with null record; overriding function Name (T : Test_A11) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A11); type Test_A12 is new Superclass_Test_Case with null record; overriding function Name (T : Test_A12) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A12); type Test_A13 is new Superclass_Test_Case with null record; overriding function Name (T : Test_A13) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A13); type Test_A14 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A14) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A14); type Test_A15 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A15) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A15); type Test_A16 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A16) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A16); type Test_A17 is new Superclass_Test_Case with null record; overriding function Name (T : Test_A17) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A17); type Test_A18 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A18) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A18); type Test_A19 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A19) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A19); type Test_A20 is new AUnit.Simple_Test_Cases.Test_Case with null record; overriding function Name (T : Test_A20) return AUnit.Message_String; overriding procedure Run_Test (T : in out Test_A20); end kv.avm.Asm_Tests;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Web Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- Base tagged type to represent information in SOAP Header. ------------------------------------------------------------------------------ package Web_Services.SOAP.Headers is pragma Preelaborate; type Abstract_SOAP_Header is abstract tagged limited null record; type SOAP_Header_Access is access all Abstract_SOAP_Header'Class; end Web_Services.SOAP.Headers;
with Ada.Text_IO; use Ada.Text_IO; procedure SelfDesc is subtype Desc_Int is Long_Integer range 0 .. 10**10-1; function isDesc (innum : Desc_Int) return Boolean is subtype S_Int is Natural range 0 .. 10; type S_Int_Arr is array (0 .. 9) of S_Int; ref, cnt : S_Int_Arr := (others => 0); n, digit : S_Int := 0; num : Desc_Int := innum; begin loop digit := S_Int (num mod 10); ref (9 - n) := digit; cnt (digit) := cnt (digit) + 1; num := num / 10; exit when num = 0; n := n + 1; end loop; return ref (9 - n .. 9) = cnt (0 .. n); end isDesc; begin for i in Desc_Int range 1 .. 100_000_000 loop if isDesc (i) then Put_Line (Desc_Int'Image (i)); end if; end loop; end SelfDesc;
with System.Storage_Elements; package TLSF.Allocator is package SSE renames System.Storage_Elements; type Pool is limited private; function Init_Pool (Addr : System.Address; Len : SSE.Storage_Count) return Pool; function Memory_Allocate (Sz : SSE.Storage_Count; P : Pool) return System.Address; procedure Memory_Free (Addr : System.Address; P : Pool); private pragma SPARK_Mode (Off); type Pool_Header; type Pool is access all Pool_Header; end TLSF.Allocator;
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010, Vadim Godunko <vgodunko@gmail.com> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with League.Strings; with XML.SAX.Content_Handlers; with XML.SAX.DTD_Handlers; with XML.SAX.Declaration_Handlers; with XML.SAX.Error_Handlers; with XML.SAX.Lexical_Handlers; package XML.SAX.Default_Handlers is pragma Preelaborate; type SAX_Default_Handler is limited new XML.SAX.Content_Handlers.SAX_Content_Handler and XML.SAX.DTD_Handlers.SAX_DTD_Handler and XML.SAX.Declaration_Handlers.SAX_Declaration_Handler and XML.SAX.Error_Handlers.SAX_Error_Handler and XML.SAX.Lexical_Handlers.SAX_Lexical_Handler with null record; overriding function Error_String (Self : SAX_Default_Handler) return League.Strings.Universal_String; end XML.SAX.Default_Handlers;
with ada.text_io, ada.Integer_text_IO, Ada.Text_IO.Text_Streams, Ada.Strings.Fixed, Interfaces.C; use ada.text_io, ada.Integer_text_IO, Ada.Strings, Ada.Strings.Fixed, Interfaces.C; procedure loop_unroll is type stringptr is access all char_array; procedure PString(s : stringptr) is begin String'Write (Text_Streams.Stream (Current_Output), To_Ada(s.all)); end; procedure PInt(i : in Integer) is begin String'Write (Text_Streams.Stream (Current_Output), Trim(Integer'Image(i), Left)); end; -- --Ce test permet de vérifier le comportement des macros --Il effectue du loop unrolling -- j : Integer; begin j := 0; j := 0; PInt(j); PString(new char_array'( To_C("" & Character'Val(10)))); j := 1; PInt(j); PString(new char_array'( To_C("" & Character'Val(10)))); j := 2; PInt(j); PString(new char_array'( To_C("" & Character'Val(10)))); j := 3; PInt(j); PString(new char_array'( To_C("" & Character'Val(10)))); j := 4; PInt(j); PString(new char_array'( To_C("" & Character'Val(10)))); end;
----------------------------------------------------------------------- -- awa-wikis-modules-tests -- Unit tests for wikis service -- Copyright (C) 2015, 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 Util.Tests; with AWA.Tests; with ADO; package AWA.Wikis.Modules.Tests is procedure Add_Tests (Suite : in Util.Tests.Access_Test_Suite); type Test is new AWA.Tests.Test with record Manager : AWA.Wikis.Modules.Wiki_Module_Access; Wiki_Id : ADO.Identifier := ADO.NO_IDENTIFIER; Public_Id : ADO.Identifier := ADO.NO_IDENTIFIER; Private_Id : ADO.Identifier := ADO.NO_IDENTIFIER; end record; -- Test creation of a wiki space. procedure Test_Create_Wiki_Space (T : in out Test); -- Test creation of a wiki page. procedure Test_Create_Wiki_Page (T : in out Test); -- Test creation of a wiki page content. procedure Test_Create_Wiki_Content (T : in out Test); -- Test getting the wiki page as well as info, history pages. procedure Test_Wiki_Page (T : in out Test); -- Test updating the wiki page through a POST request. procedure Test_Update_Page (T : in out Test); end AWA.Wikis.Modules.Tests;
-- Copyright 2014 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; procedure Foo is -- The goal here is to have an array whose bounds are not -- known at compile time. BT : Bounded := New_Bounded (Low => 1, High => 3); begin Do_Nothing (BT'Address); -- STOP end Foo;
------------------------------------------------------------------------------ -- -- -- 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_Elements; with AMF.Standard_Profile_L2.Destroies; with AMF.UML.Behavioral_Features; with AMF.Visitors; package AMF.Internals.Standard_Profile_L2_Destroies is type Standard_Profile_L2_Destroy_Proxy is limited new AMF.Internals.UML_Elements.UML_Element_Base and AMF.Standard_Profile_L2.Destroies.Standard_Profile_L2_Destroy with null record; overriding function Get_Base_Behavioral_Feature (Self : not null access constant Standard_Profile_L2_Destroy_Proxy) return AMF.UML.Behavioral_Features.UML_Behavioral_Feature_Access; -- Getter of Destroy::base_BehavioralFeature. -- overriding procedure Set_Base_Behavioral_Feature (Self : not null access Standard_Profile_L2_Destroy_Proxy; To : AMF.UML.Behavioral_Features.UML_Behavioral_Feature_Access); -- Setter of Destroy::base_BehavioralFeature. -- overriding procedure Enter_Element (Self : not null access constant Standard_Profile_L2_Destroy_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Leave_Element (Self : not null access constant Standard_Profile_L2_Destroy_Proxy; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); overriding procedure Visit_Element (Self : not null access constant Standard_Profile_L2_Destroy_Proxy; Iterator : in out AMF.Visitors.Abstract_Iterator'Class; Visitor : in out AMF.Visitors.Abstract_Visitor'Class; Control : in out AMF.Visitors.Traverse_Control); end AMF.Internals.Standard_Profile_L2_Destroies;
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- G N A T . S P I T B O L . T A B L E _ B O O L E A N -- -- -- -- S p e c -- -- -- -- Copyright (C) 1997-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. -- -- -- ------------------------------------------------------------------------------ -- SPITBOL tables with boolean values (sets) -- This package provides a predefined instantiation of the table abstraction -- for type Standard.Boolean. The null value is False, so the only non-null -- value is True, i.e. this table acts essentially as a set representation. -- This package is based on Macro-SPITBOL created by Robert Dewar. package GNAT.Spitbol.Table_Boolean is new GNAT.Spitbol.Table (Boolean, False, Boolean'Image); pragma Preelaborate (Table_Boolean);
----------------------------------------------------------------------- -- Stemmer-test -- Unit tests -- Copyright (C) 2020 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Util.Tests; with Stemmer.Testsuite; procedure Stemmer_Harness is procedure Harness is new Util.Tests.Harness (Stemmer.Testsuite.Suite); begin Harness ("stemmer-tests.xml"); end Stemmer_Harness;
----------------------------------------------------------------------- -- upload_server -- Example of server with a servlet -- Copyright (C) 2012, 2015, 2018, 2021 Stephane Carrez -- Written by Stephane Carrez (Stephane.Carrez@gmail.com) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Servlet.Server.Web; with Servlet.Core; with Upload_Servlet; with Util.Log.Loggers; procedure Upload_Server is CONFIG_PATH : constant String := "samples.properties"; Upload : aliased Upload_Servlet.Servlet; App : aliased Servlet.Core.Servlet_Registry; WS : Servlet.Server.Web.AWS_Container; Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Upload_Server"); begin Util.Log.Loggers.Initialize (CONFIG_PATH); -- Register the servlets and filters App.Add_Servlet (Name => "upload", Server => Upload'Unchecked_Access); -- Define servlet mappings App.Add_Mapping (Name => "upload", Pattern => "*.html"); WS.Register_Application ("/upload", App'Unchecked_Access); Log.Info ("Connect you browser to: http://localhost:8080/upload/upload.html"); WS.Start; delay 6000.0; end Upload_Server;
with RASCAL.Toolbox; use RASCAL.Toolbox; with RASCAL.OS; use RASCAL.OS; with RASCAL.Error; use RASCAL.Error; with RASCAL.MessageTrans; use RASCAL.MessageTrans; with RASCAL.WimpTask; use RASCAL.WimpTask; with Interfaces.C; use Interfaces.C; with Main; use Main; with Ada.Exceptions; with Reporter; package body Controller_Error is -- package Toolbox renames RASCAL.Toolbox; package OS renames RASCAL.OS; package Error renames RASCAL.Error; package MessageTrans renames RASCAL.MessageTrans; package WimpTask renames RASCAL.WimpTask; -- procedure Handle (The : in TEL_Toolbox_Error) is E : Error_Pointer := WimpTask.Get_Error (Main_Task); M : Error_Message_Pointer := new Error_Message_Type; Result : Error_Return_Type := XButton1; TB_Error : String := To_Ada (The.Event.all.Message); begin M.all.Message(1..TB_Error'Length) := TB_Error; M.all.Category := Warning; M.all.Flags := Error_Flag_OK; Result := Error.Show_Message (E,M); exception when e2: others => Report_Error("TOOLBOXERROR",Ada.Exceptions.Exception_Information (e2)); end Handle; -- end Controller_Error;
with Ada.Calendar; with Ada.Directories; with Ada.Text_IO.Text_Streams; with Ada.Unchecked_Conversion; with Interfaces.C.Pointers; with SDL; with SDL.Error; with SDL.Events.Events; with SDL.Events.Keyboards; with SDL.Images.IO; with SDL.Log; -- with SDL.Video.Palettes; with SDL.Video.Pixel_Formats; -- with SDL.Video.Pixels; with SDL.Video.Rectangles; -- with SDL.Video.Renderers.Makers; -- with SDL.Video.Textures.Makers; with SDL.Video.Surfaces; with SDL.Video.Windows.Makers; with SDL.Versions; with System; with System.Address_To_Access_Conversions; procedure Load_Surface is use type Interfaces.C.int; W : SDL.Video.Windows.Window; Window_Size : constant SDL.Positive_Sizes := (Width => 800, Height => 640); begin SDL.Log.Set (Category => SDL.Log.Application, Priority => SDL.Log.Debug); if SDL.Initialise (Flags => SDL.Enable_Screen) = True and SDL.Images.Initialise then SDL.Video.Windows.Makers.Create (Win => W, Title => "Surface (Esc to exit)", Position => SDL.Natural_Coordinates'(X => 100, Y => 100), Size => Window_Size, Flags => SDL.Video.Windows.Resizable); -- Main loop. declare Event : SDL.Events.Events.Events; Window_Surface : SDL.Video.Surfaces.Surface; Image_Surface : SDL.Video.Surfaces.Surface; Image_Area : SDL.Video.Rectangles.Rectangle := (X => 0, Y => 0, Width => 400, Height => 300); Image_Dest_Area : SDL.Video.Rectangles.Rectangle := (X => Window_Size.Width / 2 - Image_Area.Width / 2, Y => Window_Size.Height / 2 - Image_Area.Height / 2, Width => 400, Height => 300); Scaled_Dest_Area : SDL.Video.Rectangles.Rectangle := (X => 10, Y => 10, Width => Image_Area.Width / 4, Height => Image_Area.Height / 4); Scaled_Dest_Area_2 : SDL.Video.Rectangles.Rectangle := (X => 10, Y => 100, Width => Image_Area.Width / 4, Height => Image_Area.Height / 4); Finished : Boolean := False; use type SDL.Events.Event_Types; use type SDL.Events.Keyboards.Key_Codes; use type SDL.Events.Keyboards.Scan_Codes; begin Window_Surface := W.Get_Surface; SDL.Images.IO.Create (Image_Surface, "../../test/assets/sdl_logo_400_300.png"); Window_Surface.Blit (Self_Area => Image_Dest_Area, Source => Image_Surface, Source_Area => Image_Area); Window_Surface.Blit_Scaled (Self_Area => Scaled_Dest_Area, Source => Image_Surface, Source_Area => SDL.Video.Rectangles.Null_Rectangle); Window_Surface.Blit_Scaled (Self_Area => Scaled_Dest_Area_2, Source => Image_Surface, Source_Area => SDL.Video.Rectangles.Rectangle'(X => 0, Y => 0, Width => Image_Area.Width / 2, Height => Image_Area.Height /2)); W.Update_Surface; SDL.Images.IO.Write_PNG (Window_Surface, "load_surface.png"); loop while SDL.Events.Events.Poll (Event) loop case Event.Common.Event_Type is when SDL.Events.Quit => Finished := True; when SDL.Events.Keyboards.Key_Down => if Event.Keyboard.Key_Sym.Key_Code = SDL.Events.Keyboards.Code_Escape then Finished := True; end if; when others => null; end case; end loop; exit when Finished; end loop; end; SDL.Log.Put_Debug (""); W.Finalize; SDL.Images.Finalise; SDL.Finalise; end if; end Load_Surface;
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . C O M M A N D _ L I N E . R E S P O N S E _ F I L E -- -- -- -- S p e c -- -- -- -- Copyright (C) 2007-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. -- -- -- ------------------------------------------------------------------------------ -- See s-resfil.ads for documentation with System.Response_File; package Ada.Command_Line.Response_File renames System.Response_File;
------------------------------------------------------------------------------ -- EMAIL: <darkestkhan@gmail.com> -- -- License: ISC License (see COPYING file) -- -- -- -- Copyright © 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. -- ------------------------------------------------------------------------------ with Ada.Containers.Indefinite_Vectors; ------------------------------------------------------------------------------ -- Small and simple callback based library for processing program arguments -- ------------------------------------------------------------------------------ --------------------------------------------------------------------------- -- U S A G E -- --------------------------------------------------------------------------- -- First register all callbacks you are interested in, then call -- Process_Arguments. -- -- NOTE: "=" sign can't be part of argument name for registered callback. -- -- Only one callback can be registered per argument, otherwise -- Constraint_Error is propagated. --------------------------------------------------------------------------- --------------------------------------------------------------------------- -- Leading single hyphen and double hyphen are stripped (if present) when -- processing arguments that are placed before first "--" argument, -- so e.g. "--help", "-help" and "help" are functionally -- equivalent, treated as if "help" was actually passed in all 3 cases. -- (you should register callback just for "help", if you register it for -- "--help" then actually passed argument would have to be "----help" in order -- for it to trigger said callback) -- -- In addition if you registered callback as case insensitive, then -- (using above example) "Help", "HELP", "help" and "HeLp" all would result in -- call to said callback. -- -- If Argument_Type is Variable then callback will receive part of argument -- that is after "=" sign. (ie. "OS=Linux" argument would result in callback -- receiving only "Linux" as its argument), otherwise actual argument will be -- passed. -- -- For Variable, case insensitive callbacks simple rule applies: -- only variable name is case insensitive, with actual value (when passed to -- program) being unchanged. -- -- If argument for which callback is registered is passed few times -- (ie. ./program help help help) then callback is triggered however many -- times said argument is detected. -- -- NOTE that Check for case insensitive callback is being performed first, -- thus if you happen to register callback for "help" (case insensitive) and -- "HeLp" (case sensitive) then only the case insensitive one will be called -- (i.e. "help"). -- -- All arguments with no associated callback are added to Unknown_Arguments -- vector as long as they appear before first "--" argument. -- -- All arguments after first "--" (standalone double hyphen) are added to -- Input_Argument vector (this includes another "--"), w/o any kind of -- hyphen stripping being performed on them. -- -- NOTE: No care is taken to ensure that all Input_Arguments -- (or Unknown_Arguments) are unique. --------------------------------------------------------------------------- package CBAP is --------------------------------------------------------------------------- -- Yes, I do realize this is actually vector... package Argument_Lists is new Ada.Containers.Indefinite_Vectors (Positive, String); -- List of all arguments (before first "--" argument) for which callbacks -- where not registered. Unknown_Arguments : Argument_Lists.Vector := Argument_Lists.Empty_Vector; -- List of all arguments after first "--" argument. Input_Arguments : Argument_Lists.Vector := Argument_Lists.Empty_Vector; -- Argument_Types decides if argument is just a simple value, or a variable -- with value assigned to it (difference between "--val" and "--var=val") type Argument_Types is (Value, Variable); -- Argument is useful mostly for Variable type of arguments. type Callbacks is not null access procedure (Argument: in String); --------------------------------------------------------------------------- -- Register callbacks for processing arguments. -- @Callback : Action to be performed in case appropriate argument is -- detected. -- @Called_On : Argument for which callback is to be performed. -- @Argument_Type : {Value, Variable}. Value is simple argument that needs no -- additional parsing. Variable is argument of "Arg_Name=Some_Val" form. -- When callback is triggered, Value is passed to callback as input, in -- case of Variable it is content of argument after first "=" that is -- passed to callback. -- @Case_Sensitive: Whether or not case is significant. When False all forms -- of argument are treated as if written in lower case. procedure Register ( Callback : in Callbacks; Called_On : in String; Argument_Type : in Argument_Types := Value; Case_Sensitive: in Boolean := True ); -- Raised if Called_On contains "=". Incorrect_Called_On: exception; --------------------------------------------------------------------------- -- Parse arguments supplied to program, calling callbacks when argument with -- associated callback is detected. -- NOTE: Process_Arguments will call callbacks however many times argument -- with associated callback is called. So if you have callback for "help", -- then ./program help help help -- will result in 3 calls to said callback. procedure Process_Arguments; --------------------------------------------------------------------------- end CBAP;
with Project_Processor.Processors; with Project_Processor.Parsers; package Project_Processor.Configuration is procedure Initialize; type Processing_Call is record Name : Processors.Processor_ID; Parameters : Processors.Processor_Parameter_Access; end record; procedure For_All_Calls (Callback : not null access procedure (Call : Processing_Call)); function Input_Data return String; function Input_Format return Parsers.Parser_ID; function Parser_Parameters return Parsers.Parser_Parameter_Access; Bad_Command_Line : exception; end Project_Processor.Configuration;
-- Copyright (C) 2019 Thierry Rascle <thierr26@free.fr> -- MIT license. Please refer to the LICENSE file. package body Apsepp_Test_Suite is ---------------------------------------------------------------------------- overriding function Child_Array (Obj : Apsepp_T_S) return Test_Node_Array is (Test_Node_Class_E_T_C'Access, Test_Reporter_Class_Struct_Builder_E_T_C'Access, Scope_Bound_Locks_T_C'Access, Shared_Instance_T_C'Access, Scope_Debug_T_C'Access); ---------------------------------------------------------------------------- end Apsepp_Test_Suite;
-- C94001E.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 A TASK IS ALSO COMPLETED IF AN EXCEPTION IS RAISED BY -- THE EXECUTION OF ITS SEQUENCE OF STATEMENTS. -- THIS MUST HOLD FOR BOTH CASES WHERE A HANDLER IS PRESENT OR NOT. -- VERSION WITH EXCEPTION HANDLER. -- WEI 3/ 4/82 -- JWC 6/28/85 RENAMED FROM C940AGA-B.ADA -- RLB 06/29/01 CORRECTED TO ALLOW AGGRESSIVE OPTIMIZATION. WITH REPORT; USE REPORT; PROCEDURE C94001E IS SUBTYPE ARG IS NATURAL RANGE 0..9; SPYNUMB : NATURAL := 0; PROCEDURE PSPY_NUMB (DIGT: IN ARG) IS BEGIN SPYNUMB := 10*SPYNUMB+DIGT; END PSPY_NUMB; BEGIN TEST ("C94001E", "TASK COMPLETION BY EXCEPTION"); BLOCK: DECLARE TASK T1; TASK BODY T1 IS TYPE I1 IS RANGE 0 .. 1; OBJ_I1 : I1; BEGIN OBJ_I1 := I1(IDENT_INT(2)); -- CONSTRAINT_ERROR. IF OBJ_I1 /= I1(IDENT_INT(0)) THEN PSPY_NUMB (1); ELSE PSPY_NUMB (2); END IF; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("OTHER EXCEPTION RAISED"); END T1; BEGIN NULL; END BLOCK; IF SPYNUMB /= 0 THEN FAILED ("TASK T1 NOT COMPLETED AFTER EXCEPTION"); COMMENT ("ACTUAL ORDER WAS:" & INTEGER'IMAGE(SPYNUMB)); END IF; RESULT; END C94001E;