hexsha
stringlengths
40
40
size
int64
3
1.05M
ext
stringclasses
163 values
lang
stringclasses
53 values
max_stars_repo_path
stringlengths
3
945
max_stars_repo_name
stringlengths
4
112
max_stars_repo_head_hexsha
stringlengths
40
78
max_stars_repo_licenses
sequencelengths
1
10
max_stars_count
float64
1
191k
max_stars_repo_stars_event_min_datetime
stringlengths
24
24
max_stars_repo_stars_event_max_datetime
stringlengths
24
24
max_issues_repo_path
stringlengths
3
945
max_issues_repo_name
stringlengths
4
113
max_issues_repo_head_hexsha
stringlengths
40
78
max_issues_repo_licenses
sequencelengths
1
10
max_issues_count
float64
1
116k
max_issues_repo_issues_event_min_datetime
stringlengths
24
24
max_issues_repo_issues_event_max_datetime
stringlengths
24
24
max_forks_repo_path
stringlengths
3
945
max_forks_repo_name
stringlengths
4
113
max_forks_repo_head_hexsha
stringlengths
40
78
max_forks_repo_licenses
sequencelengths
1
10
max_forks_count
float64
1
105k
max_forks_repo_forks_event_min_datetime
stringlengths
24
24
max_forks_repo_forks_event_max_datetime
stringlengths
24
24
content
stringlengths
3
1.05M
avg_line_length
float64
1
966k
max_line_length
int64
1
977k
alphanum_fraction
float64
0
1
c5f99d68cc5b9e3605ef19c565115d825d84f9b9
5,882
ads
Ada
src/hyperion-applications.ads
stcarrez/hyperion
166b10135521ee6553affc1b79f0bee3a9c7ea43
[ "Apache-2.0" ]
null
null
null
src/hyperion-applications.ads
stcarrez/hyperion
166b10135521ee6553affc1b79f0bee3a9c7ea43
[ "Apache-2.0" ]
null
null
null
src/hyperion-applications.ads
stcarrez/hyperion
166b10135521ee6553affc1b79f0bee3a9c7ea43
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- hyperion -- hyperion applications -- Copyright (C) 2017, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Servlet.Core.Measures; with Servlet.Core.Files; with Servlet.Filters.Dump; with Servlet.Filters.Cache_Control; with Servlet.Core.Rest; with Servlet.Security.OAuth; with Servlet.Security.Filters.OAuth; with ASF.Servlets.Faces; with ASF.Servlets.Ajax; with ASF.Applications; with ASF.Converters.Sizes; with ASF.Security.Servlets; with Security.OAuth.Servers; with Security.OAuth.File_Registry; with AWA.Users.Servlets; with AWA.Users.Modules; with AWA.Mail.Modules; with AWA.Comments.Modules; with AWA.Tags.Modules; with AWA.Storages.Modules; with AWA.Applications; with AWA.Workspaces.Modules; with AWA.Services.Filters; with AWA.Wikis.Modules; with AWA.Wikis.Previews; with AWA.Images.Modules; with AWA.Jobs.Modules; with AWA.Counters.Modules; with AWA.Converters.Dates; with Hyperion.Hosts.Modules; with Hyperion.Agents.Modules; with Hyperion.Monitoring.Modules; package Hyperion.Applications is CONFIG_PATH : constant String := "hyperion"; CONTEXT_PATH : constant String := "/hyperion"; type Application is new AWA.Applications.Application with private; type Application_Access is access all Application'Class; -- Initialize the application. procedure Initialize (App : in Application_Access; Config : in ASF.Applications.Config); -- Initialize the application configuration properties. Properties defined in <b>Conf</b> -- are expanded by using the EL expression resolver. overriding procedure Initialize_Config (App : in out Application; Conf : in out ASF.Applications.Config); -- Initialize the servlets provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the application servlets. overriding procedure Initialize_Servlets (App : in out Application); -- Initialize the filters provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the application filters. overriding procedure Initialize_Filters (App : in out Application); -- Initialize the AWA modules provided by the application. -- This procedure is called by <b>Initialize</b>. -- It should register the modules used by the application. overriding procedure Initialize_Modules (App : in out Application); private type Application is new AWA.Applications.Application with record Self : Application_Access; -- Application servlets and filters (add new servlet and filter instances here). Faces : aliased ASF.Servlets.Faces.Faces_Servlet; Ajax : aliased ASF.Servlets.Ajax.Ajax_Servlet; Files : aliased Servlet.Core.Files.File_Servlet; Dump : aliased Servlet.Filters.Dump.Dump_Filter; Service_Filter : aliased AWA.Services.Filters.Service_Filter; Measures : aliased Servlet.Core.Measures.Measure_Servlet; No_Cache : aliased Servlet.Filters.Cache_Control.Cache_Control_Filter; Api : aliased Servlet.Core.Rest.Rest_Servlet; -- Authentication servlet and filter. Auth : aliased ASF.Security.Servlets.Request_Auth_Servlet; Verify_Auth : aliased AWA.Users.Servlets.Verify_Auth_Servlet; OAuth : aliased Servlet.Security.OAuth.Token_Servlet; -- Converters shared by web requests. Rel_Date_Converter : aliased AWA.Converters.Dates.Relative_Date_Converter; Size_Converter : aliased ASF.Converters.Sizes.Size_Converter; -- The application modules. User_Module : aliased AWA.Users.Modules.User_Module; Workspace_Module : aliased AWA.Workspaces.Modules.Workspace_Module; Mail_Module : aliased AWA.Mail.Modules.Mail_Module; Comment_Module : aliased AWA.Comments.Modules.Comment_Module; Storage_Module : aliased AWA.Storages.Modules.Storage_Module; Tag_Module : aliased AWA.Tags.Modules.Tag_Module; Job_Module : aliased AWA.Jobs.Modules.Job_Module; Image_Module : aliased AWA.Images.Modules.Image_Module; Wiki_Module : aliased AWA.Wikis.Modules.Wiki_Module; Preview_Module : aliased AWA.Wikis.Previews.Preview_Module; Counter_Module : aliased AWA.Counters.Modules.Counter_Module; -- REST security Api_Auth : aliased Security.OAuth.Servers.Auth_Manager; Apps : aliased Security.OAuth.File_Registry.File_Application_Manager; Realm : aliased Security.OAuth.File_Registry.File_Realm_Manager; Api_Filter : aliased Servlet.Security.Filters.OAuth.Auth_Filter; -- Add your modules here. Host_Module : aliased Hyperion.Hosts.Modules.Host_Module; Agent_Module : aliased Hyperion.Agents.Modules.Agent_Module; Monitoring_Module : aliased Hyperion.Monitoring.Modules.Monitoring_Module; end record; end Hyperion.Applications;
42.316547
94
0.695342
d0de1b2b37ee467826e3b81db5e71a98ac4de008
4,220
ads
Ada
source/amf/mof/amf-internals-collections-strings-proxies.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/mof/amf-internals-collections-strings-proxies.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/mof/amf-internals-collections-strings-proxies.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ package AMF.Internals.Collections.Strings.Proxies is pragma Preelaborate; type Shared_String_Collection_Proxy is new Shared_String_Collection with record Collection : AMF.Internals.AMF_Collection_Of_String; end record; overriding procedure Reference (Self : not null access Shared_String_Collection_Proxy) is null; overriding procedure Unreference (Self : not null access Shared_String_Collection_Proxy) is null; overriding function Length (Self : not null access constant Shared_String_Collection_Proxy) return Natural; overriding procedure Clear (Self : not null access Shared_String_Collection_Proxy); overriding function Element (Self : not null access constant Shared_String_Collection_Proxy; Index : Positive) return League.Strings.Universal_String; end AMF.Internals.Collections.Strings.Proxies;
58.611111
78
0.469668
cb84859df63c50df9e5dc5d0288c512c8a58aba7
7,985
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/a-reatim.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/a-reatim.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/a-reatim.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . R E A L _ T I M E -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2015, 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 System.Task_Primitives.Operations; pragma Elaborate_All (System.Task_Primitives.Operations); package Ada.Real_Time with SPARK_Mode, Abstract_State => (Clock_Time with Synchronous, External => (Async_Readers, Async_Writers)), Initializes => Clock_Time is pragma Compile_Time_Error (Duration'Size /= 64, "this version of Ada.Real_Time requires 64-bit Duration"); type Time is private; Time_First : constant Time; Time_Last : constant Time; Time_Unit : constant := 10#1.0#E-9; type Time_Span is private; Time_Span_First : constant Time_Span; Time_Span_Last : constant Time_Span; Time_Span_Zero : constant Time_Span; Time_Span_Unit : constant Time_Span; Tick : constant Time_Span; function Clock return Time with Volatile_Function, Global => Clock_Time; function "+" (Left : Time; Right : Time_Span) return Time with Global => null; function "+" (Left : Time_Span; Right : Time) return Time with Global => null; function "-" (Left : Time; Right : Time_Span) return Time with Global => null; function "-" (Left : Time; Right : Time) return Time_Span with Global => null; function "<" (Left, Right : Time) return Boolean with Global => null; function "<=" (Left, Right : Time) return Boolean with Global => null; function ">" (Left, Right : Time) return Boolean with Global => null; function ">=" (Left, Right : Time) return Boolean with Global => null; function "+" (Left, Right : Time_Span) return Time_Span with Global => null; function "-" (Left, Right : Time_Span) return Time_Span with Global => null; function "-" (Right : Time_Span) return Time_Span with Global => null; function "*" (Left : Time_Span; Right : Integer) return Time_Span with Global => null; function "*" (Left : Integer; Right : Time_Span) return Time_Span with Global => null; function "/" (Left, Right : Time_Span) return Integer with Global => null; function "/" (Left : Time_Span; Right : Integer) return Time_Span with Global => null; function "abs" (Right : Time_Span) return Time_Span with Global => null; function "<" (Left, Right : Time_Span) return Boolean with Global => null; function "<=" (Left, Right : Time_Span) return Boolean with Global => null; function ">" (Left, Right : Time_Span) return Boolean with Global => null; function ">=" (Left, Right : Time_Span) return Boolean with Global => null; function To_Duration (TS : Time_Span) return Duration with Global => null; function To_Time_Span (D : Duration) return Time_Span with Global => null; function Nanoseconds (NS : Integer) return Time_Span with Global => null; function Microseconds (US : Integer) return Time_Span with Global => null; function Milliseconds (MS : Integer) return Time_Span with Global => null; function Seconds (S : Integer) return Time_Span with Global => null; pragma Ada_05 (Seconds); function Minutes (M : Integer) return Time_Span with Global => null; pragma Ada_05 (Minutes); type Seconds_Count is new Long_Long_Integer; -- Seconds_Count needs 64 bits, since the type Time has the full range of -- Duration. The delta of Duration is 10 ** (-9), so the maximum number of -- seconds is 2**63/10**9 = 8*10**9 which does not quite fit in 32 bits. -- However, rather than make this explicitly 64-bits we derive from -- Long_Long_Integer. In normal usage this will have the same effect. But -- in the case of CodePeer with a target configuration file with a maximum -- integer size of 32, it allows analysis of this unit. procedure Split (T : Time; SC : out Seconds_Count; TS : out Time_Span) with Global => null; function Time_Of (SC : Seconds_Count; TS : Time_Span) return Time with Global => null; private pragma SPARK_Mode (Off); -- Time and Time_Span are represented in 64-bit Duration value in -- nanoseconds. For example, 1 second and 1 nanosecond is represented -- as the stored integer 1_000_000_001. This is for the 64-bit Duration -- case, not clear if this also is used for 32-bit Duration values. type Time is new Duration; Time_First : constant Time := Time'First; Time_Last : constant Time := Time'Last; type Time_Span is new Duration; Time_Span_First : constant Time_Span := Time_Span'First; Time_Span_Last : constant Time_Span := Time_Span'Last; Time_Span_Zero : constant Time_Span := 0.0; Time_Span_Unit : constant Time_Span := 10#1.0#E-9; Tick : constant Time_Span := Time_Span (System.Task_Primitives.Operations.RT_Resolution); pragma Import (Intrinsic, "<"); pragma Import (Intrinsic, "<="); pragma Import (Intrinsic, ">"); pragma Import (Intrinsic, ">="); pragma Import (Intrinsic, "abs"); pragma Inline (Microseconds); pragma Inline (Milliseconds); pragma Inline (Nanoseconds); pragma Inline (Seconds); pragma Inline (Minutes); end Ada.Real_Time;
42.473404
78
0.564058
dc09a6d48e5b67c76e0028ada2affb9cd2bc410d
1,269
ads
Ada
src/lumen.ads
darkestkhan/lumen2
8c3ac44b2010b4abe36a46c576b1078101bf75a1
[ "0BSD" ]
8
2015-07-20T18:20:10.000Z
2021-01-29T21:09:02.000Z
src/lumen.ads
darkestkhan/lumen2
8c3ac44b2010b4abe36a46c576b1078101bf75a1
[ "0BSD" ]
10
2015-07-20T18:48:45.000Z
2016-05-07T19:23:31.000Z
src/lumen.ads
darkestkhan/lumen2
8c3ac44b2010b4abe36a46c576b1078101bf75a1
[ "0BSD" ]
1
2018-11-18T17:01:15.000Z
2018-11-18T17:01:15.000Z
-- Lumen -- A simple graphical user interface library based on OpenGL -- -- Chip Richards, NiEstu, Phoenix AZ, Spring 2010 -- Lumen would not be possible without the support and contributions of a cast -- of thousands, including and primarily Rod Kay. -- This code is covered by the ISC License: -- -- Copyright © 2010, NiEstu -- -- 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. package Lumen is --------------------------------------------------------------------------- pragma Pure; --------------------------------------------------------------------------- end Lumen;
37.323529
78
0.664303
dc39e7d187679304d178a8a67855ca222bf1bd6a
61
ads
Ada
memsim-master/src/test-spm.ads
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
memsim-master/src/test-spm.ads
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
memsim-master/src/test-spm.ads
strenkml/EE368
00f15bce9e65badddc613355643b1061fd4a8195
[ "MIT" ]
null
null
null
package Test.SPM is procedure Run_Tests; end Test.SPM;
8.714286
23
0.721311
d062d46192b227b31e85f286e8c8708d38dec877
18,640
ads
Ada
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-stzunb.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-stzunb.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-stzunb.ads
orb-zhuchen/Orb
6da2404b949ac28bde786e08bf4debe4a27cd3a0
[ "CNRI-Python-GPL-Compatible", "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . S T R I N G S . W I D E _ W I D E _ U N B O U N D E D -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-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. -- -- -- ------------------------------------------------------------------------------ -- This version is supported on: -- - all Alpha platforms -- - all ia64 platforms -- - all PowerPC platforms -- - all SPARC V9 platforms -- - all x86 platforms -- - all x86_64 platforms with Ada.Strings.Wide_Wide_Maps; private with Ada.Finalization; private with System.Atomic_Counters; package Ada.Strings.Wide_Wide_Unbounded is pragma Preelaborate; type Unbounded_Wide_Wide_String is private; pragma Preelaborable_Initialization (Unbounded_Wide_Wide_String); Null_Unbounded_Wide_Wide_String : constant Unbounded_Wide_Wide_String; function Length (Source : Unbounded_Wide_Wide_String) return Natural; type Wide_Wide_String_Access is access all Wide_Wide_String; procedure Free (X : in out Wide_Wide_String_Access); -------------------------------------------------------- -- Conversion, Concatenation, and Selection Functions -- -------------------------------------------------------- function To_Unbounded_Wide_Wide_String (Source : Wide_Wide_String) return Unbounded_Wide_Wide_String; function To_Unbounded_Wide_Wide_String (Length : Natural) return Unbounded_Wide_Wide_String; function To_Wide_Wide_String (Source : Unbounded_Wide_Wide_String) return Wide_Wide_String; procedure Set_Unbounded_Wide_Wide_String (Target : out Unbounded_Wide_Wide_String; Source : Wide_Wide_String); pragma Ada_05 (Set_Unbounded_Wide_Wide_String); procedure Append (Source : in out Unbounded_Wide_Wide_String; New_Item : Unbounded_Wide_Wide_String); procedure Append (Source : in out Unbounded_Wide_Wide_String; New_Item : Wide_Wide_String); procedure Append (Source : in out Unbounded_Wide_Wide_String; New_Item : Wide_Wide_Character); function "&" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; function "&" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Unbounded_Wide_Wide_String; function "&" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; function "&" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_Character) return Unbounded_Wide_Wide_String; function "&" (Left : Wide_Wide_Character; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; function Element (Source : Unbounded_Wide_Wide_String; Index : Positive) return Wide_Wide_Character; procedure Replace_Element (Source : in out Unbounded_Wide_Wide_String; Index : Positive; By : Wide_Wide_Character); function Slice (Source : Unbounded_Wide_Wide_String; Low : Positive; High : Natural) return Wide_Wide_String; function Unbounded_Slice (Source : Unbounded_Wide_Wide_String; Low : Positive; High : Natural) return Unbounded_Wide_Wide_String; pragma Ada_05 (Unbounded_Slice); procedure Unbounded_Slice (Source : Unbounded_Wide_Wide_String; Target : out Unbounded_Wide_Wide_String; Low : Positive; High : Natural); pragma Ada_05 (Unbounded_Slice); function "=" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "=" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function "=" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function "<" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<=" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function "<=" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function "<=" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function ">" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">=" (Left : Unbounded_Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; function ">=" (Left : Unbounded_Wide_Wide_String; Right : Wide_Wide_String) return Boolean; function ">=" (Left : Wide_Wide_String; Right : Unbounded_Wide_Wide_String) return Boolean; ------------------------ -- Search Subprograms -- ------------------------ function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity) return Natural; function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Natural; function Index (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; Test : Membership := Inside; Going : Direction := Forward) return Natural; function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity) return Natural; pragma Ada_05 (Index); function Index (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; From : Positive; Going : Direction := Forward; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Natural; pragma Ada_05 (Index); function Index (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; From : Positive; Test : Membership := Inside; Going : Direction := Forward) return Natural; pragma Ada_05 (Index); function Index_Non_Blank (Source : Unbounded_Wide_Wide_String; Going : Direction := Forward) return Natural; function Index_Non_Blank (Source : Unbounded_Wide_Wide_String; From : Positive; Going : Direction := Forward) return Natural; pragma Ada_05 (Index_Non_Blank); function Count (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping := Wide_Wide_Maps.Identity) return Natural; function Count (Source : Unbounded_Wide_Wide_String; Pattern : Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Natural; function Count (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set) return Natural; procedure Find_Token (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; From : Positive; Test : Membership; First : out Positive; Last : out Natural); pragma Ada_2012 (Find_Token); procedure Find_Token (Source : Unbounded_Wide_Wide_String; Set : Wide_Wide_Maps.Wide_Wide_Character_Set; Test : Membership; First : out Positive; Last : out Natural); ------------------------------------ -- String Translation Subprograms -- ------------------------------------ function Translate (Source : Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping) return Unbounded_Wide_Wide_String; procedure Translate (Source : in out Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping); function Translate (Source : Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function) return Unbounded_Wide_Wide_String; procedure Translate (Source : in out Unbounded_Wide_Wide_String; Mapping : Wide_Wide_Maps.Wide_Wide_Character_Mapping_Function); --------------------------------------- -- String Transformation Subprograms -- --------------------------------------- function Replace_Slice (Source : Unbounded_Wide_Wide_String; Low : Positive; High : Natural; By : Wide_Wide_String) return Unbounded_Wide_Wide_String; procedure Replace_Slice (Source : in out Unbounded_Wide_Wide_String; Low : Positive; High : Natural; By : Wide_Wide_String); function Insert (Source : Unbounded_Wide_Wide_String; Before : Positive; New_Item : Wide_Wide_String) return Unbounded_Wide_Wide_String; procedure Insert (Source : in out Unbounded_Wide_Wide_String; Before : Positive; New_Item : Wide_Wide_String); function Overwrite (Source : Unbounded_Wide_Wide_String; Position : Positive; New_Item : Wide_Wide_String) return Unbounded_Wide_Wide_String; procedure Overwrite (Source : in out Unbounded_Wide_Wide_String; Position : Positive; New_Item : Wide_Wide_String); function Delete (Source : Unbounded_Wide_Wide_String; From : Positive; Through : Natural) return Unbounded_Wide_Wide_String; procedure Delete (Source : in out Unbounded_Wide_Wide_String; From : Positive; Through : Natural); function Trim (Source : Unbounded_Wide_Wide_String; Side : Trim_End) return Unbounded_Wide_Wide_String; procedure Trim (Source : in out Unbounded_Wide_Wide_String; Side : Trim_End); function Trim (Source : Unbounded_Wide_Wide_String; Left : Wide_Wide_Maps.Wide_Wide_Character_Set; Right : Wide_Wide_Maps.Wide_Wide_Character_Set) return Unbounded_Wide_Wide_String; procedure Trim (Source : in out Unbounded_Wide_Wide_String; Left : Wide_Wide_Maps.Wide_Wide_Character_Set; Right : Wide_Wide_Maps.Wide_Wide_Character_Set); function Head (Source : Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space) return Unbounded_Wide_Wide_String; procedure Head (Source : in out Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space); function Tail (Source : Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space) return Unbounded_Wide_Wide_String; procedure Tail (Source : in out Unbounded_Wide_Wide_String; Count : Natural; Pad : Wide_Wide_Character := Wide_Wide_Space); function "*" (Left : Natural; Right : Wide_Wide_Character) return Unbounded_Wide_Wide_String; function "*" (Left : Natural; Right : Wide_Wide_String) return Unbounded_Wide_Wide_String; function "*" (Left : Natural; Right : Unbounded_Wide_Wide_String) return Unbounded_Wide_Wide_String; private pragma Inline (Length); package AF renames Ada.Finalization; type Shared_Wide_Wide_String (Max_Length : Natural) is limited record Counter : System.Atomic_Counters.Atomic_Counter; -- Reference counter Last : Natural := 0; Data : Wide_Wide_String (1 .. Max_Length); -- Last is the index of last significant element of the Data. All -- elements with larger indexes are just extra room for expansion. end record; type Shared_Wide_Wide_String_Access is access all Shared_Wide_Wide_String; procedure Reference (Item : not null Shared_Wide_Wide_String_Access); -- Increment reference counter. procedure Unreference (Item : not null Shared_Wide_Wide_String_Access); -- Decrement reference counter. Deallocate Item when reference counter is -- zero. function Can_Be_Reused (Item : Shared_Wide_Wide_String_Access; Length : Natural) return Boolean; -- Returns True if Shared_Wide_Wide_String can be reused. There are two -- criteria when Shared_Wide_Wide_String can be reused: its reference -- counter must be one (thus Shared_Wide_Wide_String is owned exclusively) -- and its size is sufficient to store string with specified length -- effectively. function Allocate (Max_Length : Natural) return Shared_Wide_Wide_String_Access; -- Allocates new Shared_Wide_Wide_String with at least specified maximum -- length. Actual maximum length of the allocated Shared_Wide_Wide_String -- can be slightly greater. Returns reference to -- Empty_Shared_Wide_Wide_String when requested length is zero. Empty_Shared_Wide_Wide_String : aliased Shared_Wide_Wide_String (0); function To_Unbounded (S : Wide_Wide_String) return Unbounded_Wide_Wide_String renames To_Unbounded_Wide_Wide_String; -- This renames are here only to be used in the pragma Stream_Convert. type Unbounded_Wide_Wide_String is new AF.Controlled with record Reference : Shared_Wide_Wide_String_Access := Empty_Shared_Wide_Wide_String'Access; end record; -- The Unbounded_Wide_Wide_String uses several techniques to increase speed -- of the application: -- - implicit sharing or copy-on-write. Unbounded_Wide_Wide_String -- contains only the reference to the data which is shared between -- several instances. The shared data is reallocated only when its value -- is changed and the object mutation can't be used or it is inefficient -- to use it; -- - object mutation. Shared data object can be reused without memory -- reallocation when all of the following requirements are meat: -- - shared data object don't used anywhere longer; -- - its size is sufficient to store new value; -- - the gap after reuse is less than some threshold. -- - memory preallocation. Most of used memory allocation algorithms -- aligns allocated segment on the some boundary, thus some amount of -- additional memory can be preallocated without any impact. Such -- preallocated memory can used later by Append/Insert operations -- without reallocation. -- Reference counting uses GCC builtin atomic operations, which allows safe -- sharing of internal data between Ada tasks. Nevertheless, this does not -- make objects of Unbounded_String thread-safe: an instance cannot be -- accessed by several tasks simultaneously. pragma Stream_Convert (Unbounded_Wide_Wide_String, To_Unbounded, To_Wide_Wide_String); -- Provide stream routines without dragging in Ada.Streams pragma Finalize_Storage_Only (Unbounded_Wide_Wide_String); -- Finalization is required only for freeing storage overriding procedure Initialize (Object : in out Unbounded_Wide_Wide_String); overriding procedure Adjust (Object : in out Unbounded_Wide_Wide_String); overriding procedure Finalize (Object : in out Unbounded_Wide_Wide_String); pragma Inline (Initialize, Adjust); Null_Unbounded_Wide_Wide_String : constant Unbounded_Wide_Wide_String := (AF.Controlled with Reference => Empty_Shared_Wide_Wide_String' Access); end Ada.Strings.Wide_Wide_Unbounded;
36.194175
79
0.647103
186de82823909291e5ae441da43c4041f1f014ad
2,673
ads
Ada
cc3df4revo/src/cc3df4revo-board.ads
meowthsli/veriflight_boards
4105bc47495861e41f30e6f44ae41cd631f4649c
[ "Apache-2.0" ]
1
2021-02-08T21:12:13.000Z
2021-02-08T21:12:13.000Z
cc3df4revo/src/cc3df4revo-board.ads
meowthsli/veriflight_boards
4105bc47495861e41f30e6f44ae41cd631f4649c
[ "Apache-2.0" ]
null
null
null
cc3df4revo/src/cc3df4revo-board.ads
meowthsli/veriflight_boards
4105bc47495861e41f30e6f44ae41cd631f4649c
[ "Apache-2.0" ]
null
null
null
-- This package will provide declarations for devices -- and configuration routines on the Flip32cc3df4revo board with System; with STM32; use STM32; with STM32.Device; use STM32.Device; with STM32.GPIO; use STM32.GPIO; -- with STM32.USARTs; use STM32.USARTs; -- with STM32.Timers; use STM32.Timers; -- with STM32.PWM; use STM32.PWM; with Interfaces; use Interfaces; with Interfaces.C; with Ada.Strings.Bounded; -- with Ravenscar_Time; package cc3df4revo.Board is package ASB32 is new Ada.Strings.Bounded.Generic_Bounded_Length (Max => 32); -- -- Devices -- -- mpu -- usart (for s.bus) -- type SBUS_RXTX (USART_Ptr : not null access USART) is limited null record; -- SBUS1 : SBUS_RXTX (USART_Ptr => USART_1'Access); -- SBUS1 : USART renames USART_1; -- SBUS_TX : GPIO_Point renames PA9; -- SBUS_RX : GPIO_Point renames PA10; -- SBUS_AF : GPIO_Alternate_Function renames GPIO_AF_USART1_7; -- M1 : PWM_Modulator; -- -- Board initialization -- procedure Initialize; -- Doing receive procedure usb_receive (message : out ASB32.Bounded_String); -- Doing transmission procedure usb_transmit (message : String); private function ada_usbapi_rx (buffer : out Interfaces.C.char_array) return Interfaces.C.unsigned_short with Import => True, Convention => C, External_Name => "usbapi_rx"; procedure ada_usbapi_tx (buffer : System.Address; len : Interfaces.C.unsigned_short) with Import => True, Convention => C, External_Name => "usbapi_tx"; -- -- USB util -- function ada_usbapi_setup return Interfaces.C.int with Import => True, Convention => C, External_Name => "usbapi_setup"; -- -- Motor pins -- -- MOTOR_123_Timer : Timer renames Timer_2; -- MOTOR_4_Timer : Timer renames Timer_4; -- MOTOR_1 : GPIO_Point renames PB0; -- MOTOR_1_AF : GPIO_Alternate_Function renames GPIO_AF_TIM2_1; -- MOTOR_1_Channel : Timer_Channel renames Channel_2; -- MOTOR_2 : GPIO_Point renames PB1; -- MOTOR_2_AF : GPIO_Alternate_Function renames GPIO_AF_TIM2_1; -- MOTOR_2_Channel : Timer_Channel renames Channel_4; -- MOTOR_3 : GPIO_Point renames PA3; -- MOTOR_3_AF : GPIO_Alternate_Function renames GPIO_AF_TIM2_1; -- MOTOR_3_Channel : Timer_Channel renames Channel_1; -- MOTOR_4 : GPIO_Point renames PA2; -- MOTOR_4_AF : GPIO_Alternate_Function renames GPIO_AF_TIM4_2; -- MOTOR_4_Channel : Timer_Channel renames Channel_4; end cc3df4revo.Board;
31.821429
99
0.666667
d006240c525a239ae84db22015c20f44a9b77ec9
2,103
adb
Ada
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/homonym/homonym.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
31
2018-08-01T21:25:24.000Z
2022-02-14T07:52:34.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/homonym/homonym.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
40
2018-12-03T19:48:52.000Z
2021-03-10T06:34:26.000Z
src/gdb/gdb-8.3/gdb/testsuite/gdb.ada/homonym/homonym.adb
alrooney/unum-sdk
bbccb10b0cd3500feccbbef22e27ea111c3d18eb
[ "Apache-2.0" ]
20
2018-11-16T21:19:22.000Z
2021-10-18T23:08:24.000Z
-- Copyright 2008-2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with Pck; use Pck; package body Homonym is type Integer_Range is new Integer range -100 .. 100; type Positive_Range is new Positive range 1 .. 19740804; --------------- -- Get_Value -- --------------- function Get_Value return Integer_Range is subtype Local_Type is Integer_Range; subtype Local_Type_Subtype is Local_Type; subtype Int_Type is Integer_Range; Lcl : Local_Type := 29; Some_Local_Type_Subtype : Local_Type_Subtype := Lcl; I : Int_Type := 1; begin Do_Nothing (Some_Local_Type_Subtype'Address); Do_Nothing (I'Address); return Lcl; -- BREAK_1 end Get_Value; --------------- -- Get_Value -- --------------- function Get_Value return Positive_Range is subtype Local_Type is Positive_Range; subtype Local_Type_Subtype is Local_Type; subtype Pos_Type is Positive_Range; Lcl : Local_Type := 17; Some_Local_Type_Subtype : Local_Type_Subtype := Lcl; P : Pos_Type := 2; begin Do_Nothing (Some_Local_Type_Subtype'Address); Do_Nothing (P'Address); return Lcl; -- BREAK_2 end Get_Value; ---------------- -- Start_Test -- ---------------- procedure Start_Test is Int : Integer_Range; Pos : Positive_Range; begin Int := Get_Value; Pos := Get_Value; end Start_Test; end Homonym;
29.208333
73
0.654779
dc90a7986b79429122b754cbec99707306f5a93c
273
adb
Ada
source/glibc/iconv-inside.adb
ytomino/iconv-ada
b1adc342a41887fae20b5bc1f1f3d08a5218a346
[ "Unlicense" ]
null
null
null
source/glibc/iconv-inside.adb
ytomino/iconv-ada
b1adc342a41887fae20b5bc1f1f3d08a5218a346
[ "Unlicense" ]
null
null
null
source/glibc/iconv-inside.adb
ytomino/iconv-ada
b1adc342a41887fae20b5bc1f1f3d08a5218a346
[ "Unlicense" ]
null
null
null
package body iconv.Inside is function Version return String is begin raise Program_Error; return "glibc"; end Version; procedure Iterate (Process : not null access procedure (Name : in String)) is begin raise Program_Error; end Iterate; end iconv.Inside;
18.2
78
0.74359
0e64f09a157d4270cbd2c324bc60d25b80b907bb
1,978
adb
Ada
test/annotation/test_annotation-write.adb
skill-lang/skillAdaTestSuite
279ea0c0cd489c2e39d7532a3b68c564497101e2
[ "BSD-3-Clause" ]
1
2019-02-09T22:04:10.000Z
2019-02-09T22:04:10.000Z
test/annotation/test_annotation-write.adb
skill-lang/skillAdaTestSuite
279ea0c0cd489c2e39d7532a3b68c564497101e2
[ "BSD-3-Clause" ]
null
null
null
test/annotation/test_annotation-write.adb
skill-lang/skillAdaTestSuite
279ea0c0cd489c2e39d7532a3b68c564497101e2
[ "BSD-3-Clause" ]
null
null
null
package body Test_Annotation.Write is File_Name : constant String := "tmp/test-annotation-write.sf"; procedure Initialize (T : in out Test) is begin Set_Name (T, "Test_Annotation.Write"); Ahven.Framework.Add_Test_Routine (T, Read_Written'Access, "read written"); Ahven.Framework.Add_Test_Routine (T, Check_Annotation'Access, "check annotation"); Ahven.Framework.Add_Test_Routine (T, Annotation_Type_Safety'Access, "annotation type-safety"); end Initialize; procedure Set_Up (T : in out Test) is State : access Skill_State := new Skill_State; begin Skill.Read (State, "resources/annotationTest.sf"); Skill.Write (State, File_Name); end Set_Up; procedure Tear_Down (T : in out Test) is begin Ada.Directories.Delete_File (File_Name); end Tear_Down; procedure Read_Written (T : in out Ahven.Framework.Test_Case'Class) is State : access Skill_State := new Skill_State; begin Skill.Read (State, File_Name); end Read_Written; procedure Check_Annotation (T : in out Ahven.Framework.Test_Case'Class) is State : access Skill_State := new Skill_State; begin Skill.Read (State, File_Name); declare Test : Test_Type_Access := Skill.Get_Test (State, 1); Date : Date_Type_Access := Skill.Get_Date (State, 1); X : Date_Type_Access := Date_Type_Access (Test.Get_F); Y : Date_Type_Access := Date; begin Ahven.Assert (X = Y, "objects are not equal"); end; end Check_Annotation; procedure Annotation_Type_Safety (T : in out Ahven.Framework.Test_Case'Class) is State : access Skill_State := new Skill_State; begin Skill.Read (State, File_Name); declare Test : Test_Type_Access := Skill.Get_Test (State, 1); begin Ahven.Assert (Test.Get_F /= Skill_Type_Access (Test), "objects are equal"); end; end Annotation_Type_Safety; end Test_Annotation.Write;
33.525424
100
0.678463
4a4d4ee3f0379df7ce2a210b26791e1b6d481c12
5,216
adb
Ada
4-high/gel/applet/demo/skinning/rig/launch_rig_demo.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
20
2015-11-04T09:23:59.000Z
2022-01-14T10:21:42.000Z
4-high/gel/applet/demo/skinning/rig/launch_rig_demo.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
2
2015-11-04T17:05:56.000Z
2015-12-08T03:16:13.000Z
4-high/gel/applet/demo/skinning/rig/launch_rig_demo.adb
charlie5/lace
e9b7dc751d500ff3f559617a6fc3089ace9dc134
[ "0BSD" ]
1
2015-12-07T12:53:52.000Z
2015-12-07T12:53:52.000Z
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;
41.396825
156
0.491373
dc4113efeed673cc70bcbce25c3516941ef21f60
3,895
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/s-pack10.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/s-pack10.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/s-pack10.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . P A C K _ 1 0 -- -- -- -- 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. -- -- -- ------------------------------------------------------------------------------ -- Handling of packed arrays with Component_Size = 10 package System.Pack_10 is pragma Preelaborate; Bits : constant := 10; type Bits_10 is mod 2 ** Bits; for Bits_10'Size use Bits; -- In all subprograms below, Rev_SSO is set True if the array has the -- non-default scalar storage order. function Get_10 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_10 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. procedure Set_10 (Arr : System.Address; N : Natural; E : Bits_10; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. function GetU_10 (Arr : System.Address; N : Natural; Rev_SSO : Boolean) return Bits_10 with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is extracted and returned. This version -- is used when Arr may represent an unaligned address. procedure SetU_10 (Arr : System.Address; N : Natural; E : Bits_10; Rev_SSO : Boolean) with Inline; -- Arr is the address of the packed array, N is the zero-based -- subscript. This element is set to the given value. This version -- is used when Arr may represent an unaligned address end System.Pack_10;
49.935897
78
0.474711
c5b5ce66a9fe03d82860f808f13d507cd0961dbe
1,138
ads
Ada
src/keystore-passwords-cmds.ads
My-Colaborations/ada-keystore
6ab222c2df81f32309c5a7b4f94a475214ef5ce3
[ "Apache-2.0" ]
25
2019-05-07T20:35:50.000Z
2021-11-30T10:35:47.000Z
src/keystore-passwords-cmds.ads
My-Colaborations/ada-keystore
6ab222c2df81f32309c5a7b4f94a475214ef5ce3
[ "Apache-2.0" ]
12
2019-12-16T23:30:00.000Z
2021-09-26T18:52:41.000Z
src/keystore-passwords-cmds.ads
My-Colaborations/ada-keystore
6ab222c2df81f32309c5a7b4f94a475214ef5ce3
[ "Apache-2.0" ]
3
2019-12-18T21:30:04.000Z
2021-01-06T08:30:36.000Z
----------------------------------------------------------------------- -- keystore-passwords-cmds -- External command based password provider -- Copyright (C) 2019, 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- package Keystore.Passwords.Cmds is MAX_PASSWORD_LENGTH : constant := 1024; -- Create a password provider that runs a command to get the password. function Create (Command : in String) return Provider_Access; end Keystore.Passwords.Cmds;
42.148148
76
0.650264
0e283fcb82a0b5794b1d938ae38d61ecdc16b287
4,803
adb
Ada
llvm-gcc-4.2-2.9/gcc/ada/a-colire.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/a-colire.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/a-colire.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . C O M M A N D _ L I N E . R E M O V E -- -- -- -- B o d y -- -- -- -- Copyright (C) 1999-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 Ada.Command_Line.Remove is ----------------------- -- Local Subprograms -- ----------------------- procedure Initialize; -- Initialize the Remove_Count and Remove_Args variables ---------------- -- Initialize -- ---------------- procedure Initialize is begin if Remove_Args = null then Remove_Count := Argument_Count; Remove_Args := new Arg_Nums (1 .. Argument_Count); for J in Remove_Args'Range loop Remove_Args (J) := J; end loop; end if; end Initialize; --------------------- -- Remove_Argument -- --------------------- procedure Remove_Argument (Number : Positive) is begin Initialize; if Number > Remove_Count then raise Constraint_Error; end if; Remove_Count := Remove_Count - 1; for J in Number .. Remove_Count loop Remove_Args (J) := Remove_Args (J + 1); end loop; end Remove_Argument; procedure Remove_Argument (Argument : String) is begin for J in reverse 1 .. Argument_Count loop if Argument = Ada.Command_Line.Argument (J) then Remove_Argument (J); end if; end loop; end Remove_Argument; ---------------------- -- Remove_Arguments -- ---------------------- procedure Remove_Arguments (From : Positive; To : Natural) is begin Initialize; if From > Remove_Count or else To > Remove_Count then raise Constraint_Error; end if; if To >= From then Remove_Count := Remove_Count - (To - From + 1); for J in From .. Remove_Count loop Remove_Args (J) := Remove_Args (J + (To - From + 1)); end loop; end if; end Remove_Arguments; procedure Remove_Arguments (Argument_Prefix : String) is begin for J in reverse 1 .. Argument_Count loop declare Arg : constant String := Argument (J); begin if Arg'Length >= Argument_Prefix'Length and then Arg (1 .. Argument_Prefix'Length) = Argument_Prefix then Remove_Argument (J); end if; end; end loop; end Remove_Arguments; end Ada.Command_Line.Remove;
37.818898
78
0.47512
cb9cd23a0906fb81eec5aa8ebc63e5723546c205
1,963
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c86004b2.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c86004b2.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c86004b2.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C86004B2M.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 IF THE SPECIFICATION OF A LIBRARY SUBPROGRAM HAS A -- "WITH" CLAUSE FOR A LIBRARY SUBPROGRAM M, THEN IN THE FORMAL PART -- AND IN THE BODY (IN ANOTHER FILE), "STANDARD.M" IS A LEGAL NAME -- FOR THE SUBPROGRAM M. -- SEPARATE FILES ARE: -- C86004B0 A LIBRARY FUNCTION AND A LIBRARY SUBPROGRAM -- SPECIFICATION. -- C86004B1 A LIBRARY SUBPROGRAM BODY FOR THE C86004B0 -- SPECIFICATION. -- C86004B2M MAIN PROCEDURE USING THE SUBPROGRAM OF C86004B1. -- HISTORY: -- DHH 08/15/88 CREATED ORIGINAL TEST. WITH C86004B1; WITH REPORT; USE REPORT; PROCEDURE C86004B2M IS BEGIN C86004B1(IDENT_INT(0)); END C86004B2M;
41.765957
79
0.678044
c5a9280b8175243b711d7c555d109cd5d2cc3165
3,494
adb
Ada
demo/adainclude/s-musplo.adb
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/adainclude/s-musplo.adb
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
demo/adainclude/s-musplo.adb
e3l6/SSMDev
2929757aab3842aefd84debb2d7c3e8b28c2b340
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . M U L T I P R O C E S S O R S . S P I N _ L O C K S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2010, AdaCore -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- -- -- -- -- -- -- -- -- 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/>. -- -- -- ------------------------------------------------------------------------------ with Interfaces; package body System.Multiprocessors.Spin_Locks is use Interfaces; ---------- -- Lock -- ---------- procedure Lock (Slock : in out Spin_Lock) is Succeeded : Boolean; begin -- Loop until we can get the lock loop Try_Lock (Slock, Succeeded); exit when Succeeded; end loop; end Lock; ------------ -- Locked -- ------------ function Locked (Slock : Spin_Lock) return Boolean is begin return Slock.Flag /= Unlocked; end Locked; -------------- -- Try_Lock -- -------------- procedure Try_Lock (Slock : in out Spin_Lock; Succeeded : out Boolean) is function Lock_Test_And_Set (Ptr : access Atomic_Flag; Value : Atomic_Flag) return Atomic_Flag; pragma Import (Intrinsic, Lock_Test_And_Set, "__sync_lock_test_and_set_1"); begin Succeeded := (Lock_Test_And_Set (Slock.Flag'Access, 1) = Unlocked); end Try_Lock; ------------ -- Unlock -- ------------ procedure Unlock (Slock : in out Spin_Lock) is procedure Lock_Release (Ptr : access Atomic_Flag); pragma Import (Intrinsic, Lock_Release, "__sync_lock_release_1"); begin Lock_Release (Slock.Flag'Access); end Unlock; end System.Multiprocessors.Spin_Locks;
38.395604
78
0.393246
1836a7dec75f40089d994c8bce38026c724fb639
3,629
ads
Ada
source/amf/uml/amf-uml-activity_partitions-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
24
2016-11-29T06:59:41.000Z
2021-08-30T11:55:16.000Z
source/amf/uml/amf-uml-activity_partitions-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
2
2019-01-16T05:15:20.000Z
2019-02-03T10:03:32.000Z
source/amf/uml/amf-uml-activity_partitions-hash.ads
svn2github/matreshka
9d222b3ad9da508855fb1f5adbe5e8a4fad4c530
[ "BSD-3-Clause" ]
4
2017-07-18T07:11:05.000Z
2020-06-21T03:02:25.000Z
------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2011-2012, Vadim Godunko <[email protected]> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in the -- -- documentation and/or other materials provided with the distribution. -- -- -- -- * Neither the name of the Vadim Godunko, IE nor the names of its -- -- contributors may be used to endorse or promote products derived from -- -- this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED -- -- TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR -- -- PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF -- -- LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING -- -- NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS -- -- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Elements.Generic_Hash; function AMF.UML.Activity_Partitions.Hash is new AMF.Elements.Generic_Hash (UML_Activity_Partition, UML_Activity_Partition_Access);
72.58
88
0.405346
d0c9b8f307b862751bc178384684ec50e9419e42
10,314
ads
Ada
llvm-gcc-4.2-2.9/gcc/ada/s-wchcon.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/s-wchcon.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/s-wchcon.ads
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . W C H _ C O N -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package defines the codes used to identify the encoding method for -- wide characters in string and character constants. This is needed both -- at compile time and at runtime (for the wide character runtime routines) -- This unit may be used directly from an application program by providing -- an appropriate WITH, and the interface can be expected to remain stable. package System.WCh_Con is pragma Pure; ------------------------------------- -- Wide_Character Encoding Methods -- ------------------------------------- -- A wide character encoding method is a method for uniquely representing -- a Wide_Character or Wide_Wide_Character value using a one or more -- Character values. Three types of encoding method are supported by GNAT: -- An escape encoding method uses ESC as the first character of the -- sequence, and subsequent characters determine the wide character -- value that is represented. Any character other than ESC stands -- for itself as a single byte (i.e. any character in Latin-1, other -- than ESC itself, is represented as a single character: itself). -- An upper half encoding method uses a character in the upper half -- range (i.e. in the range 16#80# .. 16#FF#) as the first byte of -- a wide character encoding sequence. Subsequent characters are -- used to determine the wide character value that is represented. -- Any character in the lower half (16#00# .. 16#7F#) represents -- itself as a single character. -- The brackets notation, where a wide character is represented by the -- sequence ["xx"] or ["xxxx"] or ["xxxxxx"] where xx are hexadecimal -- characters. Note that currently this is the only encoding that -- supports the full UTF-32 range. -- Note that GNAT does not currently support escape-in, escape-out -- encoding methods, where an escape sequence is used to set a mode -- used to recognize subsequent characters. All encoding methods use -- individual character-by-character encodings, so that a sequence of -- wide characters is represented by a sequence of encodings. -- To add new encoding methods, the following steps are required: -- 1. Define a code for a new value of type WC_Encoding_Method -- 2. Adjust the definition of WC_Encoding_Method accordingly -- 3. Provide appropriate conversion routines in System.Wch_Cnv -- 4. Adjust definition of WC_Longest_Sequence if necessary -- 5. Add an entry in WC_Encoding_Letters for the new method -- 6. Add proper code to s-wchstw.adb, s-wchwts.adb, s-widwch.adb -- Note that the WC_Encoding_Method values must be kept ordered so that -- the definitions of the subtypes WC_Upper_Half_Encoding_Method and -- WC_ESC_Encoding_Method are still correct. --------------------------------- -- Encoding Method Definitions -- --------------------------------- type WC_Encoding_Method is range 1 .. 6; -- Type covering the range of values used to represent wide character -- encoding methods. An enumeration type might be a little neater, but -- more trouble than it's worth, given the need to pass these values -- from the compiler to the backend, and to record them in the ALI file. WCEM_Hex : constant WC_Encoding_Method := 1; -- The wide character with code 16#abcd# is represented by the escape -- sequence ESC a b c d (five characters, where abcd are ASCII hex -- characters, using upper case for letters). This method is easy -- to deal with in external environments that do not support wide -- characters, and covers the whole BMP. This is the default encoding -- method. WCEM_Upper : constant WC_Encoding_Method := 2; -- The wide character with encoding 16#abcd#, where the upper bit is on -- (i.e. a is in the range 8-F) is represented as two bytes 16#ab# and -- 16#cd#. The second byte may never be a format control character, but -- is not required to be in the upper half. This method can be also used -- for shift-JIS or EUC where the internal coding matches the external -- coding. WCEM_Shift_JIS : constant WC_Encoding_Method := 3; -- A wide character is represented by a two character sequence 16#ab# -- and 16#cd#, with the restrictions described for upper half encoding -- as described above. The internal character code is the corresponding -- JIS character according to the standard algorithm for Shift-JIS -- conversion. See the body of package System.JIS_Conversions for -- further details. WCEM_EUC : constant WC_Encoding_Method := 4; -- A wide character is represented by a two character sequence 16#ab# and -- 16#cd#, with both characters being in the upper half set. The internal -- character code is the corresponding JIS character according to the EUC -- encoding algorithm. See the body of package System.JIS_Conversions for -- further details. WCEM_UTF8 : constant WC_Encoding_Method := 5; -- An ISO 10646-1 BMP/Unicode wide character is represented in -- UCS Transformation Format 8 (UTF-8) as defined in Annex R of ISO -- 10646-1/Am.2. Depending on the character value, a Unicode character -- is represented as the one to six byte sequence. -- -- 16#0000_0000#-16#0000_007f#: 2#0xxxxxxx# -- 16#0000_0080#-16#0000_07ff#: 2#110xxxxx# 2#10xxxxxx# -- 16#0000_0800#-16#0000_ffff#: 2#1110xxxx# 2#10xxxxxx# 2#10xxxxxx# -- 16#0001_0000#-16#001F_FFFF#: 2#11110xxx# 2#10xxxxxx# 2#10xxxxxx# -- 2#10xxxxxx# -- 16#0020_0000#-16#03FF_FFFF#: 2#111110xx# 2#10xxxxxx# 2#10xxxxxx# -- 2#10xxxxxx# 2#10xxxxxx# -- 16#0400_0000#-16#7FFF_FFFF#: 2#1111110x# 2#10xxxxxx# 2#10xxxxxx# -- 2#10xxxxxx# 2#10xxxxxx# 2#10xxxxxx# -- -- where the xxx bits correspond to the left-padded bits of the -- 16-bit character value. Note that all lower half ASCII characters -- are represented as ASCII bytes and all upper half characters and -- other wide characters are represented as sequences of upper-half. WCEM_Brackets : constant WC_Encoding_Method := 6; -- A wide character is represented using one of the following sequences: -- -- ["xx"] -- ["xxxx"] -- ["xxxxxx"] -- ["xxxxxxxx"] -- -- where xx are hexadecimal digits representing the character code. WC_Encoding_Letters : constant array (WC_Encoding_Method) of Character := (WCEM_Hex => 'h', WCEM_Upper => 'u', WCEM_Shift_JIS => 's', WCEM_EUC => 'e', WCEM_UTF8 => '8', WCEM_Brackets => 'b'); -- Letters used for selection of wide character encoding method in the -- compiler options (-gnatW? switch) and for Wide_Text_IO (WCEM parameter -- in the form string). subtype WC_ESC_Encoding_Method is WC_Encoding_Method range WCEM_Hex .. WCEM_Hex; -- Encoding methods using an ESC character at the start of the sequence subtype WC_Upper_Half_Encoding_Method is WC_Encoding_Method range WCEM_Upper .. WCEM_UTF8; -- Encoding methods using an upper half character (16#80#..16#FF) at -- the start of the sequence. WC_Longest_Sequence : constant := 10; -- The longest number of characters that can be used for a wide character -- or wide wide character sequence for any of the active encoding methods. function Get_WC_Encoding_Method (C : Character) return WC_Encoding_Method; -- Given a character C, returns corresponding encoding method (see array -- WC_Encoding_Letters above). Raises Constraint_Error if not in list. end System.WCh_Con;
54.284211
78
0.614117
dc0f4ecdf885e90e5d210201bacbf07e51d12c90
5,080
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-osinte__gnu.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-osinte__gnu.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnarl/s-osinte__gnu.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ I N T E R F A C E -- -- -- -- B o d y -- -- -- -- Copyright (C) 2015-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/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the GNU/Hurd version of this package. -- This package encapsulates all direct interfaces to OS services -- that are needed by children of System. package body System.OS_Interface is -------------------- -- Get_Stack_Base -- -------------------- function Get_Stack_Base (thread : pthread_t) return Address is pragma Warnings (Off, thread); begin return Null_Address; end Get_Stack_Base; ------------------ -- pthread_init -- ------------------ procedure pthread_init is begin null; end pthread_init; -------------------------------------- -- pthread_mutexattr_setprioceiling -- -------------------------------------- function pthread_mutexattr_setprioceiling (attr : access pthread_mutexattr_t; prioceiling : int) return int is pragma Unreferenced (attr, prioceiling); begin return 0; end pthread_mutexattr_setprioceiling; -------------------------------------- -- pthread_mutexattr_getprioceiling -- -------------------------------------- function pthread_mutexattr_getprioceiling (attr : access pthread_mutexattr_t; prioceiling : access int) return int is pragma Unreferenced (attr, prioceiling); begin return 0; end pthread_mutexattr_getprioceiling; --------------------------- -- pthread_setschedparam -- --------------------------- function pthread_setschedparam (thread : pthread_t; policy : int; param : access struct_sched_param) return int is pragma Unreferenced (thread, policy, param); begin return 0; end pthread_setschedparam; ----------------- -- To_Duration -- ----------------- function To_Duration (TS : timespec) return Duration is begin return Duration (TS.tv_sec) + Duration (TS.tv_nsec) / 10#1#E9; end To_Duration; ------------------------ -- To_Target_Priority -- ------------------------ function To_Target_Priority (Prio : System.Any_Priority) return Interfaces.C.int is begin return Interfaces.C.int (Prio); end To_Target_Priority; ----------------- -- To_Timespec -- ----------------- function To_Timespec (D : Duration) return timespec is S : time_t; F : Duration; begin S := time_t (Long_Long_Integer (D)); F := D - Duration (S); -- If F has negative value due to a round-up, adjust for positive F -- value. if F < 0.0 then S := S - 1; F := F + 1.0; end if; return timespec'(tv_sec => S, tv_nsec => long (Long_Long_Integer (F * 10#1#E9))); end To_Timespec; end System.OS_Interface;
36.028369
78
0.46378
0ea67f60bc79ce3eedd8fbcf8f76826fbc0a7d05
1,331
ads
Ada
source/asis/spec/annex_d/ada-dispatching-edf.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
4
2016-02-05T15:51:56.000Z
2022-03-25T20:38:32.000Z
source/asis/spec/annex_d/ada-dispatching-edf.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
source/asis/spec/annex_d/ada-dispatching-edf.ads
faelys/gela-asis
48a3bee90eda9f0c9d958b4e3c80a5a9b1c65253
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- A d a r u n - t i m e s p e c i f i c a t i o n -- -- ASIS implementation for Gela project, a portable Ada compiler -- -- http://gela.ada-ru.org -- -- - - - - - - - - - - - - - - - -- -- Read copyright and license at the end of ada.ads file -- ------------------------------------------------------------------------------ -- $Revision: 209 $ $Date: 2013-11-30 21:03:24 +0200 (Сб., 30 нояб. 2013) $ with Ada.Real_Time; with Ada.Task_Identification; package Ada.Dispatching.EDF is subtype Deadline is Ada.Real_Time.Time; Default_Deadline : constant Deadline := Ada.Real_Time.Time_Last; procedure Set_Deadline (D : in Deadline; T : in Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task); procedure Delay_Until_And_Set_Deadline (Delay_Until_Time : in Ada.Real_Time.Time; Deadline_Offset : in Ada.Real_Time.Time_Span); function Get_Deadline (T : Ada.Task_Identification.Task_Id := Ada.Task_Identification.Current_Task) return Deadline; end Ada.Dispatching.EDF;
41.59375
78
0.494365
c56e80090719d902a015658c8ff8b5b445ce1c59
1,670
ads
Ada
src/gl/interface/gl-matrices.ads
Roldak/OpenGLAda
6807605b7321249d71286fa25231bdfd537d3eac
[ "MIT" ]
79
2015-04-20T23:10:02.000Z
2022-03-04T13:50:56.000Z
src/gl/interface/gl-matrices.ads
Roldak/OpenGLAda
6807605b7321249d71286fa25231bdfd537d3eac
[ "MIT" ]
126
2015-09-10T10:41:34.000Z
2022-03-20T11:25:40.000Z
src/gl/interface/gl-matrices.ads
Roldak/OpenGLAda
6807605b7321249d71286fa25231bdfd537d3eac
[ "MIT" ]
20
2015-03-17T07:15:57.000Z
2022-02-02T17:12:11.000Z
-- part of OpenGLAda, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "COPYING" generic type Index_Type is (<>); type Element_Type is private; with function "+" (Left, Right : Element_Type) return Element_Type is <>; with function "-" (Left, Right : Element_Type) return Element_Type is <>; with function "-" (Left : Element_Type) return Element_Type is <>; with function "*" (Left, Right : Element_Type) return Element_Type is <>; -- not needed currently --with function "/" (Left, Right : Element_Type) return Element_Type is <>; type Vector_Type is array (Index_Type) of aliased Element_Type; package GL.Matrices is pragma Preelaborate; -- this matrix is column-major (i.e. the first index defines the column, -- the second index defines the row). -- this is important for interoperability with GLSL. type Matrix is array (Index_Type, Index_Type) of aliased Element_Type; function "+" (Left, Right : Matrix) return Matrix; function "-" (Left, Right : Matrix) return Matrix; function "-" (Left : Matrix) return Matrix; -- This is not element-wise but mathematical matrix multiplication. function "*" (Left, Right : Matrix) return Matrix; function "*" (Left : Matrix; Right : Vector_Type) return Vector_Type; function "*" (Left : Matrix; Right : Element_Type) return Matrix; function "*" (Left : Element_Type; Right : Matrix) return Matrix; function Transpose (Subject : Matrix) return Matrix; pragma Inline ("+"); pragma Inline ("-"); pragma Inline ("*"); pragma Inline (Transpose); pragma Convention (C, Matrix); end GL.Matrices;
38.837209
78
0.689222
18b8a9c1bd4bff369ad111ba3973b44c8e3de879
4,445
adb
Ada
arch/ARM/Nordic/drivers/nrf_common/nrf-gpio-tasks_and_events.adb
soccasys/Ada_Drivers_Library
c9290bc39d6aec4f7d96151bcdf73b311ed49137
[ "BSD-3-Clause" ]
null
null
null
arch/ARM/Nordic/drivers/nrf_common/nrf-gpio-tasks_and_events.adb
soccasys/Ada_Drivers_Library
c9290bc39d6aec4f7d96151bcdf73b311ed49137
[ "BSD-3-Clause" ]
1
2016-01-27T19:57:31.000Z
2016-01-27T19:57:31.000Z
arch/ARM/Nordic/drivers/nrf_common/nrf-gpio-tasks_and_events.adb
soccasys/Ada_Drivers_Library
c9290bc39d6aec4f7d96151bcdf73b311ed49137
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2016-2020, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with NRF_SVD.GPIOTE; use NRF_SVD.GPIOTE; with HAL; use HAL; package body nRF.GPIO.Tasks_And_Events is ------------- -- Disable -- ------------- procedure Disable (Chan : GPIOTE_Channel) is begin GPIOTE_Periph.CONFIG (Integer (Chan)).MODE := Disabled; end Disable; ------------------ -- Enable_Event -- ------------------ procedure Enable_Event (Chan : GPIOTE_Channel; GPIO_Pin : GPIO_Pin_Index; Polarity : Event_Polarity) is CONFIG : CONFIG_Register renames GPIOTE_Periph.CONFIG (Integer (Chan)); begin CONFIG.PSEL := UInt5 (GPIO_Pin); CONFIG.POLARITY := (case Polarity is when Rising_Edge => Lotohi, when Falling_Edge => Hitolo, when Any_Change => Toggle); CONFIG.MODE := Event; end Enable_Event; ----------------- -- Enable_Task -- ----------------- procedure Enable_Task (Chan : GPIOTE_Channel; GPIO_Pin : GPIO_Pin_Index; Action : Task_Action; Initial_Value : Init_Value) is CONFIG : CONFIG_Register renames GPIOTE_Periph.CONFIG (Integer (Chan)); begin CONFIG.PSEL := UInt5 (GPIO_Pin); CONFIG.POLARITY := (case Action is when Set_Pin => Lotohi, when Clear_Pin => Hitolo, when Toggle_Pin => Toggle); CONFIG.OUTINIT := (case Initial_Value is when Init_Set => High, when Init_Clear => Low); CONFIG.MODE := Task_k; end Enable_Task; -------------- -- Out_Task -- -------------- function Out_Task (Chan : GPIOTE_Channel) return Task_Type is (Task_Type (GPIOTE_Periph.TASKS_OUT (Integer (Chan))'Address)); -------------- -- In_Event -- -------------- function In_Event (Chan : GPIOTE_Channel) return Event_Type is (Event_Type (GPIOTE_Periph.EVENTS_IN (Integer (Chan))'Address)); end nRF.GPIO.Tasks_And_Events;
43.15534
78
0.51766
2011408218a3314c715bab2f072c9cc0bc9d728c
10,012
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-stouut.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-stouut.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/a-stouut.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- ADA.STRINGS.TEXT_OUTPUT.UTILS -- -- -- -- B o d y -- -- -- -- Copyright (C) 2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Strings.UTF_Encoding.Wide_Wide_Strings; package body Ada.Strings.Text_Output.Utils is procedure Put_Octet (S : in out Sink'Class; Item : Character) with Inline; -- Send a single octet to the current Chunk procedure Adjust_Column (S : in out Sink'Class) with Inline; -- Adjust the column for a non-NL character. procedure Put_UTF_8_Outline (S : in out Sink'Class; Item : UTF_8); -- Out-of-line portion of Put_UTF_8. This exists solely to make Put_UTF_8 -- small enough to reasonably inline it. procedure Full (S : in out Sink'Class) is begin pragma Assert (S.Last = S.Chunk_Length); Full_Method (S); pragma Assert (S.Last = 0); end Full; procedure Flush (S : in out Sink'Class) is begin Flush_Method (S); end Flush; procedure Put_Octet (S : in out Sink'Class; Item : Character) is begin S.Last := @ + 1; S.Cur_Chunk.Chars (S.Last) := Item; pragma Assert (S.Chunk_Length = S.Cur_Chunk.Chars'Length); if S.Last = S.Chunk_Length then Full (S); end if; end Put_Octet; procedure Adjust_Column (S : in out Sink'Class) is begin -- If we're in the first column, indent. This is handled here, rather -- than when we see NL, because we don't want spaces in a blank line. -- The character we're about to put is not NL; NL is handled in -- New_Line. So after indenting, we simply increment the Column. if S.Column = 1 then Tab_To_Column (S, S.Indentation + 1); end if; S.Column := @ + 1; end Adjust_Column; procedure Put_7bit (S : in out Sink'Class; Item : Character_7) is begin Adjust_Column (S); Put_Octet (S, Item); end Put_7bit; procedure Put_7bit_NL (S : in out Sink'Class; Item : Character_7) is begin if Item = NL then New_Line (S); else Put_7bit (S, Item); end if; end Put_7bit_NL; procedure Put_Character (S : in out Sink'Class; Item : Character) is begin if Character'Pos (Item) < 2**7 then Put_7bit_NL (S, Item); else Put_Wide_Wide_Character (S, To_Wide_Wide (Item)); end if; end Put_Character; procedure Put_Wide_Character (S : in out Sink'Class; Item : Wide_Character) is begin if Wide_Character'Pos (Item) < 2**7 then Put_7bit_NL (S, From_Wide (Item)); else Put_Wide_Wide_Character (S, To_Wide_Wide (Item)); end if; end Put_Wide_Character; procedure Put_Wide_Wide_Character (S : in out Sink'Class; Item : Wide_Wide_Character) is begin if Wide_Wide_Character'Pos (Item) < 2**7 then Put_7bit_NL (S, From_Wide_Wide (Item)); else S.All_7_Bits := False; if Wide_Wide_Character'Pos (Item) >= 2**8 then S.All_8_Bits := False; end if; declare Temp : constant UTF_8_Lines := UTF_Encoding.Wide_Wide_Strings.Encode ((1 => Item)); begin for X of Temp loop pragma Assert (X /= NL); Adjust_Column (S); Put_Octet (S, X); end loop; end; end if; end Put_Wide_Wide_Character; procedure Put_UTF_8_Outline (S : in out Sink'Class; Item : UTF_8) is begin if S.Last + Item'Length = S.Chunk_Length then -- Item fits exactly in current chunk S.Cur_Chunk.Chars (S.Last + 1 .. S.Last + Item'Length) := Item; S.Last := S.Last + Item'Length; S.Column := S.Column + Item'Length; Full (S); -- ???Seems like maybe we shouldn't call Full until we have MORE -- characters. But then we can't pass Chunk_Length => 1 to -- Create_File to get unbuffered output. else -- We get here only if Item doesn't fit in the current chunk, which -- should be fairly rare. We split Item into Left and Right, where -- Left exactly fills the current chunk, and recurse on Left and -- Right. Right will fit into the next chunk unless it's very long, -- so another level of recursion will be extremely rare. declare Left_Length : constant Natural := S.Chunk_Length - S.Last; Right_First : constant Natural := Item'First + Left_Length; Left : UTF_8 renames Item (Item'First .. Right_First - 1); Right : UTF_8 renames Item (Right_First .. Item'Last); pragma Assert (Left & Right = Item); begin Put_UTF_8 (S, Left); -- This will call Full. Put_UTF_8 (S, Right); -- This might call Full, but probably not. end; end if; end Put_UTF_8_Outline; procedure Put_UTF_8 (S : in out Sink'Class; Item : UTF_8) is begin Adjust_Column (S); if S.Last + Item'Length < S.Chunk_Length then -- Item fits in current chunk S.Cur_Chunk.Chars (S.Last + 1 .. S.Last + Item'Length) := Item; S.Last := S.Last + Item'Length; S.Column := S.Column + Item'Length; else Put_UTF_8_Outline (S, Item); end if; end Put_UTF_8; procedure Put_UTF_8_Lines (S : in out Sink'Class; Item : UTF_8_Lines) is Line_Start, Index : Integer := Item'First; -- Needs to be Integer, because Item'First might be negative for empty -- Items. begin while Index <= Item'Last loop if Item (Index) = NL then if Index > Line_Start then Put_UTF_8 (S, Item (Line_Start .. Index - 1)); end if; New_Line (S); Line_Start := Index + 1; end if; Index := @ + 1; end loop; if Index > Line_Start then Put_UTF_8 (S, Item (Line_Start .. Index - 1)); end if; end Put_UTF_8_Lines; procedure Put_String (S : in out Sink'Class; Item : String) is begin for X of Item loop Put_Character (S, X); end loop; end Put_String; procedure Put_Wide_String (S : in out Sink'Class; Item : Wide_String) is begin for X of Item loop Put_Wide_Character (S, X); end loop; end Put_Wide_String; procedure Put_Wide_Wide_String (S : in out Sink'Class; Item : Wide_Wide_String) is begin for X of Item loop Put_Wide_Wide_Character (S, X); end loop; end Put_Wide_Wide_String; procedure New_Line (S : in out Sink'Class) is begin S.Column := 1; Put_Octet (S, NL); end New_Line; function Column (S : Sink'Class) return Positive is (S.Column); procedure Tab_To_Column (S : in out Sink'Class; Column : Positive) is begin if S.Column < Column then for X in 1 .. Column - S.Column loop Put_Octet (S, ' '); end loop; S.Column := Column; end if; end Tab_To_Column; procedure Set_Indentation (S : in out Sink'Class; Amount : Natural) is begin S.Indentation := Amount; end Set_Indentation; function Indentation (S : Sink'Class) return Natural is (S.Indentation); procedure Indent (S : in out Sink'Class; Amount : Optional_Indentation := Default) is By : constant Natural := (if Amount = Default then S.Indent_Amount else Amount); begin Set_Indentation (S, Indentation (S) + By); end Indent; procedure Outdent (S : in out Sink'Class; Amount : Optional_Indentation := Default) is By : constant Natural := (if Amount = Default then S.Indent_Amount else Amount); begin Set_Indentation (S, Indentation (S) - By); end Outdent; end Ada.Strings.Text_Output.Utils;
36.673993
78
0.54964
200fc4705ddd3ab087314337506259d59da39390
20,893
ads
Ada
tools-src/gnu/gcc/gcc/ada/5bosinte.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/5bosinte.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/5bosinte.ads
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- 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) 1997-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 AIX (Native THREADS) 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 ("-lpthreads"); pragma Linker_Options ("-lc_r"); 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; ----------- -- Errno -- ----------- function errno return int; pragma Import (C, errno, "__get_errno"); EAGAIN : constant := 11; EINTR : constant := 4; EINVAL : constant := 22; ENOMEM : constant := 12; ETIMEDOUT : constant := 78; ------------- -- Signals -- ------------- Max_Interrupt : constant := 63; type Signal is new int range 0 .. Max_Interrupt; for Signal'Size use int'Size; SIGHUP : constant := 1; -- hangup SIGINT : constant := 2; -- interrupt (rubout) SIGQUIT : constant := 3; -- quit (ASCD FS) SIGILL : constant := 4; -- illegal instruction (not reset) SIGTRAP : constant := 5; -- trace trap (not reset) SIGIOT : constant := 6; -- IOT instruction SIGABRT : constant := 6; -- used by abort, replace SIGIOT in the future SIGEMT : constant := 7; -- EMT instruction SIGFPE : constant := 8; -- floating point exception SIGKILL : constant := 9; -- kill (cannot be caught or ignored) SIGBUS : constant := 10; -- bus error SIGSEGV : constant := 11; -- segmentation violation SIGSYS : constant := 12; -- bad argument to system call SIGPIPE : constant := 13; -- write on a pipe with no one to read it SIGALRM : constant := 14; -- alarm clock SIGTERM : constant := 15; -- software termination signal from kill SIGUSR1 : constant := 30; -- user defined signal 1 SIGUSR2 : constant := 31; -- user defined signal 2 SIGCLD : constant := 20; -- alias for SIGCHLD SIGCHLD : constant := 20; -- child status change SIGPWR : constant := 29; -- power-fail restart SIGWINCH : constant := 28; -- window size change SIGURG : constant := 16; -- urgent condition on IO channel SIGPOLL : constant := 23; -- pollable event occurred SIGIO : constant := 23; -- I/O possible (Solaris SIGPOLL alias) SIGSTOP : constant := 17; -- stop (cannot be caught or ignored) SIGTSTP : constant := 18; -- user stop requested from tty SIGCONT : constant := 19; -- stopped process has been continued SIGTTIN : constant := 21; -- background tty read attempted SIGTTOU : constant := 22; -- background tty write attempted SIGVTALRM : constant := 34; -- virtual timer expired SIGPROF : constant := 32; -- profiling timer expired SIGXCPU : constant := 24; -- CPU time limit exceeded SIGXFSZ : constant := 25; -- filesize limit exceeded SIGWAITING : constant := 39; -- m:n scheduling -- the following signals are AIX specific SIGMSG : constant := 27; -- input data is in the ring buffer SIGDANGER : constant := 33; -- system crash imminent SIGMIGRATE : constant := 35; -- migrate process SIGPRE : constant := 36; -- programming exception SIGVIRT : constant := 37; -- AIX virtual time alarm SIGALRM1 : constant := 38; -- m:n condition variables SIGKAP : constant := 60; -- keep alive poll from native keyboard SIGGRANT : constant := SIGKAP; -- monitor mode granted SIGRETRACT : constant := 61; -- monitor mode should be relinguished SIGSOUND : constant := 62; -- sound control has completed SIGSAK : constant := 63; -- secure attention key SIGADAABORT : constant := SIGTERM; -- Note: on other targets, we usually use SIGABRT, but on AiX, it -- appears that SIGABRT can't be used in sigwait(), so we use SIGTERM. type Signal_Set is array (Natural range <>) of Signal; Unmasked : constant Signal_Set := (SIGTRAP, SIGTTIN, SIGTTOU, SIGTSTP, SIGPROF); Reserved : constant Signal_Set := (SIGABRT, SIGKILL, SIGSTOP); type sigset_t is private; function sigaddset (set : access sigset_t; sig : Signal) return int; pragma Import (C, sigaddset, "sigaddset"); function sigdelset (set : access sigset_t; sig : Signal) return int; pragma Import (C, sigdelset, "sigdelset"); function sigfillset (set : access sigset_t) return int; pragma Import (C, sigfillset, "sigfillset"); function sigismember (set : access sigset_t; sig : Signal) return int; pragma Import (C, sigismember, "sigismember"); function sigemptyset (set : access sigset_t) return int; pragma Import (C, sigemptyset, "sigemptyset"); type struct_sigaction is record sa_handler : System.Address; sa_mask : sigset_t; sa_flags : int; end record; pragma Convention (C, struct_sigaction); type struct_sigaction_ptr is access all struct_sigaction; SIG_BLOCK : constant := 0; SIG_UNBLOCK : constant := 1; SIG_SETMASK : constant := 2; SIG_DFL : constant := 0; SIG_IGN : constant := 1; function sigaction (sig : Signal; act : struct_sigaction_ptr; oact : struct_sigaction_ptr) return int; pragma Import (C, sigaction, "sigaction"); ---------- -- Time -- ---------- Time_Slice_Supported : constant Boolean := False; -- Indicates wether time slicing is supported type timespec is private; type clockid_t is private; CLOCK_REALTIME : constant clockid_t; function clock_gettime (clock_id : clockid_t; tp : access timespec) return int; -- AiX threads don't have clock_gettime -- We instead use gettimeofday() function To_Duration (TS : timespec) return Duration; pragma Inline (To_Duration); function To_Timespec (D : Duration) return timespec; pragma Inline (To_Timespec); type struct_timezone is record tz_minuteswest : int; tz_dsttime : int; end record; pragma Convention (C, struct_timezone); type struct_timezone_ptr is access all struct_timezone; type struct_timeval is private; -- This is needed on systems that do not have clock_gettime() -- but do have gettimeofday(). function To_Duration (TV : struct_timeval) return Duration; pragma Inline (To_Duration); function To_Timeval (D : Duration) return struct_timeval; pragma Inline (To_Timeval); ------------------------- -- Priority Scheduling -- ------------------------- SCHED_FIFO : constant := 1; SCHED_RR : constant := 2; SCHED_OTHER : constant := 0; ------------- -- Process -- ------------- type pid_t is private; function kill (pid : pid_t; sig : Signal) return int; pragma Import (C, kill, "kill"); function getpid return pid_t; pragma Import (C, getpid, "getpid"); --------- -- LWP -- --------- function lwp_self return System.Address; pragma Import (C, lwp_self, "thread_self"); ------------- -- 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_DETACHED : constant := 1; ----------- -- Stack -- ----------- Stack_Base_Available : constant Boolean := False; -- Indicates wether the stack base is available on this target. function Get_Stack_Base (thread : pthread_t) return Address; pragma Inline (Get_Stack_Base); -- returns the stack base of the specified thread. -- Only call this function when Stack_Base_Available is True. function Get_Page_Size return size_t; function Get_Page_Size return Address; pragma Import (C, Get_Page_Size, "getpagesize"); -- returns the size of a page, or 0 if this is not relevant on this -- target PROT_NONE : constant := 0; PROT_READ : constant := 1; PROT_WRITE : constant := 2; PROT_EXEC : constant := 4; PROT_ALL : constant := PROT_READ + PROT_WRITE + PROT_EXEC; PROT_ON : constant := PROT_READ; PROT_OFF : constant := PROT_ALL; function mprotect (addr : Address; len : size_t; prot : int) return int; pragma Import (C, mprotect); --------------------------------------- -- Nonstandard Thread Initialization -- --------------------------------------- -- Though not documented, pthread_init *must* be called before any other -- pthread call procedure pthread_init; pragma Import (C, pthread_init, "pthread_init"); ------------------------- -- POSIX.1c Section 3 -- ------------------------- function sigwait (set : access sigset_t; sig : access Signal) return int; pragma Import (C, sigwait, "sigwait"); function pthread_kill (thread : pthread_t; sig : Signal) return int; pragma Import (C, pthread_kill, "pthread_kill"); type sigset_t_ptr is access all sigset_t; function pthread_sigmask (how : int; set : sigset_t_ptr; oset : sigset_t_ptr) return int; pragma Import (C, pthread_sigmask, "sigthreadmask"); -------------------------- -- 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_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_wait (cond : access pthread_cond_t; mutex : access pthread_mutex_t) return int; pragma Import (C, pthread_cond_wait, "pthread_cond_wait"); function pthread_cond_timedwait (cond : access pthread_cond_t; mutex : access pthread_mutex_t; abstime : access timespec) return int; pragma Import (C, pthread_cond_timedwait, "pthread_cond_timedwait"); Relative_Timed_Wait : constant Boolean := False; -- pthread_cond_timedwait requires an absolute delay time ---------------------------- -- POSIX.1c Section 13 -- ---------------------------- PTHREAD_PRIO_NONE : constant := 0; PTHREAD_PRIO_PROTECT : constant := 0; PTHREAD_PRIO_INHERIT : constant := 0; function pthread_mutexattr_setprotocol (attr : access pthread_mutexattr_t; protocol : int) return int; pragma Import (C, pthread_mutexattr_setprotocol); function pthread_mutexattr_setprioceiling (attr : access pthread_mutexattr_t; prioceiling : int) return int; pragma Import (C, pthread_mutexattr_setprioceiling); type Array_5_Int is array (0 .. 5) of int; type struct_sched_param is record sched_priority : int; sched_policy : int; sched_reserved : Array_5_Int; end record; 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); function pthread_attr_setschedpolicy (attr : access pthread_attr_t; policy : int) return int; pragma Import (C, pthread_attr_setschedpolicy); function pthread_attr_setschedparam (attr : access pthread_attr_t; sched_param : int) return int; pragma Import (C, pthread_attr_setschedparam); function sched_yield return int; -- AiX have a nonstandard sched_yield. --------------------------- -- 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); function pthread_attr_setstacksize (attr : access pthread_attr_t; stacksize : size_t) return int; pragma Import (C, 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 sigset_t is record losigs : unsigned_long; hisigs : unsigned_long; end record; pragma Convention (C_Pass_By_Copy, sigset_t); type pid_t is new int; type time_t is new long; type timespec is record tv_sec : time_t; tv_nsec : long; end record; pragma Convention (C, timespec); type clockid_t is new int; CLOCK_REALTIME : constant clockid_t := 0; type struct_timeval is record tv_sec : long; tv_usec : long; end record; pragma Convention (C, struct_timeval); type pthread_attr_t is new System.Address; pragma Convention (C, pthread_attr_t); -- typedef struct __pt_attr *pthread_attr_t; type pthread_condattr_t is new System.Address; pragma Convention (C, pthread_condattr_t); -- typedef struct __pt_attr *pthread_condattr_t; type pthread_mutexattr_t is new System.Address; pragma Convention (C, pthread_mutexattr_t); -- typedef struct __pt_attr *pthread_mutexattr_t; type pthread_t is new System.Address; pragma Convention (C, pthread_t); -- typedef void *pthread_t; type ptq_queue; type ptq_queue_ptr is access all ptq_queue; type ptq_queue is record ptq_next : ptq_queue_ptr; ptq_prev : ptq_queue_ptr; end record; type Array_3_Int is array (0 .. 3) of int; type pthread_mutex_t is record link : ptq_queue; ptmtx_lock : int; ptmtx_flags : long; protocol : int; prioceiling : int; ptmtx_owner : pthread_t; mtx_id : int; attr : pthread_attr_t; mtx_kind : int; lock_cpt : int; reserved : Array_3_Int; end record; pragma Convention (C, pthread_mutex_t); type pthread_mutex_t_ptr is access pthread_mutex_t; type pthread_cond_t is record link : ptq_queue; ptcv_lock : int; ptcv_flags : long; ptcv_waiters : ptq_queue; cv_id : int; attr : pthread_attr_t; mutex : pthread_mutex_t_ptr; cptwait : int; reserved : int; end record; pragma Convention (C, pthread_cond_t); type pthread_key_t is new unsigned; end System.OS_Interface;
35.898625
79
0.622505
184ef610fd2f1dc8b43f053ccc964d274a1ee23d
829
adb
Ada
gnu/src/gdb/gdb/testsuite/gdb.ada/exec_changed/first.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/exec_changed/first.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/exec_changed/first.adb
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
-- Copyright 2005-2015 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. procedure First is procedure Break_Me is begin null; end Break_Me; begin Break_Me; end First;
31.884615
73
0.728589
0ea9ed95f65920d2d5d021d1773adff7f4d2ec69
2,525
ada
Ada
Task/AKS-test-for-primes/Ada/aks-test-for-primes.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
1
2021-05-05T13:42:20.000Z
2021-05-05T13:42:20.000Z
Task/AKS-test-for-primes/Ada/aks-test-for-primes.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
Task/AKS-test-for-primes/Ada/aks-test-for-primes.ada
mullikine/RosettaCodeData
4f0027c6ce83daa36118ee8b67915a13cd23ab67
[ "Info-ZIP" ]
null
null
null
with Ada.Text_IO; procedure Test_For_Primes is type Pascal_Triangle_Type is array (Natural range <>) of Long_Long_Integer; function Calculate_Pascal_Triangle (N : in Natural) return Pascal_Triangle_Type is Pascal_Triangle : Pascal_Triangle_Type (0 .. N); begin Pascal_Triangle (0) := 1; for I in Pascal_Triangle'First .. Pascal_Triangle'Last - 1 loop Pascal_Triangle (1 + I) := 1; for J in reverse 1 .. I loop Pascal_Triangle (J) := Pascal_Triangle (J - 1) - Pascal_Triangle (J); end loop; Pascal_Triangle (0) := -Pascal_Triangle (0); end loop; return Pascal_Triangle; end Calculate_Pascal_Triangle; function Is_Prime (N : Integer) return Boolean is I : Integer; Result : Boolean := True; Pascal_Triangle : constant Pascal_Triangle_Type := Calculate_Pascal_Triangle (N); begin I := N / 2; while Result and I > 1 loop Result := Result and Pascal_Triangle (I) mod Long_Long_Integer (N) = 0; I := I - 1; end loop; return Result; end Is_Prime; function Image (N : in Long_Long_Integer; Sign : in Boolean := False) return String is Image : constant String := N'Image; begin if N < 0 then return Image; else if Sign then return "+" & Image (Image'First + 1 .. Image'Last); else return Image (Image'First + 1 .. Image'Last); end if; end if; end Image; procedure Show (Triangle : in Pascal_Triangle_Type) is use Ada.Text_IO; Begin for I in reverse Triangle'Range loop Put (Image (Triangle (I), Sign => True)); Put ("x^"); Put (Image (Long_Long_Integer (I))); Put (" "); end loop; end Show; procedure Show_Pascal_Triangles is use Ada.Text_IO; begin for N in 0 .. 9 loop declare Pascal_Triangle : constant Pascal_Triangle_Type := Calculate_Pascal_Triangle (N); begin Put ("(x-1)^" & Image (Long_Long_Integer (N)) & " = "); Show (Pascal_Triangle); New_Line; end; end loop; end Show_Pascal_Triangles; procedure Show_Primes is use Ada.Text_IO; begin for N in 2 .. 63 loop if Is_Prime (N) then Put (N'Image); end if; end loop; New_Line; end Show_Primes; begin Show_Pascal_Triangles; Show_Primes; end Test_For_Primes;
28.370787
93
0.588119
4a507d5662328a5c3360cb25810ee87e2cebdbda
46,417
adb
Ada
source/strings/a-strnor.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/strings/a-strnor.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/strings/a-strnor.adb
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
-- 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;
33.273835
79
0.562445
2017b3733c2455c3f137b31c2d7572e9ba6be58b
1,299
ads
Ada
src/ui/statistics-ui.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
80
2017-04-08T23:14:07.000Z
2022-02-10T22:30:51.000Z
src/ui/statistics-ui.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
89
2017-06-24T08:18:26.000Z
2021-11-12T04:37:36.000Z
src/ui/statistics-ui.ads
thindil/steamsky
d5d7fea622f7994c91017c4cd7ba5e188153556c
[ "TCL", "MIT" ]
9
2018-04-14T16:37:25.000Z
2020-03-21T14:33:49.000Z
-- Copyright (c) 2020-2021 Bartek thindil Jasicki <[email protected]> -- -- 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/>. -- ****h* Statistics/SUI -- FUNCTION -- Provide code to show the game statistics to the player -- SOURCE package Statistics.UI is -- **** -- ****f* SUI/SUI.ShowStatistics -- FUNCTION -- Show the game statistics to the player -- PARAMETERS -- Refresh - If true, refresh the view instead of back to the game map -- SOURCE procedure ShowStatistics(Refresh: Boolean := False); -- **** -- ****f* SUI/SUI.AddCommands -- FUNCTION -- Add Tcl commands related to the game statistics -- SOURCE procedure AddCommands; -- **** end Statistics.UI;
32.475
73
0.701309
dcf111d3bf86fd41d2a674ed0de81cbf52ac3607
1,268
ads
Ada
source/oasis/program-elements-code_statements.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/oasis/program-elements-code_statements.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
null
null
null
source/oasis/program-elements-code_statements.ads
optikos/oasis
9f64d46d26d964790d69f9db681c874cfb3bf96d
[ "MIT" ]
2
2019-09-14T23:18:50.000Z
2019-10-02T10:11:40.000Z
-- Copyright (c) 2019 Maxim Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT -- License-Filename: LICENSE ------------------------------------------------------------- with Program.Elements.Statements; with Program.Elements.Qualified_Expressions; with Program.Lexical_Elements; package Program.Elements.Code_Statements is pragma Pure (Program.Elements.Code_Statements); type Code_Statement is limited interface and Program.Elements.Statements.Statement; type Code_Statement_Access is access all Code_Statement'Class with Storage_Size => 0; not overriding function Expression (Self : Code_Statement) return not null Program.Elements.Qualified_Expressions .Qualified_Expression_Access is abstract; type Code_Statement_Text is limited interface; type Code_Statement_Text_Access is access all Code_Statement_Text'Class with Storage_Size => 0; not overriding function To_Code_Statement_Text (Self : aliased in out Code_Statement) return Code_Statement_Text_Access is abstract; not overriding function Semicolon_Token (Self : Code_Statement_Text) return not null Program.Lexical_Elements.Lexical_Element_Access is abstract; end Program.Elements.Code_Statements;
30.926829
74
0.741325
20471e9576354dac68cff5814ebdbb7f557dd13a
11,494
adb
Ada
specs/ada/server/tkmrpc-contexts-ae.adb
DrenfongWong/tkm-rpc
075d22871cf81d497aac656c7f03a513278b641c
[ "BSD-3-Clause" ]
null
null
null
specs/ada/server/tkmrpc-contexts-ae.adb
DrenfongWong/tkm-rpc
075d22871cf81d497aac656c7f03a513278b641c
[ "BSD-3-Clause" ]
null
null
null
specs/ada/server/tkmrpc-contexts-ae.adb
DrenfongWong/tkm-rpc
075d22871cf81d497aac656c7f03a513278b641c
[ "BSD-3-Clause" ]
null
null
null
package body Tkmrpc.Contexts.ae is pragma Warnings (Off, "* already use-visible through previous use type clause"); use type Types.ae_id_type; use type Types.iag_id_type; use type Types.dhag_id_type; use type Types.ca_id_type; use type Types.lc_id_type; use type Types.ri_id_type; use type Types.authag_id_type; use type Types.init_type; use type Types.nonce_type; use type Types.nonce_type; use type Types.key_type; use type Types.key_type; use type Types.rel_time_type; use type Types.abs_time_type; use type Types.abs_time_type; pragma Warnings (On, "* already use-visible through previous use type clause"); type ae_FSM_Type is record State : ae_State_Type; iag_id : Types.iag_id_type; dhag_id : Types.dhag_id_type; ca_id : Types.ca_id_type; lc_id : Types.lc_id_type; ri_id : Types.ri_id_type; authag_id : Types.authag_id_type; initiator : Types.init_type; nonce_loc : Types.nonce_type; nonce_rem : Types.nonce_type; sk_ike_auth_loc : Types.key_type; sk_ike_auth_rem : Types.key_type; creation_time : Types.rel_time_type; cc_not_before : Types.abs_time_type; cc_not_after : Types.abs_time_type; end record; -- Authentication Endpoint Context Null_ae_FSM : constant ae_FSM_Type := ae_FSM_Type' (State => clean, iag_id => Types.iag_id_type'First, dhag_id => Types.dhag_id_type'First, ca_id => Types.ca_id_type'First, lc_id => Types.lc_id_type'First, ri_id => Types.ri_id_type'First, authag_id => Types.authag_id_type'First, initiator => Types.init_type'First, nonce_loc => Types.Null_nonce_type, nonce_rem => Types.Null_nonce_type, sk_ike_auth_loc => Types.Null_key_type, sk_ike_auth_rem => Types.Null_key_type, creation_time => Types.rel_time_type'First, cc_not_before => Types.abs_time_type'First, cc_not_after => Types.abs_time_type'First); type Context_Array_Type is array (Types.ae_id_type) of ae_FSM_Type; Context_Array : Context_Array_Type := Context_Array_Type' (others => (Null_ae_FSM)); ------------------------------------------------------------------------- function Get_State (Id : Types.ae_id_type) return ae_State_Type is begin return Context_Array (Id).State; end Get_State; ------------------------------------------------------------------------- function Has_authag_id (Id : Types.ae_id_type; authag_id : Types.authag_id_type) return Boolean is (Context_Array (Id).authag_id = authag_id); ------------------------------------------------------------------------- function Has_ca_id (Id : Types.ae_id_type; ca_id : Types.ca_id_type) return Boolean is (Context_Array (Id).ca_id = ca_id); ------------------------------------------------------------------------- function Has_cc_not_after (Id : Types.ae_id_type; cc_not_after : Types.abs_time_type) return Boolean is (Context_Array (Id).cc_not_after = cc_not_after); ------------------------------------------------------------------------- function Has_cc_not_before (Id : Types.ae_id_type; cc_not_before : Types.abs_time_type) return Boolean is (Context_Array (Id).cc_not_before = cc_not_before); ------------------------------------------------------------------------- function Has_creation_time (Id : Types.ae_id_type; creation_time : Types.rel_time_type) return Boolean is (Context_Array (Id).creation_time = creation_time); ------------------------------------------------------------------------- function Has_dhag_id (Id : Types.ae_id_type; dhag_id : Types.dhag_id_type) return Boolean is (Context_Array (Id).dhag_id = dhag_id); ------------------------------------------------------------------------- function Has_iag_id (Id : Types.ae_id_type; iag_id : Types.iag_id_type) return Boolean is (Context_Array (Id).iag_id = iag_id); ------------------------------------------------------------------------- function Has_initiator (Id : Types.ae_id_type; initiator : Types.init_type) return Boolean is (Context_Array (Id).initiator = initiator); ------------------------------------------------------------------------- function Has_lc_id (Id : Types.ae_id_type; lc_id : Types.lc_id_type) return Boolean is (Context_Array (Id).lc_id = lc_id); ------------------------------------------------------------------------- function Has_nonce_loc (Id : Types.ae_id_type; nonce_loc : Types.nonce_type) return Boolean is (Context_Array (Id).nonce_loc = nonce_loc); ------------------------------------------------------------------------- function Has_nonce_rem (Id : Types.ae_id_type; nonce_rem : Types.nonce_type) return Boolean is (Context_Array (Id).nonce_rem = nonce_rem); ------------------------------------------------------------------------- function Has_ri_id (Id : Types.ae_id_type; ri_id : Types.ri_id_type) return Boolean is (Context_Array (Id).ri_id = ri_id); ------------------------------------------------------------------------- function Has_sk_ike_auth_loc (Id : Types.ae_id_type; sk_ike_auth_loc : Types.key_type) return Boolean is (Context_Array (Id).sk_ike_auth_loc = sk_ike_auth_loc); ------------------------------------------------------------------------- function Has_sk_ike_auth_rem (Id : Types.ae_id_type; sk_ike_auth_rem : Types.key_type) return Boolean is (Context_Array (Id).sk_ike_auth_rem = sk_ike_auth_rem); ------------------------------------------------------------------------- function Has_State (Id : Types.ae_id_type; State : ae_State_Type) return Boolean is (Context_Array (Id).State = State); ------------------------------------------------------------------------- pragma Warnings (Off, "condition can only be False if invalid values present"); function Is_Valid (Id : Types.ae_id_type) return Boolean is (Context_Array'First <= Id and Id <= Context_Array'Last); pragma Warnings (On, "condition can only be False if invalid values present"); ------------------------------------------------------------------------- procedure activate (Id : Types.ae_id_type) is begin Context_Array (Id).State := active; end activate; ------------------------------------------------------------------------- procedure authenticate (Id : Types.ae_id_type; ca_context : Types.ca_id_type; authag_id : Types.authag_id_type; ri_id : Types.ri_id_type; not_before : Types.abs_time_type; not_after : Types.abs_time_type) is begin Context_Array (Id).ca_id := ca_context; Context_Array (Id).authag_id := authag_id; Context_Array (Id).ri_id := ri_id; Context_Array (Id).cc_not_before := not_before; Context_Array (Id).cc_not_after := not_after; Context_Array (Id).State := authenticated; end authenticate; ------------------------------------------------------------------------- procedure create (Id : Types.ae_id_type; iag_id : Types.iag_id_type; dhag_id : Types.dhag_id_type; creation_time : Types.rel_time_type; initiator : Types.init_type; sk_ike_auth_loc : Types.key_type; sk_ike_auth_rem : Types.key_type; nonce_loc : Types.nonce_type; nonce_rem : Types.nonce_type) is begin Context_Array (Id).iag_id := iag_id; Context_Array (Id).dhag_id := dhag_id; Context_Array (Id).creation_time := creation_time; Context_Array (Id).initiator := initiator; Context_Array (Id).sk_ike_auth_loc := sk_ike_auth_loc; Context_Array (Id).sk_ike_auth_rem := sk_ike_auth_rem; Context_Array (Id).nonce_loc := nonce_loc; Context_Array (Id).nonce_rem := nonce_rem; Context_Array (Id).State := unauth; end create; ------------------------------------------------------------------------- function get_lc_id (Id : Types.ae_id_type) return Types.lc_id_type is begin return Context_Array (Id).lc_id; end get_lc_id; ------------------------------------------------------------------------- function get_nonce_loc (Id : Types.ae_id_type) return Types.nonce_type is begin return Context_Array (Id).nonce_loc; end get_nonce_loc; ------------------------------------------------------------------------- function get_nonce_rem (Id : Types.ae_id_type) return Types.nonce_type is begin return Context_Array (Id).nonce_rem; end get_nonce_rem; ------------------------------------------------------------------------- function get_ri_id (Id : Types.ae_id_type) return Types.ri_id_type is begin return Context_Array (Id).ri_id; end get_ri_id; ------------------------------------------------------------------------- function get_sk_ike_auth_loc (Id : Types.ae_id_type) return Types.key_type is begin return Context_Array (Id).sk_ike_auth_loc; end get_sk_ike_auth_loc; ------------------------------------------------------------------------- function get_sk_ike_auth_rem (Id : Types.ae_id_type) return Types.key_type is begin return Context_Array (Id).sk_ike_auth_rem; end get_sk_ike_auth_rem; ------------------------------------------------------------------------- procedure invalidate (Id : Types.ae_id_type) is begin Context_Array (Id).State := invalid; end invalidate; ------------------------------------------------------------------------- function is_initiator (Id : Types.ae_id_type) return Types.init_type is begin return Context_Array (Id).initiator; end is_initiator; ------------------------------------------------------------------------- procedure reset (Id : Types.ae_id_type) is begin Context_Array (Id).iag_id := Types.iag_id_type'First; Context_Array (Id).dhag_id := Types.dhag_id_type'First; Context_Array (Id).ca_id := Types.ca_id_type'First; Context_Array (Id).lc_id := Types.lc_id_type'First; Context_Array (Id).ri_id := Types.ri_id_type'First; Context_Array (Id).authag_id := Types.authag_id_type'First; Context_Array (Id).initiator := Types.init_type'First; Context_Array (Id).nonce_loc := Types.Null_nonce_type; Context_Array (Id).nonce_rem := Types.Null_nonce_type; Context_Array (Id).sk_ike_auth_loc := Types.Null_key_type; Context_Array (Id).sk_ike_auth_rem := Types.Null_key_type; Context_Array (Id).creation_time := Types.rel_time_type'First; Context_Array (Id).cc_not_before := Types.abs_time_type'First; Context_Array (Id).cc_not_after := Types.abs_time_type'First; Context_Array (Id).State := clean; end reset; ------------------------------------------------------------------------- procedure sign (Id : Types.ae_id_type; lc_id : Types.lc_id_type) is begin Context_Array (Id).lc_id := lc_id; Context_Array (Id).State := loc_auth; end sign; end Tkmrpc.Contexts.ae;
30.815013
76
0.542631
cbfd9533560fd848b43c8a4cee16d9f4e0cbb4ab
2,430
adb
Ada
tests/src/testsuite-decode.adb
Fabien-Chouteau/COBS
155ce5c2ecb4fffdac31df9dccd1a0d0c5916c2b
[ "MIT" ]
null
null
null
tests/src/testsuite-decode.adb
Fabien-Chouteau/COBS
155ce5c2ecb4fffdac31df9dccd1a0d0c5916c2b
[ "MIT" ]
null
null
null
tests/src/testsuite-decode.adb
Fabien-Chouteau/COBS
155ce5c2ecb4fffdac31df9dccd1a0d0c5916c2b
[ "MIT" ]
null
null
null
with Ada.Unchecked_Deallocation; with Test_Utils.Abstract_Decoder.COBS_Simple; with Test_Utils.Abstract_Decoder.COBS_Stream; with Testsuite.Decode.Basic_Tests; with Testsuite.Decode.Multiframe_Tests; package body Testsuite.Decode is Kind : Decoder_Kind := Decoder_Kind'First; ---------------------- -- Set_Decoder_Kind -- ---------------------- procedure Set_Decoder_Kind (K : Decoder_Kind) is begin Kind := K; end Set_Decoder_Kind; ------------ -- Set_Up -- ------------ overriding procedure Set_Up (Test : in out Decoder_Fixture) is begin Test.Kind := Kind; Test.Decoder := Create_Decoder (Kind); end Set_Up; --------------- -- Tear_Down -- --------------- overriding procedure Tear_Down (Test : in out Decoder_Fixture) is begin Free_Decoder (Test.Decoder); end Tear_Down; --------------- -- Add_Tests -- --------------- procedure Add_Tests (Suite : in out AUnit.Test_Suites.Test_Suite'Class) is begin Testsuite.Decode.Basic_Tests.Add_Tests (Suite); if False then Testsuite.Decode.Multiframe_Tests.Add_Tests (Suite); end if; end Add_Tests; -------------------- -- Create_Decoder -- -------------------- function Create_Decoder (K : Decoder_Kind) return not null Test_Utils.Abstract_Decoder.Any_Acc is use Test_Utils.Abstract_Decoder; begin case K is when Simple => return new COBS_Simple.Instance; when Simple_In_Place => return new COBS_Simple.Instance (True); when Stream => return new COBS_Stream.Instance; end case; end Create_Decoder; ------------------ -- Free_Decoder -- ------------------ procedure Free_Decoder (Dec : in out Test_Utils.Abstract_Decoder.Any_Acc) is use Test_Utils.Abstract_Decoder; procedure Free is new Ada.Unchecked_Deallocation (COBS_Simple.Instance, COBS_Simple.Acc); procedure Free is new Ada.Unchecked_Deallocation (COBS_Stream.Instance, COBS_Stream.Acc); begin if Dec.all in COBS_Simple.Instance'Class then Free (COBS_Simple.Acc (Dec)); elsif Dec.all in COBS_Stream.Instance'Class then Free (COBS_Stream.Acc (Dec)); else raise Program_Error; end if; end Free_Decoder; end Testsuite.Decode;
23.592233
79
0.599588
c5b5c2c6264ad04b7718404f942d19e38eee742c
6,688
ads
Ada
src/gen/cups-bits_siginfo_h.ads
persan/a-cups
f011dc18384de9afd07a53b67295974d8005cf21
[ "Apache-2.0" ]
null
null
null
src/gen/cups-bits_siginfo_h.ads
persan/a-cups
f011dc18384de9afd07a53b67295974d8005cf21
[ "Apache-2.0" ]
null
null
null
src/gen/cups-bits_siginfo_h.ads
persan/a-cups
f011dc18384de9afd07a53b67295974d8005cf21
[ "Apache-2.0" ]
null
null
null
pragma Ada_2005; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with System; limited with CUPS.bits_pthreadtypes_h; with CUPS.bits_types_h; private package CUPS.bits_siginfo_h is -- unsupported macro: sigev_notify_function _sigev_un._sigev_thread._function -- unsupported macro: sigev_notify_attributes _sigev_un._sigev_thread._attribute -- unsupported macro: SIGEV_SIGNAL SIGEV_SIGNAL -- unsupported macro: SIGEV_NONE SIGEV_NONE -- unsupported macro: SIGEV_THREAD SIGEV_THREAD -- unsupported macro: SIGEV_THREAD_ID SIGEV_THREAD_ID -- siginfo_t, sigevent and constants. Linux x86-64 version. -- Copyright (C) 2012-2016 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library; if not, see -- <http://www.gnu.org/licenses/>. -- Type for data associated with a signal. type sigval (discr : unsigned := 0) is record case discr is when 0 => sival_int : aliased int; -- bits/siginfo.h:34 when others => sival_ptr : System.Address; -- bits/siginfo.h:35 end case; end record; pragma Convention (C_Pass_By_Copy, sigval); pragma Unchecked_Union (sigval); -- bits/siginfo.h:32 subtype sigval_t is sigval; -- si_utime and si_stime must be 4 byte aligned for x32 to match the -- kernel. We align siginfo_t to 8 bytes so that si_utime and si_stime -- are actually aligned to 8 bytes since their offsets are multiple of -- 8 bytes. -- Signal number. -- If non-zero, an errno value associated with -- this signal, as defined in <errno.h>. -- Signal code. -- kill(). -- Sending process ID. -- Real user ID of sending process. -- POSIX.1b timers. -- Timer ID. -- Overrun count. -- Signal value. -- POSIX.1b signals. -- Sending process ID. -- Real user ID of sending process. -- Signal value. -- SIGCHLD. -- Which child. -- Real user ID of sending process. -- Exit value or signal. -- SIGILL, SIGFPE, SIGSEGV, SIGBUS. -- Faulting insn/memory ref. -- Valid LSB of the reported address. -- SIGPOLL. -- Band event for SIGPOLL. -- SIGSYS. -- Calling user insn. -- Triggering system call number. -- AUDIT_ARCH_* of syscall. -- X/Open requires some more fields with fixed names. -- Values for `si_code'. Positive values are reserved for kernel-generated -- signals. -- Sent by asynch name lookup completion. -- Sent by tkill. -- Sent by queued SIGIO. -- Sent by AIO completion. -- Sent by real time mesq state change. -- Sent by timer expiration. -- Sent by sigqueue. -- Sent by kill, sigsend. -- Send by kernel. -- `si_code' values for SIGILL signal. -- Illegal opcode. -- Illegal operand. -- Illegal addressing mode. -- Illegal trap. -- Privileged opcode. -- Privileged register. -- Coprocessor error. -- Internal stack error. -- `si_code' values for SIGFPE signal. -- Integer divide by zero. -- Integer overflow. -- Floating point divide by zero. -- Floating point overflow. -- Floating point underflow. -- Floating point inexact result. -- Floating point invalid operation. -- Subscript out of range. -- `si_code' values for SIGSEGV signal. -- Address not mapped to object. -- Invalid permissions for mapped object. -- `si_code' values for SIGBUS signal. -- Invalid address alignment. -- Non-existant physical address. -- Object specific hardware error. -- Hardware memory error: action required. -- Hardware memory error: action optional. -- `si_code' values for SIGTRAP signal. -- Process breakpoint. -- Process trace trap. -- `si_code' values for SIGCHLD signal. -- Child has exited. -- Child was killed. -- Child terminated abnormally. -- Traced child has trapped. -- Child has stopped. -- Stopped child has continued. -- `si_code' values for SIGPOLL signal. -- Data input available. -- Output buffers available. -- Input message available. -- I/O error. -- High priority input available. -- Device disconnected. -- Structure to transport application-defined values with signals. -- Forward declaration. type sigevent; type anon_33; type anon_34 is record u_function : access procedure (arg1 : sigval_t); -- bits/siginfo.h:336 u_attribute : access CUPS.bits_pthreadtypes_h.pthread_attr_t; -- bits/siginfo.h:337 end record; pragma Convention (C_Pass_By_Copy, anon_34); type sigevent_u_pad_array is array (0 .. 11) of aliased int; type anon_33 (discr : unsigned := 0) is record case discr is when 0 => u_pad : aliased sigevent_u_pad_array; -- bits/siginfo.h:328 when 1 => u_tid : aliased CUPS.bits_types_h.uu_pid_t; -- bits/siginfo.h:332 when others => u_sigev_thread : aliased anon_34; -- bits/siginfo.h:338 end case; end record; pragma Convention (C_Pass_By_Copy, anon_33); pragma Unchecked_Union (anon_33);type sigevent is record sigev_value : aliased sigval_t; -- bits/siginfo.h:322 sigev_signo : aliased int; -- bits/siginfo.h:323 sigev_notify : aliased int; -- bits/siginfo.h:324 u_sigev_un : aliased anon_33; -- bits/siginfo.h:339 end record; pragma Convention (C_Pass_By_Copy, sigevent); -- bits/siginfo.h:320 -- When SIGEV_SIGNAL and SIGEV_THREAD_ID set, LWP ID of the -- thread to receive the signal. -- Function to start. -- Thread attributes. subtype sigevent_t is sigevent; -- POSIX names to access some of the members. -- `sigev_notify' values. -- Notify via signal. -- Other notification: meaningless. -- Deliver via thread creation. -- Send signal to specific thread. end CUPS.bits_siginfo_h;
37.155556
90
0.656549
0e0a74d1da85c4a563f6ed25b1845b2f1fdf9ac8
6,260
adb
Ada
bb-runtimes/src/s-textio__tms570-sci.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/src/s-textio__tms570-sci.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/src/s-textio__tms570-sci.adb
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . T E X T _ I O -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Minimal version of Text_IO body for use on TMS570 family of MCUs, using -- SCI1/LIN1 -- @design -- This package is in charge of sending characters to the remote host -- machine. The application output is sent through the UART, from which the -- host machine extracts the application output. -- -- The TMS570 runtime uses the SCI1/LIN1 module, configured for 115200 baud -- rate, one stop bit, no parity. with Interfaces; use Interfaces; -- @design used for the 32-bit integers definition with System.Board_Parameters; use System.Board_Parameters; -- @design used to retrieve the system clock, used to calculate the prescaler -- values to achieve the desired baud rate. package body System.Text_IO is SCI_BASE : constant := 16#FFF7_E400#; -- SCI base address SCIGCR0 : Unsigned_32; for SCIGCR0'Address use SCI_BASE + 16#00#; pragma Volatile (SCIGCR0); pragma Import (Ada, SCIGCR0); SCIGCR1 : Unsigned_32; for SCIGCR1'Address use SCI_BASE + 16#04#; pragma Volatile (SCIGCR1); pragma Import (Ada, SCIGCR1); SCIFLR : Unsigned_32; for SCIFLR'Address use SCI_BASE + 16#1C#; pragma Volatile (SCIFLR); pragma Import (Ada, SCIFLR); TX_READY : constant := 16#100#; RX_READY : constant := 16#200#; BRS : Unsigned_32; for BRS'Address use SCI_BASE + 16#2C#; pragma Volatile (BRS); pragma Import (Ada, BRS); SCIFORMAT : Unsigned_32; for SCIFORMAT'Address use SCI_BASE + 16#28#; pragma Volatile (SCIFORMAT); pragma Import (Ada, SCIFORMAT); SCIRD : Unsigned_32; for SCIRD'Address use SCI_BASE + 16#34#; pragma Volatile (SCIRD); pragma Import (Ada, SCIRD); SCITD : Unsigned_32; for SCITD'Address use SCI_BASE + 16#38#; pragma Volatile (SCITD); pragma Import (Ada, SCITD); SCIPIO0 : Unsigned_32; for SCIPIO0'Address use SCI_BASE + 16#3C#; pragma Volatile (SCIPIO0); pragma Import (Ada, SCIPIO0); SCIPIO8 : Unsigned_32; for SCIPIO8'Address use SCI_BASE + 16#5C#; pragma Volatile (SCIPIO8); pragma Import (Ada, SCIPIO8); --------- -- Get -- --------- function Get return Character is begin return Character'Val (SCIRD and 16#FF#); end Get; ---------------- -- Initialize -- ---------------- procedure Initialize is begin -- Do not reinitialize the SCI, if it is already initialized if (SCIGCR0 and 1) = 0 then -- Bring out of reset SCIGCR0 := 1; -- 8n1, enable RX and TX, async, idle-line mode, SWnRST, internal clk -- NOTE: SPNU499A (Nov 2012) is incorrect on COMM MODE: Idle line -- mode value is 0. SCIGCR1 := 16#03_00_00_22#; -- Baud rate. VCLK = RTI1CLK declare Baud : constant := 115200; P : constant := VCLK_Frequency / (16 * Baud) - 1; M : constant := (VCLK_Frequency / Baud) rem 16; begin BRS := P + M * 2**24; end; -- 8 bits SCIFORMAT := 7; -- Enable Tx and Rx pins, pull-up SCIPIO0 := 2#110#; SCIPIO8 := 2#110#; -- Enable SCI SCIGCR1 := SCIGCR1 or 16#80#; end if; Initialized := True; end Initialize; ----------------- -- Is_Tx_Ready -- ----------------- function Is_Tx_Ready return Boolean is ((SCIFLR and TX_READY) /= 0); ----------------- -- Is_Rx_Ready -- ----------------- function Is_Rx_Ready return Boolean is ((SCIFLR and RX_READY) /= 0); --------- -- Put -- --------- procedure Put (C : Character) is begin SCITD := Character'Pos (C); end Put; ---------------------------- -- Use_Cr_Lf_For_New_Line -- ---------------------------- function Use_Cr_Lf_For_New_Line return Boolean is begin return True; end Use_Cr_Lf_For_New_Line; end System.Text_IO;
34.20765
79
0.507188
184e7a666b0be5ac0a5c28176b6b5944bf56ab2f
1,786
ads
Ada
drivers/auto_differentiation-integrator.ads
sciencylab/lagrangian-solver
0f77265c1105658a27a9fa316bf5f046ac233774
[ "MIT" ]
null
null
null
drivers/auto_differentiation-integrator.ads
sciencylab/lagrangian-solver
0f77265c1105658a27a9fa316bf5f046ac233774
[ "MIT" ]
null
null
null
drivers/auto_differentiation-integrator.ads
sciencylab/lagrangian-solver
0f77265c1105658a27a9fa316bf5f046ac233774
[ "MIT" ]
null
null
null
with Ada.Text_IO; use Ada.Text_IO; package Auto_Differentiation.Integrator is type Variable (N2 : Nat) is record X : Real_Vector (1 .. N2); T : Real; end record; type Control_Type is record N : Nat; Dt : Real := 1.0; Eps : Real := 1.0e-10; Err : Real := 1.0; K : Nat := 9; end record; procedure FJ (Lagrangian : not null access function (X : Real_Vector; N : Nat) return AD_Type; Var : in Variable; Control : in Control_Type; Q : in Real_Vector; F : out Sparse_Vector; J : out Sparse_Matrix); function Collocation (Lagrangian : not null access function (X : Real_Vector; N : Nat) return AD_Type; Var : in Variable; Control : in out Control_Type) return Real_Vector with Pre => Is_Setup = True; function Bogacki_Shampine (Hamiltonian : not null access function (X : Real_Vector; N : Nat) return AD_Type; Var : in Variable; Control : in out Control_Type) return Real_Vector; procedure Update (Hamiltonian : not null access function (X : Real_Vector; N : Nat) return AD_Type; Var : in out Variable; Control : in out Control_Type); procedure Print_Data (Var : in Variable; Hamiltonian : not null access function (X : Real_Vector; N : Nat) return AD_Type); procedure Print_XYZ (File : in File_Type; Var : in Variable); procedure Print_Data_L (File : in File_Type; Var : in Variable); procedure Setup (N : in Nat; K : in Nat); function Is_Setup return Boolean; private MatA, MatB, MatC, MatD : Sparse_Matrix; end Auto_Differentiation.Integrator;
26.264706
65
0.595185
d0791325e8fa619425f830ad7280c7785ecf0c0b
20,810
adb
Ada
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d/conv2d/hls_target/.autopilot/db/linebuffer_1.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-06-18T16:51:39.000Z
2020-06-18T16:51:39.000Z
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d/conv2d/hls_target/.autopilot/db/linebuffer_1.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
null
null
null
apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d/conv2d/hls_target/.autopilot/db/linebuffer_1.sched.adb
dillonhuff/Halide-HLS
e9f4c3ac7915e5a52f211ce65004ae17890515a0
[ "MIT" ]
1
2020-03-18T00:43:22.000Z
2020-03-18T00:43:22.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>linebuffer_1</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>in_axi_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_axi_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>in_axi_stream_V_last_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>in_axi_stream.V.last.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_3"> <Value> <Obj> <type>1</type> <id>3</id> <name>out_stream_V_value_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>out_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>288</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_4"> <Value> <Obj> <type>0</type> <id>7</id> <name>in_stream_V_value_V</name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d</fileDirectory> <lineNumber>545</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d</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>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>545</second> </item> </second> </item> </inlineStackInfo> <originalName>in_stream.V.value.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>16</item> </oprand_edges> <opcode>alloca</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>11</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>18</item> <item>19</item> <item>20</item> <item>21</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>12</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d</fileDirectory> <lineNumber>556</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>556</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>107</item> <item>108</item> </oprand_edges> <opcode>call</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>13</id> <name></name> <fileName>../../../lib_files/Linebuffer.h</fileName> <fileDirectory>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d</fileDirectory> <lineNumber>557</lineNumber> <contextFuncName>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/dhuff/Halide-HLS/apps/hls_examples/camera_ready_synthesis/app_files/big_apps_8_shifts/conv2d</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>../../../lib_files/Linebuffer.h</first> <second>linebuffer&amp;lt;1920, 1080, 1, 1, 1, 1, 1, 1, 3, 3, 1, 1, unsigned int&amp;gt;</second> </first> <second>557</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_8"> <Value> <Obj> <type>2</type> <id>15</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_9"> <Value> <Obj> <type>2</type> <id>17</id> <name>linebuffer_Loop_1_pr</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:linebuffer_Loop_1_pr&gt;</content> </item> <item class_id_reference="16" object_id="_10"> <Value> <Obj> <type>2</type> <id>22</id> <name>linebuffer</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:linebuffer&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_11"> <Obj> <type>3</type> <id>14</id> <name>linebuffer.1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>7</item> <item>11</item> <item>12</item> <item>13</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_12"> <id>16</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_13"> <id>18</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_14"> <id>19</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_15"> <id>20</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_16"> <id>21</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_17"> <id>23</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_18"> <id>24</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_19"> <id>25</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_20"> <id>107</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_21"> <id>108</id> <edge_type>4</edge_type> <source_obj>11</source_obj> <sink_obj>12</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_22"> <mId>1</mId> <mTag>linebuffer.1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>14</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2077921</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>1</mIsDfPipe> <mDfPipe class_id="23" tracking_level="1" version="0" object_id="_23"> <port_list class_id="24" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </port_list> <process_list class_id="25" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_24"> <type>0</type> <name>linebuffer_Loop_1_pr_U0</name> <ssdmobj_id>11</ssdmobj_id> <pins class_id="27" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_25"> <port class_id="29" tracking_level="1" version="0" object_id="_26"> <name>in_axi_stream_V_value_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id="30" tracking_level="1" version="0" object_id="_27"> <type>0</type> <name>linebuffer_Loop_1_pr_U0</name> <ssdmobj_id>11</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_28"> <port class_id_reference="29" object_id="_29"> <name>in_axi_stream_V_last_V</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_27"></inst> </item> <item class_id_reference="28" object_id="_30"> <port class_id_reference="29" object_id="_31"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_27"></inst> </item> </pins> </item> <item class_id_reference="26" object_id="_32"> <type>0</type> <name>linebuffer_U0</name> <ssdmobj_id>12</ssdmobj_id> <pins> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_33"> <port class_id_reference="29" object_id="_34"> <name>in_stream_V_value_V</name> <dir>0</dir> <type>0</type> </port> <inst class_id_reference="30" object_id="_35"> <type>0</type> <name>linebuffer_U0</name> <ssdmobj_id>12</ssdmobj_id> </inst> </item> <item class_id_reference="28" object_id="_36"> <port class_id_reference="29" object_id="_37"> <name>out_stream_V_value_V</name> <dir>0</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_35"></inst> </item> </pins> </item> </process_list> <channel_list class_id="31" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="32" tracking_level="1" version="0" object_id="_38"> <type>1</type> <name>in_stream_V_value_V</name> <ssdmobj_id>7</ssdmobj_id> <ctype>0</ctype> <depth>1</depth> <bitwidth>32</bitwidth> <source class_id_reference="28" object_id="_39"> <port class_id_reference="29" object_id="_40"> <name>in</name> <dir>3</dir> <type>0</type> </port> <inst class_id_reference="30" object_id_reference="_27"></inst> </source> <sink class_id_reference="28" object_id="_41"> <port class_id_reference="29" object_id="_42"> <name>out</name> <dir>3</dir> <type>1</type> </port> <inst class_id_reference="30" object_id_reference="_35"></inst> </sink> </item> </channel_list> <net_list class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </net_list> </mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="36" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="37" tracking_level="0" version="0"> <first>7</first> <second class_id="38" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>0</first> <second>1</second> </second> </item> <item> <first>12</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>13</first> <second> <first>3</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="39" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>14</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>3</second> </second> </item> </bblk_ent_exit> <regions class_id="42" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="43" tracking_level="1" version="0" object_id="_43"> <region_name>linebuffer.1</region_name> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>14</item> </basic_blocks> <nodes> <count>10</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> <item>7</item> <item>8</item> <item>9</item> <item>10</item> <item>11</item> <item>12</item> <item>13</item> </nodes> <anchor_node>-1</anchor_node> <region_type>16</region_type> <interval>0</interval> <pipe_depth>0</pipe_depth> </item> </regions> <dp_fu_nodes class_id="44" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_fu_nodes> <dp_fu_nodes_expression class_id="45" 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="46" 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="47" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_port_io_nodes> <port2core class_id="48" 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>
30.02886
135
0.614753
18453623aab4bf6a3ebf74d80be035e7ec259ce0
3,627
adb
Ada
ada/core/agar-init.adb
charlesdaniels/libagar
099ce716e2ca01a7904b23f22610bf589295f5b5
[ "BSD-2-Clause" ]
286
2017-07-31T20:05:16.000Z
2022-03-26T20:26:24.000Z
ada/core/agar-init.adb
kalatestimine/libagar
f830265ad00a82d4cddd8b59943bd3887ebb1486
[ "BSD-2-Clause" ]
67
2017-08-30T18:56:21.000Z
2021-09-08T03:38:20.000Z
ada/core/agar-init.adb
kalatestimine/libagar
f830265ad00a82d4cddd8b59943bd3887ebb1486
[ "BSD-2-Clause" ]
31
2017-08-14T13:34:12.000Z
2022-03-14T15:33:49.000Z
------------------------------------------------------------------------------ -- AGAR CORE LIBRARY -- -- A G A R . C O R E . I N I T -- -- B o d y -- -- -- -- Copyright (c) 2018-2019, Julien Nadeau Carriere ([email protected]) -- -- Copyright (c) 2010, coreland ([email protected]) -- -- -- -- Permission to use, copy, modify, and/or distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Agar.Init is procedure Get_Version (Major : out Natural; Minor : out Natural; Patch : out Natural) is Version : aliased Agar_Version; begin AG_GetVersion (Version'Unchecked_Access); Major := Natural (Version.Major); Minor := Natural (Version.Minor); Patch := Natural (Version.Patch); end Get_Version; function Init_Core (Program_Name : in String; Verbose : in Boolean := False; Create_Directory : in Boolean := False; Software_Timers : in Boolean := False) return Boolean is Ch_Name : aliased C.char_array := C.To_C (Program_Name); C_Flags : C.unsigned := 0; begin if Verbose then C_Flags := C_Flags or AG_VERBOSE; end if; if Create_Directory then C_Flags := C_Flags or AG_CREATE_DATADIR; end if; if Software_Timers then C_Flags := C_Flags or AG_SOFT_TIMERS; end if; return 0 = AG_InitCore (Progname => CS.To_Chars_Ptr (Ch_Name'Unchecked_Access), Flags => C_Flags); end; function Init_Core (Verbose : in Boolean := False; Create_Directory : in Boolean := False; Software_Timers : in Boolean := False) return Boolean is C_Flags : C.unsigned := 0; begin if Verbose then C_Flags := C_Flags or AG_VERBOSE; end if; if Create_Directory then C_Flags := C_Flags or AG_CREATE_DATADIR; end if; if Software_Timers then C_Flags := C_Flags or AG_SOFT_TIMERS; end if; return 0 = AG_InitCore (Progname => CS.Null_Ptr, Flags => C_Flags); end; -- -- Proxy procedure to call 'Atexit_Callback' from C. -- procedure At_Exit_Proxy with Convention => C; Atexit_Callback : Atexit_Func_Access := null; procedure At_Exit_Proxy is begin if Atexit_Callback /= null then Atexit_Callback.all; end if; end At_Exit_Proxy; procedure At_Exit (Callback : Atexit_Func_Access) is begin Atexit_Callback := Callback; AG_AtExitFunc (At_Exit_Proxy'Access); end At_Exit; end Agar.Init;
39
78
0.562724
cb831c84878de645e50c76f6b8530f3ce4f223a7
2,920
ads
Ada
examples/RPG/src/game_assets-character.ads
Fabien-Chouteau/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
13
2018-07-31T12:11:46.000Z
2021-11-19T14:16:46.000Z
examples/RPG/src/game_assets-character.ads
gregkrsak/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
1
2018-10-22T21:41:59.000Z
2018-10-22T21:41:59.000Z
examples/RPG/src/game_assets-character.ads
gregkrsak/GESTE
5ac814906fdb49d880db60cbb17279cbbb777336
[ "BSD-3-Clause" ]
4
2020-07-03T10:03:13.000Z
2022-02-10T03:35:07.000Z
with GESTE; with GESTE.Grid; pragma Style_Checks (Off); package Game_Assets.character is -- character Width : constant := 2; Height : constant := 4; Tile_Width : constant := 16; Tile_Height : constant := 16; -- Down1 package Down1 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 243, 244, 245, 246), ( 247, 248, 249, 250)) ; end Down1; -- Down2 package Down2 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 251, 252, 253, 254), ( 255, 256, 257, 258)) ; end Down2; -- Down3 package Down3 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 259, 260, 261, 262), ( 263, 264, 265, 266)) ; end Down3; -- Left1 package Left1 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 267, 268, 269, 270), ( 271, 272, 273, 274)) ; end Left1; -- Left2 package Left2 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 275, 276, 277, 278), ( 279, 280, 281, 282)) ; end Left2; -- Left3 package Left3 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 283, 284, 285, 286), ( 287, 288, 289, 290)) ; end Left3; -- Right1 package Right1 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 291, 292, 293, 294), ( 295, 296, 297, 298)) ; end Right1; -- Right2 package Right2 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 299, 300, 301, 302), ( 303, 304, 305, 306)) ; end Right2; -- Right3 package Right3 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 307, 308, 309, 310), ( 311, 312, 313, 314)) ; end Right3; -- Up1 package Up1 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 315, 316, 317, 318), ( 319, 320, 321, 322)) ; end Up1; -- Up2 package Up2 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 323, 324, 325, 326), ( 327, 328, 329, 330)) ; end Up2; -- Up3 package Up3 is Width : constant := 2; Height : constant := 2; Data : aliased GESTE.Grid.Grid_Data := (( 331, 332, 333, 334), ( 335, 336, 337, 338)) ; end Up3; end Game_Assets.character;
24.132231
46
0.504452
203e41fe53836d0681f817549e40c9e057141681
1,329
ads
Ada
tier-1/xcb/source/thin/xcb-xcb_glx_bad_window_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
2
2015-11-12T11:16:20.000Z
2021-08-24T22:32:04.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_bad_window_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
1
2018-06-05T05:19:35.000Z
2021-11-20T01:13:23.000Z
tier-1/xcb/source/thin/xcb-xcb_glx_bad_window_error_t.ads
charlie5/cBound
741be08197a61ad9c72553e3302f3b669902216d
[ "0BSD" ]
null
null
null
-- This file is generated by SWIG. Please do not modify by hand. -- with xcb.xcb_glx_generic_error_t; with Interfaces.C; with Interfaces.C.Pointers; package xcb.xcb_glx_bad_window_error_t is -- Item -- subtype Item is xcb.xcb_glx_generic_error_t.Item; -- Item_Array -- type Item_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_glx_bad_window_error_t .Item; -- Pointer -- package C_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_bad_window_error_t.Item, Element_Array => xcb.xcb_glx_bad_window_error_t.Item_Array, Default_Terminator => (others => <>)); subtype Pointer is C_Pointers.Pointer; -- Pointer_Array -- type Pointer_Array is array (Interfaces.C.size_t range <>) of aliased xcb.xcb_glx_bad_window_error_t .Pointer; -- Pointer_Pointer -- package C_Pointer_Pointers is new Interfaces.C.Pointers (Index => Interfaces.C.size_t, Element => xcb.xcb_glx_bad_window_error_t.Pointer, Element_Array => xcb.xcb_glx_bad_window_error_t.Pointer_Array, Default_Terminator => null); subtype Pointer_Pointer is C_Pointer_Pointers.Pointer; end xcb.xcb_glx_bad_window_error_t;
27.6875
79
0.681716
18c7afbd3f7fd45846b4282a3c22b0095122d5cb
3,906
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c97302a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c97302a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c97302a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C97302A.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 WHENEVER AN INDEX IS PRESENT IN A TIMED_ENTRY_CALL, IT -- IS EVALUATED BEFORE ANY PARAMETER ASSOCIATIONS ARE EVALUATED, AND -- PARAMETER ASSOCIATIONS ARE EVALUATED BEFORE THE DELAY EXPRESSION. -- THEN A RENDEZVOUS IS ATTEMPTED. -- RJW 3/31/86 with Impdef; WITH REPORT; USE REPORT; WITH CALENDAR; USE CALENDAR; PROCEDURE C97302A IS INDEX_COMPUTED : BOOLEAN := FALSE; PARAM_COMPUTED : BOOLEAN := FALSE; DELAY_COMPUTED : BOOLEAN := FALSE; BEGIN TEST ("C97302A", "CHECK THAT WHENEVER AN INDEX IS PRESENT IN " & "A TIMED_ENTRY_CALL, IT IS EVALUATED BEFORE " & "ANY PARAMETER ASSOCIATIONS ARE EVALUATED, " & "AND PARAMETER ASSOCIATIONS ARE EVALUATED " & "BEFORE THE DELAY EXPRESSION" ); DECLARE WAIT_TIME : DURATION := 3.0 * Impdef.One_Second; TYPE SHORT IS RANGE 10 .. 20; TASK T IS ENTRY DO_IT_NOW_OR_WAIT ( SHORT ) ( DID_YOU_DO_IT : IN BOOLEAN ); ENTRY KEEP_ALIVE; END T; TASK BODY T IS BEGIN ACCEPT KEEP_ALIVE; END T; FUNCTION F1 (X : SHORT) RETURN SHORT IS BEGIN INDEX_COMPUTED := TRUE; RETURN (15); END F1; FUNCTION F2 RETURN BOOLEAN IS BEGIN IF INDEX_COMPUTED THEN NULL; ELSE FAILED ( "INDEX NOT EVALUATED FIRST" ); END IF; PARAM_COMPUTED := TRUE; RETURN (FALSE); END F2; FUNCTION F3 RETURN DURATION IS BEGIN IF PARAM_COMPUTED THEN NULL; ELSE FAILED ( "PARAMETERS NOT EVALUATED BEFORE DELAY " & "EXPRESSION" ); END IF; DELAY_COMPUTED := TRUE; RETURN (WAIT_TIME); END; BEGIN SELECT T.DO_IT_NOW_OR_WAIT ( F1 (15) ) ( NOT F2 ); FAILED ("RENDEZVOUS OCCURRED"); OR DELAY F3; END SELECT; T.KEEP_ALIVE; END; -- END OF BLOCK CONTAINING THE ENTRY CALLS. IF DELAY_COMPUTED THEN NULL; ELSE FAILED( "DELAY EXPRESSION NOT EVALUATED" ); END IF; RESULT; END C97302A;
33.384615
79
0.539171
cb8de71de860b01c0da05f99a32a6525e2733006
9,653
adb
Ada
1A/S5/PIM/projet/src/display_shell.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
4
2020-05-02T12:32:32.000Z
2022-01-12T20:20:35.000Z
1A/S5/PIM/projet/src/display_shell.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
2
2021-01-14T20:03:26.000Z
2022-01-30T01:10:00.000Z
1A/S5/PIM/projet/src/display_shell.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
13
2020-11-11T21:28:11.000Z
2022-02-19T13:54:22.000Z
------------------------------------------------------------------------------- -- Fichier : display_shell.adb -- Auteur : MOUDDENE Hamza & CAZES Noa -- Objectif : Implantation du module Display_Shell -- Crée : Dimanche Nov 25 2019 -------------------------------------------------------------------------------- with Ada.Text_IO; use Ada.Text_IO; with Ada.Characters.Latin_1; use Ada.Characters.Latin_1; with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Ada.Text_IO.Unbounded_IO; use Ada.Text_IO.Unbounded_IO; -- RED ESC & "[31m" -- GREEN ESC & "[32m" -- BLUE ESC & "[34m" -- RESET ESC & "[0m" package body Display_Shell is -- Afficher la barre d'initialisation. procedure Init_Bar is begin New_Line; Put_Line ("*****************************************************************************************************"); New_Line; Put_Line (" " & ESC & "[32m" & "ARBRE GÉNÉALOGIQUE" & ESC & "[0m"); New_Line; Put_Line ("*****************************************************************************************************"); New_Line; Put_Line ("Téléchargement programme ..."); New_Line; end Init_Bar; -- Afficher le menu principal. procedure Display_Menu is begin New_Line; Put_Line (" MENU PRINCIPAL"); New_Line; Put_Line (ESC & "[31m" & "0)- Pour quitter" & ESC & "[0m"); Put_Line (ESC & "[34m" & "1)- Créer un arbre minimal"); Put_Line ("2)- Ajouter un parent"); Put_Line ("3)- Obtenir le nombre d'ancêtres"); Put_Line ("4)- Obtenir l'ensemble des ancêtres situés à une certaine génération"); Put_Line ("5)- Afficher l'arbre génealogqiue"); Put_Line ("6)- Supprimer l'arbre généalogique"); Put_Line ("7)- Obtenir l'ensemble des individus qui n'ont qu'un parent connu"); Put_Line ("8)- Obtenir l'ensemble des individus dont les deux parents sont connus"); Put_Line ("9)- Obtenir l'ensemble des individus dont les deux parents sont inconnus"); Put_Line ("10)- Identifier les ancêtres sur n générations données"); Put_Line ("11)- Vérifier que deux individus n et m ont un ou plusieurs ancêtres homonymes"); Put_Line ("12)- Obtenir l'ensemble des demi-frères"); Put_Line ("13)- Obtenir l'ensemble des conjoints" & ESC & "[0m"); New_Line; end Display_Menu; -- Afficher une erreur quand l'arbre existe déja dans la foret. procedure Display_TREE_IN_FOREST is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ :" & ESC & "[0m" & " L'ID entré est dèja racine d'un arbre existant dans la foret."); end Display_TREE_IN_FOREST; -- Afficher un message quand une fonction ou procedure lève une exception. procedure Display_Exception (Message : in String; Restart : in Integer) is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ : " & ESC & "[0m" & Message); New_Line; if (Restart = 0) then Put_Line ("Réessayez encore une fois avec un autre ID."); else Put_Line ("Retour au menu principal."); end if; end Display_Exception; -- Afficher un message quand l'exéctuion d'une procédure ou fonction réussit. procedure Display_Success (Message : in String) is begin New_Line; Put_Line (ESC & "[32m" & "RÉUSSI : " & ESC & "[0m" & Message & " est exécutée avec succés."); New_Line; Put_Line ("Retour au menu principal"); end Display_Success; -- Afficher un message quand la création de l'arbre minimal réussi. procedure Display_Success_Minimal_Tree_Ceation is begin New_Line; Put_Line (ESC & "[32m" & "RÉUSSI : " & ESC & "[0m" & "La création d'arbre minimal est exécutée avec succés."); New_Line; Put_Line ("Retour au menu principal"); end Display_Success_Minimal_Tree_Ceation; -- Afficher un message quand creer arbre minimal lève l'exception ARBRE_NON_VIDE_EXCEPTION. procedure Display_ARBRE_NON_VIDE_EXCEPTION is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ :" & ESC & "[0m" & " L'arbre passé en paramètre n'est pas vide. L'opération Créer un arbre minimal a échoué."); New_Line; Put_Line ("Retour au menu principal"); end Display_ARBRE_NON_VIDE_EXCEPTION; -- Afficher un message quand ajouter parent réussit. procedure Display_Success_Add_Parent is begin New_Line; Put_Line (ESC & "[32m" & "RÉUSSI : " & ESC & "[0m" & "Ajout du parent est fait avec succés."); New_Line; Put_Line ("Retour au menu principal"); end Display_Success_Add_Parent; -- Afficher un message quand ajouter parent lève l'exception ARBRE_VIDE_EXCEPTION. procedure Display_ARBRE_VIDE_EXCEPTION (Message : in String; Restart : in Integer) is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ : " & ESC & "[0m" & "L'arbre passé en paramètre est vide. " & Message); New_Line; if (Restart = 0) then Put_Line ("Réessayez encore une fois avec un autre ID."); else Put_Line ("Retour au menu principal."); end if; end Display_ARBRE_VIDE_EXCEPTION; -- Afficher un message quand ajouter parent lève l'exception DEUX_PARENTS_PRESENTS_EXCEPTION. procedure Display_DEUX_PARENTS_PRESENTS_EXCEPTION is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ : " & ESC & "[0m" & "L'individu a déjà deux parents. L'ajout du parent a échoué."); New_Line; Put_Line ("Réessayez encore une fois avec un autre ID."); end Display_DEUX_PARENTS_PRESENTS_EXCEPTION; -- Afficher un message quand ajouter parent lève l'exception ID_ABSENT_EXCEPTION. procedure Display_ID_ABSENT_EXCEPTION (Message : in String; Restart : in Integer) is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ : " & ESC & "[0m" & "l'ID que vous avez entré n'existe pas. " & Message); New_Line; if (Restart = 0) then Put_Line ("Réessayez encore une fois avec un autre ID."); else Put_Line ("Retour au menu principal."); end if; end Display_ID_ABSENT_EXCEPTION; -- Afficher le nombre d'ancetres d'un individu donné. procedure Display_Number_Ancestors (Ab : in T_ABG; ID : in Integer) is begin New_Line; Put_Line ("L'individu qui a l'ID" & ESC & "[32m" & Integer'Image (ID) & ESC & "[0m" & " a" & ESC & "[31m" & Integer'Image(Nombre_Ancetres (Ab, ID)) & ESC & "[0m" & " ancetres."); New_Line; Put_Line ("Retour au menu principal."); end Display_Number_Ancestors; -- Afficher un message descriptif de l'ensemble affiché sur le terminal. procedure Display_Title_Set (Message : in String; Generation : in Integer) is begin if (Generation = -1) then New_Line; Put (Message & " est : "); else New_Line; Put (Message & Integer'Image (Generation) & " géneration est : "); end if; end Display_Title_Set; -- Afficher Vrai si deux individus n et m ont un ou plusieurs ancêtres -- homonymes, sinon faux. procedure Display_Is_Homonym (Is_Homonym : in Boolean) is begin New_Line; if (Is_Homonym) then Put_Line (ESC & "[32m" & "Vrai : " & ESC & "[0m" & "Il existe des ancetres homonymes entre les deux individus"); else Put_Line (ESC & "[31m" & "Faux : " & ESC & "[0m" & "Il n'existe pas des ancetres homonymes entre les deux individus"); end if; end Display_Is_Homonym; -- Afficher la donnée associée à un identifiant dans le registre. procedure Afficher_Donnee(Registre : in T_Registre ; Id : in Integer) is Donnee : T_Donnee; begin Donnee := La_Donnee_R(Registre,Id); Put_Line ("Nom : " & Get_Last_Name (Donnee)); Put_Line ("Prénom : " & Get_First_Name (Donnee)); Put_Line ("Date de Naissance : " & Integer'Image(Get_Birthday_Day (Donnee)) & "/" & Integer'Image(Get_Birthday_Month (Donnee)) & "/" & Integer'Image(Get_Birthday_Year (Donnee))); Put_Line ("Lieu de Naissance : " & Get_Birthplace (Donnee)); Put_Line ("Date de Décès : " & Integer'Image(Get_Deathday_Day (Donnee)) & "/" & Integer'Image(Get_Deathday_Month (Donnee)) & "/" & Integer'Image(Get_Deathday_Year (Donnee))); Put_Line ("Lieu de Décès : " & Get_Deathplace (Donnee)); Put_Line ("Sexe : " & Character'Image (Get_Sex (Donnee))); Put_Line ("Email : " & Get_Email (Donnee)); Put_Line ("Numéro de téléphone : " & Integer'Image (Get_Tel (Donnee))); end Afficher_Donnee; procedure Display_ABSENT_TREE_EXCEPTION (Message : in String) is begin New_Line; Put_Line (ESC & "[31m" & "ÉCHOUÉ : " & ESC & "[0m" & "L'arbre n'existe pas. " & Message & " a échoué."); New_Line; Put_Line ("Retour au menu principal."); end Display_ABSENT_TREE_EXCEPTION; -- Afficher la barre de fin d'exécution. procedure End_Bar is begin New_Line; Put_Line ("À bientôt!"); New_Line; Put_Line (" " & ESC & "[32m" & "FIN D'EXÉCTUTION" & ESC & "[0m"); New_Line; Put_Line ("*****************************************************************************************************"); New_Line; end End_Bar; end Display_Shell;
40.389121
187
0.587071
d0651746d3b701d19508550bfcc34bfe77fe5e0a
1,083
ads
Ada
src/utilities_package.ads
MorganPeterson/avi-editor
c8c967edb4615048b41f3527eb807e6229cf5205
[ "0BSD" ]
null
null
null
src/utilities_package.ads
MorganPeterson/avi-editor
c8c967edb4615048b41f3527eb807e6229cf5205
[ "0BSD" ]
null
null
null
src/utilities_package.ads
MorganPeterson/avi-editor
c8c967edb4615048b41f3527eb807e6229cf5205
[ "0BSD" ]
null
null
null
with Ada.Strings.Unbounded; use Ada.Strings.Unbounded; with Buffer_Package; use Buffer_Package; package Utilities_Package is type ERR_TYPE is ( ENDOFFILE, NOBLOCKMARKED, INVALIDEFUNCTIONNUMBER, BEGINNINGOFLINE, ENDOFLINE, TOPOFFILE, OUTOFMEMORY, EMPTYCOMMAND, COULDNOTOPENFILE, COULDNOTOPENTEMPORARYFILE, COULDNOTFORK, NOPREVIOUSPOSITION, INVALIDBOOKMARK, BOOKMARKNOTSET, CURSORINSIDEBLOCK, INVALIDLINE, INVALIDMAPPINGSPECIFICATION, INVALIDPAGEHEIGHT, NOBLOCKDEFINED, INVALIDDELAYVALUE, LEFTMARGINWOULDEXCEEDRIGHTMARGIN, RIGHTMARINWOULDEXCEEDLEFTMARGIN, INVALIDMARGIN, SEARCHFAILED, INVALIDTABWIDTH, NOTHINGTOUNDO, UNKNOWNCOMMAND); type View is record B : Buffer; P : Pos; GB : POS; BS : Integer; BE : Integer; EX : Boolean; Status_Callback : Boolean; end record; function Read_File (Name : Unbounded_String; V : View) return Boolean; end Utilities_Package;
23.042553
57
0.662973
4a4ae6886139de7562645e09d182280223262212
415
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/discr_range_check.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/discr_range_check.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/discr_range_check.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { 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;
21.842105
72
0.684337
dc3aae4d86f3798d882fe9ef7839449ac2dac770
12,153
adb
Ada
src/implementation/yaml-events-store.adb
robdaemon/AdaYaml
2cb52c5e7eee3a2d9951945d5ddb4eeddc088f6e
[ "MIT" ]
null
null
null
src/implementation/yaml-events-store.adb
robdaemon/AdaYaml
2cb52c5e7eee3a2d9951945d5ddb4eeddc088f6e
[ "MIT" ]
null
null
null
src/implementation/yaml-events-store.adb
robdaemon/AdaYaml
2cb52c5e7eee3a2d9951945d5ddb4eeddc088f6e
[ "MIT" ]
null
null
null
-- part of AdaYaml, (c) 2017 Felix Krause -- released under the terms of the MIT license, see the file "copying.txt" package body Yaml.Events.Store is function New_Store return Reference is Ptr : constant not null access Instance := new Instance; begin return (Ada.Finalization.Controlled with Data => Ptr); end New_Store; function Value (Object : Reference) return Accessor is ((Data => Object.Data)); function Value (Object : Optional_Reference) return Accessor is ((Data => Object.Data)); function Optional (Object : Reference'Class) return Optional_Reference is begin Increase_Refcount (Object.Data); return (Ada.Finalization.Controlled with Data => Object.Data); end Optional; function Required (Object : Optional_Reference'Class) return Reference is begin Increase_Refcount (Object.Data); return (Ada.Finalization.Controlled with Data => Object.Data); end Required; procedure Memorize (Object : in out Instance; Item : Event; Force : Boolean) is use type Text.Reference; begin if Object.Stream_Count > 0 then raise State_Error with "cannot manipulate event queue while a Stream_Instance exists"; end if; case Item.Kind is when Annotation_Start => if Item.Annotation_Properties.Anchor /= Text.Empty then Object.Anchor_Map.Include (Item.Annotation_Properties.Anchor, (Position => Object.Length + 1, Has_Been_Output => False)); elsif Object.Depth = 0 and not Force then return; end if; if Object.Depth = After_Annotation_End then Object.Depth := 1; else Object.Depth := Object.Depth + 1; end if; when Scalar => if Item.Scalar_Properties.Anchor /= Text.Empty then Object.Anchor_Map.Include (Item.Scalar_Properties.Anchor, (Position => Object.Length + 1, Has_Been_Output => False)); elsif Object.Depth = 0 and not Force then return; end if; if Object.Depth = After_Annotation_End then Object.Depth := 0; end if; when Mapping_Start => if Item.Collection_Properties.Anchor /= Text.Empty then Object.Anchor_Map.Include (Item.Collection_Properties.Anchor, (Position => Object.Length + 1, Has_Been_Output => False)); elsif Object.Depth = 0 and not Force then return; end if; if Object.Depth = After_Annotation_End then Object.Depth := 1; else Object.Depth := Object.Depth + 1; end if; when Sequence_Start => if Item.Collection_Properties.Anchor /= Text.Empty then Object.Anchor_Map.Include (Item.Collection_Properties.Anchor, (Position => Object.Length + 1, Has_Been_Output => False)); elsif Object.Depth = 0 and not Force then return; end if; if Object.Depth = After_Annotation_End then Object.Depth := 1; else Object.Depth := Object.Depth + 1; end if; when Mapping_End | Sequence_End => if Object.Depth = 0 and not Force then return; end if; Object.Depth := Object.Depth - 1; when Annotation_End => if Object.Depth = 0 and not Force then return; end if; Object.Depth := Object.Depth - 1; if Object.Depth = 0 then Object.Depth := After_Annotation_End; end if; when others => if Object.Depth = 0 and not Force then return; elsif Object.Depth = After_Annotation_End then Object.Depth := 0; end if; end case; if Object.Length = Object.Data.all'Length then Object.Grow; end if; Object.Length := Object.Length + 1; Object.Data (Object.Length) := Item; end Memorize; procedure Memorize (Object : in out Instance; Item : Event) is begin Memorize (Object, Item, False); end Memorize; procedure Force_Memorize (Object : in out Instance; Item : Event; Position : out Element_Cursor) is begin Memorize (Object, Item, True); Position := Element_Cursor (Object.Length); end Force_Memorize; function Find (Object : Instance; Alias : Text.Reference) return Anchor_Cursor is (Anchor_Cursor (Object.Anchor_Map.Find (Alias))); function Exists_In_Output (Position : Anchor_Cursor) return Boolean is (Anchor_To_Index.Element (Anchor_To_Index.Cursor (Position)).Has_Been_Output); procedure Set_Exists_In_Output (Object : in out Instance; Position : Anchor_Cursor) is procedure Process (Key : Text.Reference; Element : in out Anchor_Info) is pragma Unreferenced (Key); begin Element.Has_Been_Output := True; end Process; begin Anchor_To_Index.Update_Element (Object.Anchor_Map, Anchor_To_Index.Cursor (Position), Process'Access); end Set_Exists_In_Output; procedure Advance (Position : in out Element_Cursor) is begin Position := Element_Cursor'Succ (Position); end Advance; procedure Advance_At_Same_Level (Object : Instance; Position : in out Element_Cursor) is Depth : Natural := 0; begin loop case Object.Data (Positive (Position)).Kind is when Annotation_Start | Sequence_Start | Mapping_Start | Document_Start => Depth := Depth + 1; when Annotation_End => Depth := Depth - 1; when Sequence_End | Mapping_End | Document_End => Depth := Depth - 1; if Depth = 0 then Position := Element_Cursor'Succ (Position); return; end if; when Scalar | Alias => if Depth = 0 then Position := Element_Cursor'Succ (Position); return; end if; when Stream_Start | Stream_End => raise Stream_Error with "Unexpected event inside stream: " & Object.Data (Positive (Position)).Kind'Img; end case; Position := Element_Cursor'Succ (Position); end loop; end Advance_At_Same_Level; procedure Clear (Object : in out Instance) is begin if Object.Stream_Count > 0 then raise State_Error with "cannot manipulate event queue while a Stream_Instance exists"; end if; Object.Anchor_Map.Clear; Object.Depth := 0; end Clear; procedure Copy (Source : in Instance; Target : in out Instance) is begin if Target.Data.all'Length /= Source.Data.all'Length then Target.Finalize; Target.Data := new Event_Array (Source.Data.all'Range); end if; Target.Data.all := Source.Data.all; Target.Length := Source.Length; Target.Anchor_Map := Source.Anchor_Map; Target.Depth := Source.Depth; end Copy; function Retrieve (Object : Reference'Class; Position : Anchor_Cursor) return Stream_Reference is Ptr : constant not null access Stream_Instance := new Stream_Instance'(Refcount_Base with Object => Reference (Object), Depth => 0, Current => Anchor_To_Index.Element (Anchor_To_Index.Cursor (Position)).Position); begin Object.Data.Stream_Count := Object.Data.Stream_Count + 1; return Stream_Reference'(Ada.Finalization.Controlled with Data => Ptr); end Retrieve; function Retrieve (Object : Reference'Class; Position : Element_Cursor) return Stream_Reference is Ptr : constant not null access Stream_Instance := new Stream_Instance'(Refcount_Base with Object => Reference (Object), Depth => 0, Current => Positive (Position)); begin Object.Data.Stream_Count := Object.Data.Stream_Count + 1; return Stream_Reference'(Ada.Finalization.Controlled with Data => Ptr); end Retrieve; function Value (Object : Stream_Reference) return Stream_Accessor is ((Data => Object.Data)); function Next (Object : in out Stream_Instance) return Event is begin if Object.Depth = 1 then raise Constraint_Error with "tried to query item after end of anchored node"; end if; return Item : constant Event := Object.Object.Data.Data (Object.Current) do case Item.Kind is when Scalar => Object.Depth := Natural'Max (1, Object.Depth); when Mapping_Start | Sequence_Start => Object.Depth := Natural'Max (2, Object.Depth + 1); when others => null; end case; Object.Current := Object.Current + 1; end return; end Next; function Exists (Object : Optional_Stream_Reference) return Boolean is (Object.Data /= null); function Value (Object : Optional_Stream_Reference) return Stream_Accessor is ((Data => Object.Data)); function Optional (Object : Stream_Reference'Class) return Optional_Stream_Reference is begin Object.Data.Refcount := Object.Data.Refcount + 1; return (Ada.Finalization.Controlled with Data => Object.Data); end Optional; procedure Clear (Object : in out Optional_Stream_Reference) is begin if Object.Data /= null then Decrease_Refcount (Object.Data); Object.Data := null; end if; end Clear; function First (Object : Instance; Position : Anchor_Cursor) return Event is (Object.Data (Anchor_To_Index.Element (Anchor_To_Index.Cursor (Position)).Position)); function Element (Object : Instance; Position : Element_Cursor) return Event is (Object.Data (Positive (Position))); procedure Adjust (Object : in out Reference) is begin Increase_Refcount (Object.Data); end Adjust; procedure Finalize (Object : in out Reference) is begin Decrease_Refcount (Object.Data); end Finalize; procedure Adjust (Object : in out Optional_Reference) is begin if Object.Data /= null then Increase_Refcount (Object.Data); end if; end Adjust; procedure Finalize (Object : in out Optional_Reference) is begin if Object.Data /= null then Decrease_Refcount (Object.Data); end if; end Finalize; procedure Finalize (Object : in out Stream_Instance) is begin Object.Object.Data.Stream_Count := Object.Object.Data.Stream_Count - 1; end Finalize; procedure Adjust (Object : in out Stream_Reference) is begin Increase_Refcount (Object.Data); end Adjust; procedure Finalize (Object : in out Stream_Reference) is begin Decrease_Refcount (Object.Data); end Finalize; procedure Adjust (Object : in out Optional_Stream_Reference) is begin if Object.Data /= null then Increase_Refcount (Object.Data); end if; end Adjust; procedure Finalize (Object : in out Optional_Stream_Reference) is begin if Object.Data /= null then Decrease_Refcount (Object.Data); end if; end Finalize; function To_Element_Cursor (Position : Anchor_Cursor) return Element_Cursor is (if Position = No_Anchor then No_Element else Element_Cursor (Anchor_To_Index.Element (Anchor_To_Index.Cursor (Position)).Position)); end Yaml.Events.Store;
36.062315
81
0.599687
183dbb1580cc3eda3a99773f38e24d0ed599e5fd
3,719
ads
Ada
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-nuflra.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-nuflra.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
bb-runtimes/runtimes/ravenscar-full-stm32f3x4/gnat/a-nuflra.ads
JCGobbi/Nucleo-STM32F334R8
2a0b1b4b2664c92773703ac5e95dcb71979d051c
[ "BSD-3-Clause" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . N U M E R I C S . F L O A T _ R A N D O M -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-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/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Note: the implementation used in this package is a version of the -- Mersenne Twister. See s-rannum.adb for details and references. with System.Random_Numbers; package Ada.Numerics.Float_Random with SPARK_Mode => Off is -- Basic facilities type Generator is limited private; subtype Uniformly_Distributed is Float range 0.0 .. 1.0; function Random (Gen : Generator) return Uniformly_Distributed; procedure Reset (Gen : Generator); procedure Reset (Gen : Generator; Initiator : Integer); -- Advanced facilities type State is private; procedure Save (Gen : Generator; To_State : out State); procedure Reset (Gen : Generator; From_State : State); Max_Image_Width : constant := System.Random_Numbers.Max_Image_Width; function Image (Of_State : State) return String; function Value (Coded_State : String) return State; private type Generator is new System.Random_Numbers.Generator; type State is new System.Random_Numbers.State; end Ada.Numerics.Float_Random;
49.586667
78
0.44313
cb356e04c9f208edb38afc11a69dce1027d76bb4
1,653
ads
Ada
src/ada-libc/src/libc-sys-poll.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
src/ada-libc/src/libc-sys-poll.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
src/ada-libc/src/libc-sys-poll.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
-- Copyright 2015,2017 Steven Stewart-Gallus -- -- 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 Interfaces.C; use Interfaces.C; with Libc.Signal.GNU; with Libc.Time.GNU; package Libc.Sys.Poll with Spark_Mode => Off is subtype nfds_t is unsigned_long; -- /usr/include/sys/poll.h:36 type pollfd is record fd : int; -- /usr/include/sys/poll.h:41 events : short; -- /usr/include/sys/poll.h:42 revents : short; -- /usr/include/sys/poll.h:43 end record; function poll (fds : in out pollfd; nfds : nfds_t; timeout : int) return int; -- /usr/include/sys/poll.h:57 pragma Import (C, poll, "poll"); function ppoll (fds : in out pollfd; nfds : nfds_t; timeout : access constant Libc.Time.GNU.timespec; ss : access constant Libc.Signal.GNU.sigset_t) return int; -- /usr/include/sys/poll.h:66 pragma Import (C, ppoll, "ppoll"); POLLIN : constant := 16#001#; POLLPRI : constant := 16#002#; POLLOUT : constant := 16#004#; POLLERR : constant := 16#008#; POLLHUP : constant := 16#010#; POLLNVAL : constant := 16#020#; end Libc.Sys.Poll;
32.411765
70
0.670901
c56f8faa16c27ad37ce0194e8540a45ab59bcc18
3,014
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-finroo.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-finroo.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-finroo.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . F I N A L I Z A T I O N _ R O O T -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body System.Finalization_Root is -- It should not be possible to call any of these subprograms ------------ -- Adjust -- ------------ procedure Adjust (Object : in out Root_Controlled) is begin raise Program_Error; end Adjust; -------------- -- Finalize -- -------------- procedure Finalize (Object : in out Root_Controlled) is begin raise Program_Error; end Finalize; ---------------- -- Initialize -- ---------------- procedure Initialize (Object : in out Root_Controlled) is begin raise Program_Error; end Initialize; end System.Finalization_Root;
47.09375
78
0.413404
d0d324488da1aa2ea0eaf51611ec412d4bffa36c
2,338
ads
Ada
source/receiver/main/locations.ads
reznikmm/gps-tracker
23b7bfbac8ea3a09a2b2d89cb55b6627bb599ce5
[ "MIT" ]
null
null
null
source/receiver/main/locations.ads
reznikmm/gps-tracker
23b7bfbac8ea3a09a2b2d89cb55b6627bb599ce5
[ "MIT" ]
null
null
null
source/receiver/main/locations.ads
reznikmm/gps-tracker
23b7bfbac8ea3a09a2b2d89cb55b6627bb599ce5
[ "MIT" ]
null
null
null
-- SPDX-FileCopyrightText: 2022 Max Reznik <[email protected]> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Bluetooth; with Ada.Streams; with Ada.Unchecked_Conversion; package Locations is -- Location and navigation profile allows these characteristics: type Characteristic_Index is (LN_Feature, Location_and_Speed, Battery_Level); package Bluetooth is new Standard.Bluetooth (Characteristic_Index => Characteristic_Index, Byte => Ada.Streams.Stream_Element, Byte_Index => Ada.Streams.Stream_Element_Offset, Byte_Array => Ada.Streams.Stream_Element_Array); Advertising : constant Bluetooth.Advertising_Data := Bluetooth.Raw_Data ((16#02#, 16#01#, 16#06#, 16#05#, 16#03#, 16#19#, 16#18#, 16#0F#, 16#18#, 16#07#, 16#09#, 16#4D#, 16#79#, 16#54#, 16#65#, 16#73#, 16#74#)); Read : constant Bluetooth.Characteristic_Property_Set := (Bluetooth.Read => True, others => False); Notify : constant Bluetooth.Characteristic_Property_Set := (Bluetooth.Notify => True, others => False); Location_Supported : constant := 2 ** 2; Rolling_Time_Supported : constant := 2 ** 5; UTC_Time_Supported : constant := 2 ** 6; Location_Present : constant := 2 ** 2; Rolling_Time_Present : constant := 2 ** 5; UTC_Time_Present : constant := 2 ** 6; use type Ada.Streams.Stream_Element_Offset; -- Latitude sint32:4 Longitude sint32:4 /10**7 -- UTC: yyyy:2 mm:1 dd:1 hh:1 mm:1 ss:1 = 7 bytes package Peripheral_Device is new Bluetooth.Peripheral_Device (Advertising => Advertising, Characteristic_Array => (LN_Feature => (16#2A6A#, Read, 4), Location_and_Speed => (16#2A67#, Notify, 2 + 2 * 4 + 7), Battery_Level => (16#2A19#, Read, 1)), Service_Array => ((16#1819#, LN_Feature, Location_and_Speed), (16#180F#, Battery_Level, Battery_Level)), Buffer_Size => 4 + 2 + 2 * 4 + 7 + 1); subtype Byte_Array_4 is Ada.Streams.Stream_Element_Array (1 .. 4); function Cast is new Ada.Unchecked_Conversion (Integer, Byte_Array_4); task Bluetooth_Runner with Storage_Size => 4096; end Locations;
34.382353
74
0.618477
d0c7dbc3357de6671a03a309a41c69b3abb7e9ac
1,247
ads
Ada
source/textio/machine-apple-darwin/s-ntitco.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
33
2015-04-04T09:19:36.000Z
2021-11-10T05:33:34.000Z
source/textio/machine-apple-darwin/s-ntitco.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
8
2017-11-14T13:05:07.000Z
2018-08-09T15:28:49.000Z
source/textio/machine-apple-darwin/s-ntitco.ads
ytomino/drake
4e4bdcd8b8e23a11a29b31d3a8861fdf60090ea2
[ "MIT" ]
9
2015-02-03T17:09:53.000Z
2021-11-12T01:16:05.000Z
pragma License (Unrestricted); -- implementation unit specialized for POSIX (Darwin, FreeBSD, or Linux) with Ada.Colors; package System.Native_Text_IO.Terminal_Colors is pragma Preelaborate; type Color is mod 256; -- Note: Color represents: -- 0 .. 7 => Normal System Colors (R, G, B => 0 or 16#C0#) -- if $TERM = xterm-256color, -- 8 .. 16 => Bright System Colors (R, G, B => 16#80# or 16#FF#) -- 16 .. 231 => (B, G, R => 0, 16#5F#, 16#87#, 16#AF#, 16#D7# or 16#FF#) -- 232 .. 255 => Grayscale (16#08# + 10 * (Index - 232)) function RGB_To_Color (Item : Ada.Colors.RGB) return Color; function Brightness_To_Grayscale_Color (Item : Ada.Colors.Brightness) return Color; procedure Set ( Handle : Handle_Type; Reset : Boolean; Bold_Changing : Boolean; Bold : Boolean; Underline_Changing : Boolean; Underline : Boolean; Blink_Changing : Boolean; Blink : Boolean; Reversed_Changing : Boolean; Reversed : Boolean; Foreground_Changing : Boolean; Foreground : Color; Background_Changing : Boolean; Background : Color); procedure Reset ( Handle : Handle_Type); end System.Native_Text_IO.Terminal_Colors;
31.974359
77
0.63352
d0ed5ac92eb69e4b3f220c00eac26c76b5045624
2,876
adb
Ada
src/lumen-binary-endian.adb
darkestkhan/lumen
d560f322a8efccac7ed5d16db1d2d188245836ba
[ "0BSD" ]
8
2015-07-20T18:20:10.000Z
2021-01-29T21:09:02.000Z
src/lumen-binary-endian.adb
darkestkhan/lumen
d560f322a8efccac7ed5d16db1d2d188245836ba
[ "0BSD" ]
10
2015-07-20T18:48:45.000Z
2016-05-07T19:23:31.000Z
src/lumen-binary-endian.adb
darkestkhan/lumen
d560f322a8efccac7ed5d16db1d2d188245836ba
[ "0BSD" ]
1
2018-11-18T17:01:15.000Z
2018-11-18T17:01:15.000Z
-- Lumen.Binary.Endian -- Parent package for big- vs. little-endian -- byte-ordering services -- -- -- Chip Richards, NiEstu, Phoenix AZ, Summer 2010 -- This code is covered by the ISC License: -- -- Copyright © 2010, NiEstu -- -- 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. -- Environment with Ada.Unchecked_Conversion; package body Lumen.Binary.Endian is --------------------------------------------------------------------------- -- Set to the host system's byte order during package initialization, in -- case an app ever needs to know. Normally, the child package functions -- will be used instead of querying this directly. Host_Byte_Order : Byte_Order; --------------------------------------------------------------------------- -- -- Exported subroutines -- --------------------------------------------------------------------------- function System_Byte_Order return Byte_Order is begin -- System_Byte_Order return Host_Byte_Order; end System_Byte_Order; --------------------------------------------------------------------------- -- -- Package subroutines -- --------------------------------------------------------------------------- -- Discover the system's byte ordering procedure Set_System_Byte_Order (Order : out Byte_Order) is S : Short; T : Two_Bytes; function STT is new Ada.Unchecked_Conversion (Short, Two_Bytes); begin -- Set_System_Byte_Order -- Set up a bit pattern that we can recognize later S := 16#0102#; -- Now stick it into a record of two consecutive bytes, with no swapping T := STT (S); -- If the first byte is the one that was originally the leftmost byte in -- the word, then this is a big-endian platform, otherwise little-endian if T.B0 = 16#01# then Order := High_Order_First; else Order := Low_Order_First; end if; end Set_System_Byte_Order; --------------------------------------------------------------------------- begin -- package Lumen.Binary.Endian initialization code Set_System_Byte_Order (Host_Byte_Order); end Lumen.Binary.Endian;
34.238095
78
0.590403
18f34343906e9ebf993683c3187f3221810319ca
17,567
ads
Ada
tools/scitools/conf/understand/ada/ada12/s-stposu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
1
2020-01-20T21:26:46.000Z
2020-01-20T21:26:46.000Z
tools/scitools/conf/understand/ada/ada12/s-stposu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
tools/scitools/conf/understand/ada/ada12/s-stposu.ads
brucegua/moocos
575c161cfa35e220f10d042e2e5ca18773691695
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . S T O R A G E _ P O O L S . S U B P O O L S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011-2012, 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/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Finalization; with System.Finalization_Masters; with System.Storage_Elements; package System.Storage_Pools.Subpools is pragma Preelaborate; type Root_Storage_Pool_With_Subpools is abstract new Root_Storage_Pool with private; -- The base for all implementations of Storage_Pool_With_Subpools. This -- type is Limited_Controlled by derivation. To use subpools, an access -- type must be associated with an implementation descending from type -- Root_Storage_Pool_With_Subpools. type Root_Subpool is abstract tagged limited private; -- The base for all implementations of Subpool. Objects of this type are -- managed by the pool_with_subpools. type Subpool_Handle is access all Root_Subpool'Class; for Subpool_Handle'Storage_Size use 0; -- Since subpools are limited types by definition, a handle is instead used -- to manage subpool abstractions. overriding procedure Allocate (Pool : in out Root_Storage_Pool_With_Subpools; Storage_Address : out System.Address; Size_In_Storage_Elements : System.Storage_Elements.Storage_Count; Alignment : System.Storage_Elements.Storage_Count); -- Allocate an object described by Size_In_Storage_Elements and Alignment -- on the default subpool of Pool. Controlled types allocated through this -- routine will NOT be handled properly. procedure Allocate_From_Subpool (Pool : in out Root_Storage_Pool_With_Subpools; Storage_Address : out System.Address; Size_In_Storage_Elements : System.Storage_Elements.Storage_Count; Alignment : System.Storage_Elements.Storage_Count; Subpool : not null Subpool_Handle) is abstract; -- ??? This precondition causes errors in simple tests, disabled for now -- with Pre'Class => Pool_Of_Subpool (Subpool) = Pool'Access; -- This routine requires implementation. Allocate an object described by -- Size_In_Storage_Elements and Alignment on a subpool. function Create_Subpool (Pool : in out Root_Storage_Pool_With_Subpools) return not null Subpool_Handle is abstract; -- This routine requires implementation. Create a subpool within the given -- pool_with_subpools. overriding procedure Deallocate (Pool : in out Root_Storage_Pool_With_Subpools; Storage_Address : System.Address; Size_In_Storage_Elements : System.Storage_Elements.Storage_Count; Alignment : System.Storage_Elements.Storage_Count) is null; procedure Deallocate_Subpool (Pool : in out Root_Storage_Pool_With_Subpools; Subpool : in out Subpool_Handle) is abstract; -- ??? This precondition causes errors in simple tests, disabled for now -- with Pre'Class => Pool_Of_Subpool (Subpool) = Pool'Access; -- This routine requires implementation. Reclaim the storage a particular -- subpool occupies in a pool_with_subpools. This routine is called by -- Ada.Unchecked_Deallocate_Subpool. function Default_Subpool_For_Pool (Pool : Root_Storage_Pool_With_Subpools) return not null Subpool_Handle; -- Return a common subpool which is used for object allocations without a -- Subpool_Handle_name in the allocator. The default implementation of this -- routine raises Program_Error. function Pool_Of_Subpool (Subpool : not null Subpool_Handle) return access Root_Storage_Pool_With_Subpools'Class; -- Return the owner of the subpool procedure Set_Pool_Of_Subpool (Subpool : not null Subpool_Handle; To : in out Root_Storage_Pool_With_Subpools'Class); -- Set the owner of the subpool. This is intended to be called from -- Create_Subpool or similar subpool constructors. Raises Program_Error -- if the subpool already belongs to a pool. overriding function Storage_Size (Pool : Root_Storage_Pool_With_Subpools) return System.Storage_Elements.Storage_Count is (System.Storage_Elements.Storage_Count'Last); private -- Model -- Pool_With_Subpools SP_Node SP_Node SP_Node -- +-->+--------------------+ +-----+ +-----+ +-----+ -- | | Subpools -------->| ------->| ------->| -------> -- | +--------------------+ +-----+ +-----+ +-----+ -- | |Finalization_Started|<------ |<------- |<------- |<--- -- | +--------------------+ +-----+ +-----+ +-----+ -- +--- Controller.Encl_Pool| | nul | | + | | + | -- | +--------------------+ +-----+ +--|--+ +--:--+ -- | : : Dummy | ^ : -- | : : | | : -- | Root_Subpool V | -- | +-------------+ | -- +-------------------------------- Owner | | -- FM_Node FM_Node +-------------+ | -- +-----+ +-----+<-- Master.Objects| | -- <------ |<------ | +-------------+ | -- +-----+ +-----+ | Node -------+ -- | ------>| -----> +-------------+ -- +-----+ +-----+ : : -- |ctrl | Dummy : : -- | obj | -- +-----+ -- -- SP_Nodes are created on the heap. FM_Nodes and associated objects are -- created on the pool_with_subpools. type Any_Storage_Pool_With_Subpools_Ptr is access all Root_Storage_Pool_With_Subpools'Class; for Any_Storage_Pool_With_Subpools_Ptr'Storage_Size use 0; -- A pool controller is a special controlled object which ensures the -- proper initialization and finalization of the enclosing pool. type Pool_Controller (Enclosing_Pool : Any_Storage_Pool_With_Subpools_Ptr) is new Ada.Finalization.Limited_Controlled with null record; -- Subpool list types. Each pool_with_subpools contains a list of subpools. -- This is an indirect doubly linked list since subpools are not supposed -- to be allocatable by language design. type SP_Node; type SP_Node_Ptr is access all SP_Node; type SP_Node is record Prev : SP_Node_Ptr := null; Next : SP_Node_Ptr := null; Subpool : Subpool_Handle := null; end record; -- Root_Storage_Pool_With_Subpools internal structure. The type uses a -- special controller to perform initialization and finalization actions -- on itself. This is necessary because the end user of this package may -- decide to override Initialize and Finalize, thus disabling the desired -- behavior. -- Pool_With_Subpools SP_Node SP_Node SP_Node -- +-->+--------------------+ +-----+ +-----+ +-----+ -- | | Subpools -------->| ------->| ------->| -------> -- | +--------------------+ +-----+ +-----+ +-----+ -- | |Finalization_Started| : : : : : : -- | +--------------------+ -- +--- Controller.Encl_Pool| -- +--------------------+ -- : End-user : -- : components : type Root_Storage_Pool_With_Subpools is abstract new Root_Storage_Pool with record Subpools : aliased SP_Node; -- A doubly linked list of subpools Finalization_Started : Boolean := False; pragma Atomic (Finalization_Started); -- A flag which prevents the creation of new subpools while the master -- pool is being finalized. The flag needs to be atomic because it is -- accessed without Lock_Task / Unlock_Task. Controller : Pool_Controller (Root_Storage_Pool_With_Subpools'Unchecked_Access); -- A component which ensures that the enclosing pool is initialized and -- finalized at the appropriate places. end record; -- A subpool is an abstraction layer which sits on top of a pool. It -- contains links to all controlled objects allocated on a particular -- subpool. -- Pool_With_Subpools SP_Node SP_Node SP_Node -- +-->+----------------+ +-----+ +-----+ +-----+ -- | | Subpools ------>| ------->| ------->| -------> -- | +----------------+ +-----+ +-----+ +-----+ -- | : :<------ |<------- |<------- | -- | : : +-----+ +-----+ +-----+ -- | |null | | + | | + | -- | +-----+ +--|--+ +--:--+ -- | | ^ : -- | Root_Subpool V | -- | +-------------+ | -- +---------------------------- Owner | | -- +-------------+ | -- .......... Master | | -- +-------------+ | -- | Node -------+ -- +-------------+ -- : End-user : -- : components : type Root_Subpool is abstract tagged limited record Owner : Any_Storage_Pool_With_Subpools_Ptr := null; -- A reference to the master pool_with_subpools Master : aliased System.Finalization_Masters.Finalization_Master; -- A heterogeneous collection of controlled objects Node : SP_Node_Ptr := null; -- A link to the doubly linked list node which contains the subpool. -- This back pointer is used in subpool deallocation. end record; procedure Adjust_Controlled_Dereference (Addr : in out System.Address; Storage_Size : in out System.Storage_Elements.Storage_Count; Alignment : System.Storage_Elements.Storage_Count); -- Given the memory attributes of a heap-allocated object that is known to -- be controlled, adjust the address and size of the object to include the -- two hidden pointers inserted by the finalization machinery. -- ??? Once Storage_Pools.Allocate_Any is removed, this should be renamed -- to Allocate_Any. procedure Allocate_Any_Controlled (Pool : in out Root_Storage_Pool'Class; Context_Subpool : Subpool_Handle; Context_Master : Finalization_Masters.Finalization_Master_Ptr; Fin_Address : Finalization_Masters.Finalize_Address_Ptr; Addr : out System.Address; Storage_Size : System.Storage_Elements.Storage_Count; Alignment : System.Storage_Elements.Storage_Count; Is_Controlled : Boolean; On_Subpool : Boolean); -- Compiler interface. This version of Allocate handles all possible cases, -- either on a pool or a pool_with_subpools, regardless of the controlled -- status of the allocated object. Parameter usage: -- -- * Pool - The pool associated with the access type. Pool can be any -- derivation from Root_Storage_Pool, including a pool_with_subpools. -- -- * Context_Subpool - The subpool handle name of an allocator. If no -- subpool handle is present at the point of allocation, the actual -- would be null. -- -- * Context_Master - The finalization master associated with the access -- type. If the access type's designated type is not controlled, the -- actual would be null. -- -- * Fin_Address - TSS routine Finalize_Address of the designated type. -- If the designated type is not controlled, the actual would be null. -- -- * Addr - The address of the allocated object. -- -- * Storage_Size - The size of the allocated object. -- -- * Alignment - The alignment of the allocated object. -- -- * Is_Controlled - A flag which determines whether the allocated object -- is controlled. When set to True, the machinery generates additional -- data. -- -- * On_Subpool - A flag which determines whether the a subpool handle -- name is present at the point of allocation. This is used for error -- diagnostics. procedure Deallocate_Any_Controlled (Pool : in out Root_Storage_Pool'Class; Addr : System.Address; Storage_Size : System.Storage_Elements.Storage_Count; Alignment : System.Storage_Elements.Storage_Count; Is_Controlled : Boolean); -- Compiler interface. This version of Deallocate handles all possible -- cases, either from a pool or a pool_with_subpools, regardless of the -- controlled status of the deallocated object. Parameter usage: -- -- * Pool - The pool associated with the access type. Pool can be any -- derivation from Root_Storage_Pool, including a pool_with_subpools. -- -- * Addr - The address of the allocated object. -- -- * Storage_Size - The size of the allocated object. -- -- * Alignment - The alignment of the allocated object. -- -- * Is_Controlled - A flag which determines whether the allocated object -- is controlled. When set to True, the machinery generates additional -- data. overriding procedure Finalize (Controller : in out Pool_Controller); -- Buffer routine, calls Finalize_Pool procedure Finalize_Pool (Pool : in out Root_Storage_Pool_With_Subpools); -- Iterate over all subpools of Pool, detach them one by one and finalize -- their masters. This action first detaches a controlled object from a -- particular master, then invokes its Finalize_Address primitive. procedure Finalize_Subpool (Subpool : not null Subpool_Handle); -- Finalize all controlled objects chained on Subpool's master. Remove the -- subpool from its owner's list. Deallocate the associated doubly linked -- list node. function Header_Size_With_Padding (Alignment : System.Storage_Elements.Storage_Count) return System.Storage_Elements.Storage_Count; -- Given an arbitrary alignment, calculate the size of the header which -- precedes a controlled object as the nearest multiple rounded up of the -- alignment. overriding procedure Initialize (Controller : in out Pool_Controller); -- Buffer routine, calls Initialize_Pool procedure Initialize_Pool (Pool : in out Root_Storage_Pool_With_Subpools); -- Setup the doubly linked list of subpools procedure Print_Pool (Pool : Root_Storage_Pool_With_Subpools); -- Debug routine, output the contents of a pool_with_subpools procedure Print_Subpool (Subpool : Subpool_Handle); -- Debug routine, output the contents of a subpool end System.Storage_Pools.Subpools;
48.66205
79
0.556726
0e90262e2fac12406823546885757603fc086be5
2,313
adb
Ada
stm32f1/stm32gd-usb-peripheral.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
1
2021-04-06T07:57:56.000Z
2021-04-06T07:57:56.000Z
stm32f1/stm32gd-usb-peripheral.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
null
null
null
stm32f1/stm32gd-usb-peripheral.adb
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
2
2018-05-29T13:59:31.000Z
2019-02-03T19:48:08.000Z
with STM32_SVD; use STM32_SVD; with STM32_SVD.GPIO; with STM32_SVD.USB; use STM32_SVD.USB; with STM32_SVD.RCC; with Ada.Interrupts.Names; with Ada.Text_IO; package body STM32GD.USB.Peripheral is procedure Init is begin STM32_SVD.RCC.RCC_Periph.APB1ENR.USBEN := 1; STM32_SVD.RCC.RCC_Periph.APB1RSTR.USBRST := 1; STM32_SVD.RCC.RCC_Periph.APB1RSTR.USBRST:= 0; USB_Periph.CNTR.FRES := 1; USB_Periph.CNTR := ( CTRM => 1, WKUPM => 1, RESETM => 1, SUSPM => 1, Reserved_5_7 => 0, Reserved_16_31 => 0, others => 0 ); end Init; procedure Handle_Reset is BTable_Offset : Integer := 0; begin Ada.Text_IO.Put_Line ("Reset"); USB_Periph.DADDR.ADD := 0; USB_Periph.DADDR.EF := 1; BTable_Offset := EP0_Reset_Callback (BTable_Offset); BTable_Offset := EP1_Reset_Callback (BTable_Offset); BTable_Offset := EP2_Reset_Callback (BTable_Offset); BTable_Offset := EP3_Reset_Callback (BTable_Offset); BTable_Offset := EP4_Reset_Callback (BTable_Offset); BTable_Offset := EP5_Reset_Callback (BTable_Offset); BTable_Offset := EP6_Reset_Callback (BTable_Offset); BTable_Offset := EP7_Reset_Callback (BTable_Offset); end Handle_Reset; protected body Handler is procedure IRQ_Handler is begin if USB_Periph.ISTR.CTR = 1 then USB_Periph.ISTR.CTR := 0; Ada.Text_IO.Put_Line ("Control"); case USB_Periph.ISTR.EP_ID is when 0 => EP0_Handler_Callback (USB_Periph.ISTR.DIR = 1); when others => EP0_Handler_Callback (USB_Periph.ISTR.DIR = 1); end case; elsif USB_Periph.ISTR.RESET = 1 then USB_Periph.ISTR.RESET := 0; Handle_Reset; elsif USB_Periph.ISTR.WKUP = 1 then USB_Periph.ISTR.WKUP := 0; USB_Periph.CNTR := ( CTRM => 1, WKUPM => 1, RESETM => 1, SUSPM => 1, Reserved_5_7 => 0, Reserved_16_31 => 0, others => 0 ); Ada.Text_IO.Put_Line ("Wakeup"); elsif USB_Periph.ISTR.SUSP = 1 then USB_Periph.ISTR.SUSP := 0; USB_Periph.CNTR.LPMODE := 1; USB_Periph.CNTR.FSUSP := 1; Ada.Text_IO.Put_Line ("Suspend"); end if; end IRQ_Handler; end Handler; end STM32GD.USB.Peripheral;
32.577465
74
0.635971
4a5037ecd2c0fd583ca86b590d503310db1cbc5c
3,347
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c94020a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c94020a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c9/c94020a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- 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;
29.883929
79
0.507918
d01f42a367a1c27f251f622f0bbfbc7a31c59ff5
2,803
ads
Ada
awa/plugins/awa-storages/src/awa-storages-modules.ads
twdroeger/ada-awa
77b824773747aecb912c37b1b7b59ea414679b80
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-storages/src/awa-storages-modules.ads
twdroeger/ada-awa
77b824773747aecb912c37b1b7b59ea414679b80
[ "Apache-2.0" ]
null
null
null
awa/plugins/awa-storages/src/awa-storages-modules.ads
twdroeger/ada-awa
77b824773747aecb912c37b1b7b59ea414679b80
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- awa-storages-modules -- Storage management module -- Copyright (C) 2012, 2018 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ASF.Applications; with AWA.Modules; with AWA.Storages.Services; with AWA.Storages.Servlets; -- == Storage Module == -- The `Storage_Module` type represents the storage module. An instance of the storage -- module must be declared and registered when the application is created and initialized. -- The storage module is associated with the storage service which provides and implements -- the storage management operations. -- -- @include-permission storages.xml -- @include-config storages.xml package AWA.Storages.Modules is NAME : constant String := "storages"; type Storage_Module is new AWA.Modules.Module with private; type Storage_Module_Access is access all Storage_Module'Class; -- Initialize the storage module. overriding procedure Initialize (Plugin : in out Storage_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config); -- Get the storage manager. function Get_Storage_Manager (Plugin : in Storage_Module) return Services.Storage_Service_Access; -- Create a storage manager. This operation can be overridden to provide another -- storage service implementation. function Create_Storage_Manager (Plugin : in Storage_Module) return Services.Storage_Service_Access; -- Get the storage module instance associated with the current application. function Get_Storage_Module return Storage_Module_Access; -- Get the storage manager instance associated with the current application. function Get_Storage_Manager return Services.Storage_Service_Access; private type Storage_Module is new AWA.Modules.Module with record Manager : Services.Storage_Service_Access := null; Storage_Servlet : aliased AWA.Storages.Servlets.Storage_Servlet; end record; end AWA.Storages.Modules;
40.623188
91
0.690332
dcca9b447c21062574eb24df0d62c8f613be0e4d
21,310
ads
Ada
.emacs.d/elpa/wisi-2.1.1/wisitoken-syntax_trees.ads
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
.emacs.d/elpa/wisi-2.1.1/wisitoken-syntax_trees.ads
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
.emacs.d/elpa/wisi-2.1.1/wisitoken-syntax_trees.ads
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
-- Abstract : -- -- Syntax tree type and operations. -- -- Rationale : -- -- We provide Base_Tree and Tree in one package, because only Tree -- needs an API; the only way Base_Tree is accessed is via Tree. -- -- Copyright (C) 2018 - 2019 Free Software Foundation, Inc. -- There is one syntax tree for each parser. There is one shared -- Terminals array, matching the actual input text. -- -- Copyright (C) 2018 Free Software Foundation, Inc. -- -- This library is free software; you can redistribute it and/or modify it -- under terms of the GNU General Public License as published by the Free -- Software Foundation; either version 3, or (at your option) any later -- version. This library is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHAN- -- TABILITY or FITNESS FOR A PARTICULAR PURPOSE. -- As a special exception under Section 7 of GPL version 3, you are granted -- additional permissions described in the GCC Runtime Library Exception, -- version 3.1, as published by the Free Software Foundation. pragma License (Modified_GPL); with Ada.Finalization; with SAL.Gen_Unbounded_Definite_Vectors; with WisiToken.Lexer; package WisiToken.Syntax_Trees is type Base_Tree is new Ada.Finalization.Controlled with private; type Base_Tree_Access is access all Base_Tree; overriding procedure Finalize (Tree : in out Base_Tree); -- Free any allocated storage. type Tree is new Ada.Finalization.Controlled with private; procedure Initialize (Branched_Tree : in out Tree; Shared_Tree : in Base_Tree_Access; Flush : in Boolean); -- Set Branched_Tree to refer to Shared_Tree. overriding procedure Finalize (Tree : in out Syntax_Trees.Tree); -- Free any allocated storage. type Node_Index is range 0 .. Integer'Last; subtype Valid_Node_Index is Node_Index range 1 .. Node_Index'Last; Invalid_Node_Index : constant Node_Index := Node_Index'First; type Valid_Node_Index_Array is array (Positive_Index_Type range <>) of Valid_Node_Index; -- Index matches Base_Token_Array, Augmented_Token_Array package Valid_Node_Index_Arrays is new SAL.Gen_Unbounded_Definite_Vectors (Positive_Index_Type, Valid_Node_Index, Default_Element => Valid_Node_Index'First); -- Index matches Valid_Node_Index_Array. type Node_Label is (Shared_Terminal, -- text is user input, accessed via Parser.Terminals Virtual_Terminal, -- no text; inserted during error recovery Virtual_Identifier, -- text in user data, created during tree rewrite Nonterm -- contains terminals/nonterminals/identifiers ); type User_Data_Type is tagged limited null record; -- Many test languages don't need this, so we default the procedures -- to null. type User_Data_Access is access all User_Data_Type'Class; procedure Set_Lexer_Terminals (User_Data : in out User_Data_Type; Lexer : in WisiToken.Lexer.Handle; Terminals : in Base_Token_Array_Access) is null; procedure Reset (User_Data : in out User_Data_Type) is null; -- Reset to start a new parse. procedure Initialize_Actions (User_Data : in out User_Data_Type; Tree : in Syntax_Trees.Tree'Class) is null; -- Called by Execute_Actions, before processing the tree. procedure Lexer_To_Augmented (User_Data : in out User_Data_Type; Token : in Base_Token; Lexer : not null access WisiToken.Lexer.Instance'Class) is null; -- Read auxiliary data from Lexer, do something useful with it. -- Called before parsing, once for each token in the input stream. procedure Delete_Token (User_Data : in out User_Data_Type; Token_Index : in WisiToken.Token_Index) is null; -- Token at Token_Index was deleted in error recovery; update -- remaining tokens and Tree as needed. Called from Execute_Actions -- for each deleted token, before processing the syntax tree. procedure Reduce (User_Data : in out User_Data_Type; Tree : in out Syntax_Trees.Tree'Class; Nonterm : in Valid_Node_Index; Tokens : in Valid_Node_Index_Array) is null; -- Reduce Tokens to Nonterm. Nonterm.Byte_Region is computed by -- caller. type Semantic_Action is access procedure (User_Data : in out User_Data_Type'Class; Tree : in out Syntax_Trees.Tree; Nonterm : in Valid_Node_Index; Tokens : in Valid_Node_Index_Array); -- Routines of this type are called by -- WisiToken.LR.Parser.Execute_Actions when it processes a Nonterm -- node in the syntax tree. Tokens are the children of Nonterm. Null_Action : constant Semantic_Action := null; procedure Clear (Tree : in out Syntax_Trees.Base_Tree); procedure Clear (Tree : in out Syntax_Trees.Tree); -- Delete all Elements and free associated memory; keep results of -- Initialize. procedure Flush (Tree : in out Syntax_Trees.Tree); -- Move all nodes in branched part to shared tree, set Flush mode -- True. procedure Set_Flush_False (Tree : in out Syntax_Trees.Tree); -- Set Flush mode False; use Flush to set True. function Flushed (Tree : in Syntax_Trees.Tree) return Boolean; function Copy_Subtree (Tree : in out Syntax_Trees.Tree; Root : in Valid_Node_Index; Last : in Valid_Node_Index) return Valid_Node_Index with Pre => Tree.Flushed; -- Deep copy (into Tree) subtree of Tree rooted at Root. Stop copying -- after children of Last are copied. Return root of new subtree. -- -- Node index order is preserved. References to objects external to -- tree are shallow copied. function Add_Nonterm (Tree : in out Syntax_Trees.Tree; Production : in Production_ID; Children : in Valid_Node_Index_Array; Action : in Semantic_Action := null; Default_Virtual : in Boolean := False) return Valid_Node_Index with Pre => not Tree.Traversing; -- Add a new Nonterm node, which can be empty. Result points to the -- added node. If Children'Length = 0, set Nonterm.Virtual := -- Default_Virtual. function Add_Terminal (Tree : in out Syntax_Trees.Tree; Terminal : in Token_Index; Terminals : in Base_Token_Arrays.Vector) return Valid_Node_Index with Pre => not Tree.Traversing; -- Add a new Terminal node. Terminal must be an index into Terminals. -- Result points to the added node. function Add_Terminal (Tree : in out Syntax_Trees.Tree; Terminal : in Token_ID) return Valid_Node_Index with Pre => not Tree.Traversing; -- Add a new Virtual_Terminal node with no parent. Result points to -- the added node. function Add_Identifier (Tree : in out Syntax_Trees.Tree; ID : in Token_ID; Identifier : in Identifier_Index; Byte_Region : in WisiToken.Buffer_Region) return Valid_Node_Index with Pre => Tree.Flushed and (not Tree.Traversing); -- Add a new Virtual_Identifier node with no parent. Byte_Region -- should point to an area in the source buffer related to the new -- identifier, to aid debugging. Result points to the added node. procedure Add_Child (Tree : in out Syntax_Trees.Tree; Parent : in Valid_Node_Index; Child : in Valid_Node_Index) with Pre => Tree.Flushed and (not Tree.Traversing) and Tree.Is_Nonterm (Parent); -- Child.Parent must already be set. procedure Set_Children (Tree : in out Syntax_Trees.Tree; Node : in Valid_Node_Index; New_ID : in WisiToken.Production_ID; Children : in Valid_Node_Index_Array) with Pre => Tree.Flushed and (not Tree.Traversing) and Tree.Is_Nonterm (Node); -- Set ID of Node to New_ID, and children to Children; set parent of -- Children to Node. Remove any Action. -- -- New_ID is required, and Action removed, because this is most -- likely a different production. procedure Set_Node_Identifier (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; ID : in Token_ID; Identifier : in Identifier_Index) with Pre => Tree.Flushed and Tree.Is_Nonterm (Node); -- Change Node to a Virtual_Identifier. procedure Set_State (Tree : in out Syntax_Trees.Tree; Node : in Valid_Node_Index; State : in State_Index); function State (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Unknown_State_Index; function Label (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Node_Label; function Children (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Valid_Node_Index_Array with Pre => Tree.Is_Nonterm (Node); function Child (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; Child_Index : in Positive_Index_Type) return Node_Index with Pre => Tree.Is_Nonterm (Node); function Has_Branched_Nodes (Tree : in Syntax_Trees.Tree) return Boolean; function Has_Children (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Boolean; function Has_Parent (Tree : in Syntax_Trees.Tree; Child : in Valid_Node_Index) return Boolean; function Has_Parent (Tree : in Syntax_Trees.Tree; Children : in Valid_Node_Index_Array) return Boolean; function Is_Empty (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Boolean; function Is_Nonterm (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Boolean; function Is_Terminal (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Boolean; function Is_Virtual (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Boolean; function Is_Virtual_Identifier (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Boolean; function Traversing (Tree : in Syntax_Trees.Tree) return Boolean; function Parent (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; Count : in Positive := 1) return Node_Index; -- Return Count parent of Node. procedure Set_Name_Region (Tree : in out Syntax_Trees.Tree; Node : in Valid_Node_Index; Region : in Buffer_Region) with Pre => Tree.Is_Nonterm (Node); function ID (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return WisiToken.Token_ID; function Production_ID (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return WisiToken.Production_ID with Pre => Tree.Is_Nonterm (Node); function Byte_Region (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return WisiToken.Buffer_Region; function RHS_Index (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Natural with Pre => Tree.Is_Nonterm (Node); function Same_Token (Tree_1 : in Syntax_Trees.Tree'Class; Index_1 : in Valid_Node_Index; Tree_2 : in Syntax_Trees.Tree'Class; Index_2 : in Valid_Node_Index) return Boolean; -- True if the two tokens have the same ID and Byte_Region. function Recover_Token (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return WisiToken.Recover_Token; function Recover_Token_Array (Tree : in Syntax_Trees.Tree; Nodes : in Valid_Node_Index_Array) return WisiToken.Recover_Token_Array; -- For non-virtual terminals, copied from Tree.Terminals. For others, -- constructed from Tree data. procedure Set_Augmented (Tree : in out Syntax_Trees.Tree; Node : in Valid_Node_Index; Value : in Base_Token_Class_Access) with Pre => Tree.Is_Nonterm (Node); -- Value will be deallocated when Tree is finalized. function Augmented (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Base_Token_Class_Access with Pre => Tree.Is_Nonterm (Node); -- Returns result of Set_Augmented. function Action (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Semantic_Action with Pre => Tree.Is_Nonterm (Node); function Find_Ancestor (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; ID : in Token_ID) return Node_Index; function Find_Ancestor (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; IDs : in Token_ID_Array) return Node_Index; -- Return the ancestor of Node that contains ID, or Invalid_Node_Index if -- none match. function Find_Sibling (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; ID : in Token_ID) return Node_Index with Pre => Tree.Has_Parent (Node); -- Return the sibling of Node that contains ID, or Invalid_Node_Index if -- none match. function Find_Child (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; ID : in Token_ID) return Node_Index with Pre => Tree.Is_Nonterm (Node); -- Return the child of Node whose ID is ID, or Invalid_Node_Index if -- none match. function Find_Descendant (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; ID : in Token_ID) return Node_Index; -- Return the descendant of Node (may be Node) whose ID is ID, or -- Invalid_Node_Index if none match. function Find_Min_Terminal_Index (Tree : in Syntax_Trees.Tree; Index : in Token_Index) return Node_Index with Post => Find_Min_Terminal_Index'Result = Invalid_Node_Index or else Tree.Is_Nonterm (Find_Min_Terminal_Index'Result); -- Return the first node whose Min_Terminal_Index is Index, or -- Invalid_Node_Index if none match. function Find_Max_Terminal_Index (Tree : in Syntax_Trees.Tree; Index : in Token_Index) return Node_Index with Post => Find_Max_Terminal_Index'Result = Invalid_Node_Index or else Tree.Is_Nonterm (Find_Max_Terminal_Index'Result); -- Return the first node whose Max_Terminal_Index is Index, or -- Invalid_Node_Index if none match. procedure Set_Root (Tree : in out Syntax_Trees.Tree; Root : in Valid_Node_Index); function Root (Tree : in Syntax_Trees.Tree) return Node_Index; -- Return value set by Set_Root; defaults to the last node added. -- returns Invalid_Node_Index if Tree is empty. procedure Process_Tree (Tree : in out Syntax_Trees.Tree; Process_Node : access procedure (Tree : in out Syntax_Trees.Tree; Node : in Valid_Node_Index); Root : in Node_Index := Invalid_Node_Index); -- Traverse subtree of Tree rooted at Root (default Tree.Root) in -- depth-first order, calling Process_Node on each node. function Identifier (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Base_Identifier_Index with Pre => Tree.Is_Virtual_Identifier (Node); function Terminal (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Base_Token_Index with Pre => Tree.Is_Terminal (Node); function Min_Terminal_Index (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Base_Token_Index; function Max_Terminal_Index (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Base_Token_Index; -- Returns lowest/highest index of shared terminal in subtree under -- Node. If result is Invalid_Token_Index, all terminals are virtual, -- or a nonterm is empty. function Get_Terminals (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Valid_Node_Index_Array; -- Return sequence of terminals in Node. -- -- "Terminals" can be Shared_Terminal, Virtual_Terminal, -- Virtual_Identifier. function Get_Terminal_IDs (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Token_ID_Array; -- Same as Get_Terminals, but return the IDs. function First_Terminal_ID (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index) return Token_ID; -- First of Get_Terminal_IDs function Get_IDs (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; ID : in Token_ID) return Valid_Node_Index_Array; -- Return all descendants of Node matching ID. function Image (Tree : in Syntax_Trees.Tree; Node : in Valid_Node_Index; Descriptor : in WisiToken.Descriptor; Include_Children : in Boolean := False) return String; function Image (Tree : in Syntax_Trees.Tree; Nodes : in Valid_Node_Index_Array; Descriptor : in WisiToken.Descriptor) return String; -- For debug and error messages. function First_Index (Tree : in Syntax_Trees.Tree) return Node_Index; function Last_Index (Tree : in Syntax_Trees.Tree) return Node_Index; package Node_Sets is new SAL.Gen_Unbounded_Definite_Vectors (Valid_Node_Index, Boolean, Default_Element => False); function Image (Item : in Node_Sets.Vector; Inverted : in Boolean := False) return String; -- Simple list of numbers, for debugging procedure Print_Tree (Tree : in Syntax_Trees.Tree; Descriptor : in WisiToken.Descriptor; Root : in Node_Index := Invalid_Node_Index) with Pre => Tree.Flushed; -- Print tree rooted at Root (default Tree.Root) to -- Text_IO.Current_Output, for debugging. private type Node (Label : Node_Label := Virtual_Terminal) is -- Label has a default to allow changing the label during tree editing. record ID : WisiToken.Token_ID := Invalid_Token_ID; Byte_Region : Buffer_Region := Null_Buffer_Region; -- Computed by Set_Children, used in Semantic_Check actions and debug -- messages. Parent : Node_Index := Invalid_Node_Index; State : Unknown_State_Index := Unknown_State; -- Parse state that was on stack with this token, to allow undoing a -- reduce. case Label is when Shared_Terminal => Terminal : Token_Index; -- into Parser.Terminals when Virtual_Terminal => null; when Virtual_Identifier => Identifier : Identifier_Index; -- into user data when Nonterm => Virtual : Boolean := False; -- True if any child node is Virtual_Terminal or Nonterm with Virtual -- set. Used by Semantic_Check actions. RHS_Index : Natural; -- With ID, index into Productions. -- Used for debug output, keep for future use. Action : Semantic_Action := null; Name : Buffer_Region := Null_Buffer_Region; -- Name is set and checked by Semantic_Check actions. Children : Valid_Node_Index_Arrays.Vector; Min_Terminal_Index : Base_Token_Index := Invalid_Token_Index; -- Cached for push_back of nonterminals during recovery Max_Terminal_Index : Base_Token_Index := Invalid_Token_Index; -- Cached for building a WisiToken tree from a libadalang tree. Augmented : Base_Token_Class_Access := null; end case; end record; subtype Nonterm_Node is Node (Nonterm); package Node_Arrays is new SAL.Gen_Unbounded_Definite_Vectors (Valid_Node_Index, Node, Default_Element => (others => <>)); type Base_Tree is new Ada.Finalization.Controlled with record Nodes : Node_Arrays.Vector; -- During normal parsing, tokens are added to Nodes by "parallel" -- LALR parsers, but they are all run from one Ada task, so there's -- no need for Nodes to be Protected. Packrat parsing also has a -- single Ada task. -- -- During McKenzie_Recover, which has multiple Ada tasks, the syntax -- tree is read but not modified. Augmented_Present : Boolean := False; -- True if Set_Augmented has been called on any node. Declared in -- Base_Tree so it can be checked by Finalize (Base_Tree) and -- Finalize (Tree). Traversing : Boolean := False; -- True while traversing tree in Process_Tree. -- Declared in Base_Tree so it is cleared by Finalize. end record; type Tree is new Ada.Finalization.Controlled with record Shared_Tree : Base_Tree_Access; -- If we need to set anything (ie parent) in Shared_Tree, we move the -- branch point instead, unless Flush = True. Last_Shared_Node : Node_Index := Invalid_Node_Index; Branched_Nodes : Node_Arrays.Vector; Flush : Boolean := False; -- If Flush is True, all nodes are in Shared_Tree. Otherwise, all -- greater than Last_Shared_Node are in Branched_Nodes. -- -- We maintain Last_Shared_Node when Flush is True or False, so -- subprograms that have no reason to check Flush can rely on -- Last_Shared_Node. Root : Node_Index := Invalid_Node_Index; end record with Type_Invariant => (if Tree.Flush then not Tree.Has_Branched_Nodes); end WisiToken.Syntax_Trees;
37.517606
117
0.686298
cb65beaebc543912f315d72cde99a4780d1d9fa1
159,768
adb
Ada
Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution2/.autopilot/db/dct.bind.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution2/.autopilot/db/dct.bind.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
Vivado_HLS_Tutorial/Design_Analysis/lab1/dct_prj/solution2/.autopilot/db/dct.bind.adb
williambong/Vivado
68efafbc44b65c0bb047dbafc0ff7f1b56ee36bb
[ "MIT" ]
null
null
null
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="11"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>dct</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>input_r</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>input</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>output_r</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>output</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>1</direction> <if_type>1</if_type> <array_size>64</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>58</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_3"> <Value> <Obj> <type>0</type> <id>7</id> <name>buf_2d_in</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>124</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="10" tracking_level="0" version="0"> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second class_id="11" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="12" tracking_level="0" version="0"> <first class_id="13" tracking_level="0" version="0"> <first>dct.cpp</first> <second>dct</second> </first> <second>124</second> </item> </second> </item> </inlineStackInfo> <originalName>buf_2d_in</originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>85</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_4"> <Value> <Obj> <type>0</type> <id>8</id> <name>buf_2d_out</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName>RAM</coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>86</item> </oprand_edges> <opcode>alloca</opcode> </item> <item class_id_reference="9" object_id="_5"> <Value> <Obj> <type>0</type> <id>9</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</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>87</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>indvar_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>89</item> <item>90</item> <item>91</item> <item>92</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name>r_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>94</item> <item>95</item> <item>96</item> <item>97</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>13</id> <name>c_i</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>98</item> <item>99</item> <item>100</item> <item>101</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>14</id> <name>exitcond_flatten</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>102</item> <item>104</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>15</id> <name>indvar_flatten_next</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>105</item> <item>107</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>16</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>108</item> <item>109</item> <item>110</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>20</id> <name>exitcond_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</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>111</item> <item>113</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>21</id> <name>c_i_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>114</item> <item>115</item> <item>116</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>22</id> <name>r</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>103</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>103</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>118</item> <item>119</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>23</id> <name>r_i_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>120</item> <item>121</item> <item>122</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>123</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>125</item> <item>126</item> <item>128</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>26</id> <name>c_i_cast6</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>129</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>30</id> <name>tmp_5_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>130</item> <item>131</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>31</id> <name>tmp_6_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>132</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>32</id> <name>input_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>133</item> <item>135</item> <item>136</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>33</id> <name>input_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>137</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>34</id> <name>tmp_7_i_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>138</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>35</id> <name>tmp_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>140</item> <item>141</item> <item>142</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>36</id> <name>p_addr_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>143</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>37</id> <name>p_addr1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>144</item> <item>145</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>38</id> <name>tmp_2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>146</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>39</id> <name>buf_2d_in_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>147</item> <item>148</item> <item>149</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>40</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>106</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>106</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>150</item> <item>151</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>42</id> <name>c</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>105</lineNumber> <contextFuncName>read_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>128</second> </item> <item> <first> <first>dct.cpp</first> <second>read_data</second> </first> <second>105</second> </item> </second> </item> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>152</item> <item>153</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>43</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>154</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>45</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>130</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>130</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>156</item> <item>157</item> <item>158</item> <item>217</item> </oprand_edges> <opcode>call</opcode> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>46</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</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>159</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>48</id> <name>indvar_flatten1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>160</item> <item>161</item> <item>162</item> <item>163</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>49</id> <name>r_i2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>164</item> <item>165</item> <item>166</item> <item>167</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>50</id> <name>c_i6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>168</item> <item>169</item> <item>170</item> <item>171</item> </oprand_edges> <opcode>phi</opcode> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>51</id> <name>exitcond_flatten1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>172</item> <item>173</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>52</id> <name>indvar_flatten_next1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>174</item> <item>175</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>53</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>176</item> <item>177</item> <item>178</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>57</id> <name>exitcond_i1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</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>179</item> <item>180</item> </oprand_edges> <opcode>icmp</opcode> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>58</id> <name>c_i6_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>181</item> <item>182</item> <item>183</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>59</id> <name>r_s</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>115</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>115</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>184</item> <item>185</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>60</id> <name>r_i2_mid2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>186</item> <item>187</item> <item>188</item> </oprand_edges> <opcode>select</opcode> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>61</id> <name>tmp_3</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>189</item> </oprand_edges> <opcode>trunc</opcode> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>62</id> <name>tmp_i5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>190</item> <item>191</item> <item>192</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>63</id> <name>c_i6_cast2</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>193</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>67</id> <name>tmp_8_i_trn_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>194</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>68</id> <name>tmp_4</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>195</item> <item>196</item> <item>197</item> </oprand_edges> <opcode>bitconcatenate</opcode> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>69</id> <name>p_addr2_cast</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>198</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>70</id> <name>p_addr3</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>199</item> <item>200</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>71</id> <name>tmp_5</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>201</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>72</id> <name>buf_2d_out_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>202</item> <item>203</item> <item>204</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>73</id> <name>buf_2d_out_load</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>205</item> </oprand_edges> <opcode>load</opcode> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>74</id> <name>tmp_9_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>206</item> <item>207</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>75</id> <name>tmp_3_i</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>208</item> </oprand_edges> <opcode>zext</opcode> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>76</id> <name>output_addr</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>209</item> <item>210</item> <item>211</item> </oprand_edges> <opcode>getelementptr</opcode> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>77</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>118</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>118</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>212</item> <item>213</item> </oprand_edges> <opcode>store</opcode> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>79</id> <name>c_1</name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>117</lineNumber> <contextFuncName>write_data</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>133</second> </item> <item> <first> <first>dct.cpp</first> <second>write_data</second> </first> <second>117</second> </item> </second> </item> </inlineStackInfo> <originalName>c</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>214</item> <item>215</item> </oprand_edges> <opcode>add</opcode> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>80</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>216</item> </oprand_edges> <opcode>br</opcode> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>82</id> <name></name> <fileName>dct.cpp</fileName> <fileDirectory>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</fileDirectory> <lineNumber>134</lineNumber> <contextFuncName>dct</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>d:/opt/source/Vivado/Vivado_HLS_Tutorial/Design_Analysis/lab1</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>dct.cpp</first> <second>dct</second> </first> <second>134</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>10</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_61"> <Value> <Obj> <type>2</type> <id>84</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_62"> <Value> <Obj> <type>2</type> <id>88</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_63"> <Value> <Obj> <type>2</type> <id>93</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_64"> <Value> <Obj> <type>2</type> <id>103</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_65"> <Value> <Obj> <type>2</type> <id>106</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_66"> <Value> <Obj> <type>2</type> <id>112</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_67"> <Value> <Obj> <type>2</type> <id>117</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_68"> <Value> <Obj> <type>2</type> <id>127</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_69"> <Value> <Obj> <type>2</type> <id>134</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_70"> <Value> <Obj> <type>2</type> <id>155</id> <name>dct_dct_2d</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <const_type>6</const_type> <content>&lt;constant:dct_dct_2d&gt;</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_71"> <Obj> <type>3</type> <id>10</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>7</item> <item>8</item> <item>9</item> </node_objs> </item> <item class_id_reference="18" object_id="_72"> <Obj> <type>3</type> <id>17</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>11</item> <item>12</item> <item>13</item> <item>14</item> <item>15</item> <item>16</item> </node_objs> </item> <item class_id_reference="18" object_id="_73"> <Obj> <type>3</type> <id>44</id> <name>.reset</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>20</count> <item_version>0</item_version> <item>20</item> <item>21</item> <item>22</item> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>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>42</item> <item>43</item> </node_objs> </item> <item class_id_reference="18" object_id="_74"> <Obj> <type>3</type> <id>47</id> <name>read_data.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>45</item> <item>46</item> </node_objs> </item> <item class_id_reference="18" object_id="_75"> <Obj> <type>3</type> <id>54</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>6</count> <item_version>0</item_version> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> </node_objs> </item> <item class_id_reference="18" object_id="_76"> <Obj> <type>3</type> <id>81</id> <name>.reset10</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>20</count> <item_version>0</item_version> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> <item>63</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>79</item> <item>80</item> </node_objs> </item> <item class_id_reference="18" object_id="_77"> <Obj> <type>3</type> <id>83</id> <name>write_data.exit</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>82</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>126</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_78"> <id>85</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>7</sink_obj> </item> <item class_id_reference="20" object_id="_79"> <id>86</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>8</sink_obj> </item> <item class_id_reference="20" object_id="_80"> <id>87</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>9</sink_obj> </item> <item class_id_reference="20" object_id="_81"> <id>89</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_82"> <id>90</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_83"> <id>91</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_84"> <id>92</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>11</sink_obj> </item> <item class_id_reference="20" object_id="_85"> <id>94</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_86"> <id>95</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_87"> <id>96</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_88"> <id>97</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>12</sink_obj> </item> <item class_id_reference="20" object_id="_89"> <id>98</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_90"> <id>99</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_91"> <id>100</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_92"> <id>101</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>13</sink_obj> </item> <item class_id_reference="20" object_id="_93"> <id>102</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_94"> <id>104</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_95"> <id>105</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_96"> <id>107</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_97"> <id>108</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_98"> <id>109</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_99"> <id>110</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_100"> <id>111</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_101"> <id>113</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_102"> <id>114</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_103"> <id>115</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_104"> <id>116</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_105"> <id>118</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_106"> <id>119</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_107"> <id>120</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_108"> <id>121</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_109"> <id>122</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_110"> <id>123</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_111"> <id>126</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_112"> <id>128</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_113"> <id>129</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>26</sink_obj> </item> <item class_id_reference="20" object_id="_114"> <id>130</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_115"> <id>131</id> <edge_type>1</edge_type> <source_obj>25</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_116"> <id>132</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_117"> <id>133</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_118"> <id>135</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_119"> <id>136</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_120"> <id>137</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_121"> <id>138</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_122"> <id>141</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_123"> <id>142</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_124"> <id>143</id> <edge_type>1</edge_type> <source_obj>35</source_obj> <sink_obj>36</sink_obj> </item> <item class_id_reference="20" object_id="_125"> <id>144</id> <edge_type>1</edge_type> <source_obj>36</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_126"> <id>145</id> <edge_type>1</edge_type> <source_obj>34</source_obj> <sink_obj>37</sink_obj> </item> <item class_id_reference="20" object_id="_127"> <id>146</id> <edge_type>1</edge_type> <source_obj>37</source_obj> <sink_obj>38</sink_obj> </item> <item class_id_reference="20" object_id="_128"> <id>147</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_129"> <id>148</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_130"> <id>149</id> <edge_type>1</edge_type> <source_obj>38</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_131"> <id>150</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_132"> <id>151</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_133"> <id>152</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_134"> <id>153</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_135"> <id>154</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_136"> <id>156</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_137"> <id>157</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_138"> <id>158</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_139"> <id>159</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_140"> <id>160</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_141"> <id>161</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_142"> <id>162</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_143"> <id>163</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_144"> <id>164</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_145"> <id>165</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_146"> <id>166</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_147"> <id>167</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_148"> <id>168</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_149"> <id>169</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_150"> <id>170</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_151"> <id>171</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_152"> <id>172</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_153"> <id>173</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_154"> <id>174</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_155"> <id>175</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_156"> <id>176</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_157"> <id>177</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_158"> <id>178</id> <edge_type>2</edge_type> <source_obj>83</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_159"> <id>179</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_160"> <id>180</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_161"> <id>181</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_162"> <id>182</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_163"> <id>183</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_164"> <id>184</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_165"> <id>185</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_166"> <id>186</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_167"> <id>187</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_168"> <id>188</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_169"> <id>189</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_170"> <id>191</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_171"> <id>192</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_172"> <id>193</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_173"> <id>194</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_174"> <id>196</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_175"> <id>197</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_176"> <id>198</id> <edge_type>1</edge_type> <source_obj>68</source_obj> <sink_obj>69</sink_obj> </item> <item class_id_reference="20" object_id="_177"> <id>199</id> <edge_type>1</edge_type> <source_obj>69</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_178"> <id>200</id> <edge_type>1</edge_type> <source_obj>67</source_obj> <sink_obj>70</sink_obj> </item> <item class_id_reference="20" object_id="_179"> <id>201</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>71</sink_obj> </item> <item class_id_reference="20" object_id="_180"> <id>202</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_181"> <id>203</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_182"> <id>204</id> <edge_type>1</edge_type> <source_obj>71</source_obj> <sink_obj>72</sink_obj> </item> <item class_id_reference="20" object_id="_183"> <id>205</id> <edge_type>1</edge_type> <source_obj>72</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_184"> <id>206</id> <edge_type>1</edge_type> <source_obj>63</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_185"> <id>207</id> <edge_type>1</edge_type> <source_obj>62</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_186"> <id>208</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_187"> <id>209</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_188"> <id>210</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_189"> <id>211</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_190"> <id>212</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_191"> <id>213</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_192"> <id>214</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_193"> <id>215</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_194"> <id>216</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_195"> <id>217</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_196"> <id>278</id> <edge_type>2</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_197"> <id>279</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_198"> <id>280</id> <edge_type>2</edge_type> <source_obj>17</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_199"> <id>281</id> <edge_type>2</edge_type> <source_obj>44</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_200"> <id>282</id> <edge_type>2</edge_type> <source_obj>47</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_201"> <id>283</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_202"> <id>284</id> <edge_type>2</edge_type> <source_obj>54</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_203"> <id>285</id> <edge_type>2</edge_type> <source_obj>81</source_obj> <sink_obj>54</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_204"> <mId>1</mId> <mTag>dct</mTag> <mType>0</mType> <sub_regions> <count>5</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1850</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_205"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>10</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_206"> <mId>3</mId> <mTag>RD_Loop_Row_RD_Loop_Col</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>17</item> <item>44</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_207"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>47</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>1718</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_208"> <mId>5</mId> <mTag>WR_Loop_Row_WR_Loop_Col</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>54</item> <item>81</item> </basic_blocks> <mII>1</mII> <mDepth>2</mDepth> <mMinTripCount>64</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>64</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_209"> <mId>6</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>83</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_210"> <states class_id="25" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_211"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>6</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_212"> <id>4</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_213"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_214"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_215"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_216"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_217"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_218"> <id>2</id> <operations> <count>18</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_219"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_220"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_221"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_222"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_223"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_224"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_225"> <id>20</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_226"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_227"> <id>22</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_228"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_229"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_230"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_231"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_232"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_233"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_234"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_235"> <id>33</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_236"> <id>42</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_237"> <id>3</id> <operations> <count>15</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_238"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_239"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_240"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_241"> <id>28</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_242"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_243"> <id>33</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_244"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_245"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_246"> <id>36</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_247"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_248"> <id>38</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_249"> <id>39</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_250"> <id>40</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_251"> <id>41</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_252"> <id>43</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_253"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_254"> <id>45</id> <stage>2</stage> <latency>2</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_255"> <id>5</id> <operations> <count>2</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_256"> <id>45</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_257"> <id>46</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_258"> <id>6</id> <operations> <count>22</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_259"> <id>48</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_260"> <id>49</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_261"> <id>50</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_262"> <id>51</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_263"> <id>52</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_264"> <id>53</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_265"> <id>57</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_266"> <id>58</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_267"> <id>59</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_268"> <id>60</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_269"> <id>61</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_270"> <id>62</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_271"> <id>63</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_272"> <id>67</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_273"> <id>68</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_274"> <id>69</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_275"> <id>70</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_276"> <id>71</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_277"> <id>72</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_278"> <id>73</id> <stage>2</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_279"> <id>74</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_280"> <id>79</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_281"> <id>7</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_282"> <id>55</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_283"> <id>56</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_284"> <id>64</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_285"> <id>65</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_286"> <id>66</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_287"> <id>73</id> <stage>1</stage> <latency>2</latency> </item> <item class_id_reference="28" object_id="_288"> <id>75</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_289"> <id>76</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_290"> <id>77</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_291"> <id>78</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_292"> <id>80</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_293"> <id>8</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_294"> <id>82</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>9</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_295"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>45</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_296"> <inState>4</inState> <outState>5</outState> <condition> <id>52</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_297"> <inState>5</inState> <outState>6</outState> <condition> <id>54</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_298"> <inState>3</inState> <outState>2</outState> <condition> <id>62</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_299"> <inState>2</inState> <outState>4</outState> <condition> <id>61</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>14</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_300"> <inState>2</inState> <outState>3</outState> <condition> <id>63</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>14</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_301"> <inState>7</inState> <outState>6</outState> <condition> <id>65</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_302"> <inState>6</inState> <outState>8</outState> <condition> <id>64</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>51</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_303"> <inState>6</inState> <outState>7</outState> <condition> <id>66</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>51</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_304"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>0</count> <item_version>0</item_version> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>0</count> <item_version>0</item_version> </dp_multiplexer_resource> <dp_register_resource> <count>0</count> <item_version>0</item_version> </dp_register_resource> <dp_component_map class_id="38" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>0</count> <item_version>0</item_version> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="39" tracking_level="0" version="0"> <count>58</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>7</first> <second class_id="41" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>8</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>9</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>11</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>12</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>14</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>16</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>30</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>34</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>36</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>38</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>39</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>40</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>43</first> <second> <first>2</first> <second>0</second> </second> </item> <item> <first>45</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>46</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>48</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>49</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>52</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>53</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>57</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>63</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>68</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>69</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>70</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>71</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>72</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>82</first> <second> <first>5</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="42" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="43" tracking_level="0" version="0"> <first>10</first> <second class_id="44" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>17</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>44</first> <second> <first>1</first> <second>2</second> </second> </item> <item> <first>47</first> <second> <first>2</first> <second>3</second> </second> </item> <item> <first>54</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>5</second> </second> </item> <item> <first>83</first> <second> <first>5</first> <second>5</second> </second> </item> </bblk_ent_exit> <regions class_id="45" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="46" tracking_level="1" version="0" object_id="_305"> <region_name>RD_Loop_Row_RD_Loop_Col</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>17</item> <item>44</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> <item class_id_reference="46" object_id="_306"> <region_name>WR_Loop_Row_WR_Loop_Col</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>54</item> <item>81</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>2</pipe_depth> </item> </regions> <dp_fu_nodes class_id="47" tracking_level="0" version="0"> <count>51</count> <item_version>0</item_version> <item class_id="48" tracking_level="0" version="0"> <first>62</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>66</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>70</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>77</first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>33</item> </second> </item> <item> <first>82</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>88</first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first>94</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>100</first> <second> <count>2</count> <item_version>0</item_version> <item>73</item> <item>73</item> </second> </item> <item> <first>105</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>112</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> <item> <first>122</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>133</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>144</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>155</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>166</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>177</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>184</first> <second> <count>2</count> <item_version>0</item_version> <item>45</item> <item>45</item> </second> </item> <item> <first>192</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>198</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>210</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>218</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>224</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>232</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>236</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>244</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>248</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>254</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>259</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>265</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>268</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>275</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>279</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>285</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>290</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>296</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>302</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>308</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>316</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>322</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>330</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>334</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>342</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>346</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>350</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>358</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>362</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>368</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>373</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>379</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>385</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="50" tracking_level="0" version="0"> <count>46</count> <item_version>0</item_version> <item class_id="51" tracking_level="0" version="0"> <first>buf_2d_in_addr_gep_fu_82</first> <second> <count>1</count> <item_version>0</item_version> <item>39</item> </second> </item> <item> <first>buf_2d_in_alloca_fu_62</first> <second> <count>1</count> <item_version>0</item_version> <item>7</item> </second> </item> <item> <first>buf_2d_out_addr_gep_fu_94</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>buf_2d_out_alloca_fu_66</first> <second> <count>1</count> <item_version>0</item_version> <item>8</item> </second> </item> <item> <first>c_1_fu_379</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>c_fu_259</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>c_i6_cast2_fu_342</first> <second> <count>1</count> <item_version>0</item_version> <item>63</item> </second> </item> <item> <first>c_i6_mid2_fu_308</first> <second> <count>1</count> <item_version>0</item_version> <item>58</item> </second> </item> <item> <first>c_i6_phi_fu_177</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>c_i_cast6_fu_244</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>c_i_mid2_fu_210</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>c_i_phi_fu_144</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>exitcond_flatten1_fu_290</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>exitcond_flatten_fu_192</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>exitcond_i1_fu_302</first> <second> <count>1</count> <item_version>0</item_version> <item>57</item> </second> </item> <item> <first>exitcond_i_fu_204</first> <second> <count>1</count> <item_version>0</item_version> <item>20</item> </second> </item> <item> <first>indvar_flatten1_phi_fu_155</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>indvar_flatten_next1_fu_296</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>indvar_flatten_next_fu_198</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>indvar_flatten_phi_fu_122</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>input_addr_gep_fu_70</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>output_addr_gep_fu_105</first> <second> <count>1</count> <item_version>0</item_version> <item>76</item> </second> </item> <item> <first>p_addr1_fu_279</first> <second> <count>1</count> <item_version>0</item_version> <item>37</item> </second> </item> <item> <first>p_addr2_cast_fu_358</first> <second> <count>1</count> <item_version>0</item_version> <item>69</item> </second> </item> <item> <first>p_addr3_fu_362</first> <second> <count>1</count> <item_version>0</item_version> <item>70</item> </second> </item> <item> <first>p_addr_cast_fu_275</first> <second> <count>1</count> <item_version>0</item_version> <item>36</item> </second> </item> <item> <first>r_fu_218</first> <second> <count>1</count> <item_version>0</item_version> <item>22</item> </second> </item> <item> <first>r_i2_mid2_fu_322</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>r_i2_phi_fu_166</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>r_i_mid2_fu_224</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>r_i_phi_fu_133</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>r_s_fu_316</first> <second> <count>1</count> <item_version>0</item_version> <item>59</item> </second> </item> <item> <first>tmp_1_fu_268</first> <second> <count>1</count> <item_version>0</item_version> <item>35</item> </second> </item> <item> <first>tmp_2_fu_285</first> <second> <count>1</count> <item_version>0</item_version> <item>38</item> </second> </item> <item> <first>tmp_3_fu_330</first> <second> <count>1</count> <item_version>0</item_version> <item>61</item> </second> </item> <item> <first>tmp_3_i_fu_385</first> <second> <count>1</count> <item_version>0</item_version> <item>75</item> </second> </item> <item> <first>tmp_4_fu_350</first> <second> <count>1</count> <item_version>0</item_version> <item>68</item> </second> </item> <item> <first>tmp_5_fu_368</first> <second> <count>1</count> <item_version>0</item_version> <item>71</item> </second> </item> <item> <first>tmp_5_i_fu_248</first> <second> <count>1</count> <item_version>0</item_version> <item>30</item> </second> </item> <item> <first>tmp_6_i_fu_254</first> <second> <count>1</count> <item_version>0</item_version> <item>31</item> </second> </item> <item> <first>tmp_7_i_trn_cast_fu_265</first> <second> <count>1</count> <item_version>0</item_version> <item>34</item> </second> </item> <item> <first>tmp_8_i_trn_cast_fu_346</first> <second> <count>1</count> <item_version>0</item_version> <item>67</item> </second> </item> <item> <first>tmp_9_i_fu_373</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>tmp_fu_232</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>tmp_i5_fu_334</first> <second> <count>1</count> <item_version>0</item_version> <item>62</item> </second> </item> <item> <first>tmp_i_fu_236</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>1</count> <item_version>0</item_version> <item> <first>grp_dct_dct_2d_fu_184</first> <second> <count>2</count> <item_version>0</item_version> <item>45</item> <item>45</item> </second> </item> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="52" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="53" tracking_level="0" version="0"> <first class_id="54" tracking_level="0" version="0"> <first>buf_2d_in</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>40</item> </second> </item> <item> <first> <first>buf_2d_in</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first> <first>buf_2d_out</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>73</item> <item>73</item> </second> </item> <item> <first> <first>buf_2d_out</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first> <first>dct_coeff_table</first> <second>100</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>45</item> </second> </item> <item> <first> <first>input_r</first> <second>0</second> </first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>33</item> </second> </item> <item> <first> <first>output_r</first> <second>0</second> </first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> </dp_mem_port_nodes> <dp_reg_nodes> <count>18</count> <item_version>0</item_version> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>173</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>389</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>393</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>398</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>403</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>409</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>414</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>419</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>423</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>428</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>433</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>438</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> <item> <first>443</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>18</count> <item_version>0</item_version> <item> <first>buf_2d_out_addr_reg_433</first> <second> <count>1</count> <item_version>0</item_version> <item>72</item> </second> </item> <item> <first>c_1_reg_443</first> <second> <count>1</count> <item_version>0</item_version> <item>79</item> </second> </item> <item> <first>c_i6_reg_173</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>c_i_mid2_reg_398</first> <second> <count>1</count> <item_version>0</item_version> <item>21</item> </second> </item> <item> <first>c_i_reg_140</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>c_reg_414</first> <second> <count>1</count> <item_version>0</item_version> <item>42</item> </second> </item> <item> <first>exitcond_flatten1_reg_419</first> <second> <count>1</count> <item_version>0</item_version> <item>51</item> </second> </item> <item> <first>exitcond_flatten_reg_389</first> <second> <count>1</count> <item_version>0</item_version> <item>14</item> </second> </item> <item> <first>indvar_flatten1_reg_151</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>indvar_flatten_next1_reg_423</first> <second> <count>1</count> <item_version>0</item_version> <item>52</item> </second> </item> <item> <first>indvar_flatten_next_reg_393</first> <second> <count>1</count> <item_version>0</item_version> <item>15</item> </second> </item> <item> <first>indvar_flatten_reg_118</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>input_addr_reg_409</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>r_i2_mid2_reg_428</first> <second> <count>1</count> <item_version>0</item_version> <item>60</item> </second> </item> <item> <first>r_i2_reg_162</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>r_i_mid2_reg_403</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>r_i_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_9_i_reg_438</first> <second> <count>1</count> <item_version>0</item_version> <item>74</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>6</count> <item_version>0</item_version> <item> <first>118</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>129</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>140</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>151</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>162</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>173</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>6</count> <item_version>0</item_version> <item> <first>c_i6_reg_173</first> <second> <count>1</count> <item_version>0</item_version> <item>50</item> </second> </item> <item> <first>c_i_reg_140</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>indvar_flatten1_reg_151</first> <second> <count>1</count> <item_version>0</item_version> <item>48</item> </second> </item> <item> <first>indvar_flatten_reg_118</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>r_i2_reg_162</first> <second> <count>1</count> <item_version>0</item_version> <item>49</item> </second> </item> <item> <first>r_i_reg_129</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="55" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="56" tracking_level="0" version="0"> <first>input_r(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>load</first> <second> <count>2</count> <item_version>0</item_version> <item>33</item> <item>33</item> </second> </item> </second> </item> <item> <first>output_r(p0)</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>store</first> <second> <count>1</count> <item_version>0</item_version> <item>77</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="57" tracking_level="0" version="0"> <count>2</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>1</first> <second>RAM</second> </item> <item> <first>2</first> <second>RAM</second> </item> </port2core> <node2core> <count>2</count> <item_version>0</item_version> <item> <first>7</first> <second>RAM</second> </item> <item> <first>8</first> <second>RAM</second> </item> </node2core> </syndb> </boost_serialization>
24.632747
98
0.575666
dc9e19c1984e9557bed9d1847916371fffe16f78
4,288
adb
Ada
gcc-gcc-7_3_0-release/gcc/ada/s-osinte-dragonfly.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/s-osinte-dragonfly.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/s-osinte-dragonfly.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . O S _ I N T E R F A C E -- -- -- -- B o d y -- -- -- -- Copyright (C) 1991-2015, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. It is -- -- now maintained by Ada Core Technologies Inc. in cooperation with Florida -- -- State University (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ -- This is the DragonFly THREADS version of this package with Interfaces.C; use Interfaces.C; package body System.OS_Interface is ----------- -- Errno -- ----------- function Errno return int is type int_ptr is access all int; function internal_errno return int_ptr; pragma Import (C, internal_errno, "__get_errno"); begin return (internal_errno.all); end Errno; -------------------- -- Get_Stack_Base -- -------------------- function Get_Stack_Base (thread : pthread_t) return Address is pragma Unreferenced (thread); begin return Null_Address; end Get_Stack_Base; ------------------ -- pthread_init -- ------------------ procedure pthread_init is begin null; end pthread_init; ----------------- -- To_Duration -- ----------------- function To_Duration (TS : timespec) return Duration is begin return Duration (TS.ts_sec) + Duration (TS.ts_nsec) / 10#1#E9; end To_Duration; ------------------------ -- To_Target_Priority -- ------------------------ function To_Target_Priority (Prio : System.Any_Priority) return Interfaces.C.int is begin return Interfaces.C.int (Prio); end To_Target_Priority; ----------------- -- To_Timespec -- ----------------- function To_Timespec (D : Duration) return timespec is S : time_t; F : Duration; begin S := time_t (Long_Long_Integer (D)); F := D - Duration (S); -- If F has negative value due to a round-up, adjust for positive F -- value. if F < 0.0 then S := S - 1; F := F + 1.0; end if; return timespec'(ts_sec => S, ts_nsec => long (Long_Long_Integer (F * 10#1#E9))); end To_Timespec; end System.OS_Interface;
36.649573
78
0.444729
2058107496bdfe72a108e478d4de5dbef9aa6694
2,880
adb
Ada
src/tcl-lists.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
2
2020-12-09T07:27:07.000Z
2021-10-19T13:31:54.000Z
src/tcl-lists.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
src/tcl-lists.adb
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
-- Copyright (c) 2021 Bartek thindil Jasicki <[email protected]> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; use Interfaces.C.Strings; with Tashy2; with Tcl.Commands; package body Tcl.Lists is function Split_List (List: String; Interpreter: Tcl_Interpreter := Get_Interpreter) return Array_List with SPARK_Mode => Off is use Tcl.Commands; function Tcl_Split_List (Interp: Tcl_Interpreter; Tcl_List: chars_ptr; Argc_Ptr: out int; Argv_Ptr: out Argv_Pointer.Pointer) return Tcl_Results with Import, Convention => C, External_Name => "Tcl_SplitList"; Amount: Natural := 0; Values: Argv_Pointer.Pointer; begin if Tcl_Split_List (Interp => Interpreter, Tcl_List => New_String(Str => List), Argc_Ptr => int(Amount), Argv_Ptr => Values) = TCL_ERROR then return Empty_Array_List; end if; if Amount = 0 then return Empty_Array_List; end if; return Ada_Array: Array_List(1 .. Amount) := (others => Null_Tcl_String) do Convert_List_To_Array_Loop : for I in Ada_Array'Range loop Ada_Array(I) := To_Unbounded_String (Source => Get_Argument(Arguments_Pointer => Values, Index => I - 1)); end loop Convert_List_To_Array_Loop; end return; end Split_List; function Merge_List(List: Array_List) return String is use Tashy2; function Tcl_Merge (Argc: int; Argv: chars_ptr_array) return chars_ptr with Global => null, Import, Convention => C, External_Name => "Tcl_Merge"; New_List: chars_ptr_array(1 .. List'Length) := (others => Null_Ptr); Index: size_t := New_List'First; begin Convert_Ada_String_To_C_Loop : for Item of List loop pragma Loop_Invariant(Index in New_List'Range); New_List(Index) := To_C_String(Str => To_Ada_String(Source => Item)); Index := Index + 1; exit Convert_Ada_String_To_C_Loop when Index > New_List'Last; end loop Convert_Ada_String_To_C_Loop; return From_C_String (Item => Tcl_Merge(Argc => List'Length, Argv => New_List)); end Merge_List; end Tcl.Lists;
34.698795
78
0.652083
187e8d402f6ec2f8339085c87fab1ea216abdcc2
54,128
adb
Ada
tools-src/gnu/gcc/gcc/ada/s-tassta.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/s-tassta.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/s-tassta.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNU ADA RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- S Y S T E M . T A S K I N G . S T A G E S -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1991-2001 Florida State University -- -- -- -- 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. It is -- -- now maintained by Ada Core Technologies Inc. in cooperation with Florida -- -- State University (http://www.gnat.com). -- -- -- ------------------------------------------------------------------------------ pragma Polling (Off); -- Turn off polling, we do not want ATC polling to take place during -- tasking operations. It causes infinite loops and other problems. with Ada.Exceptions; -- used for Raise_Exception with System.Tasking.Debug; pragma Warnings (Off, System.Tasking.Debug); -- used for enabling tasking facilities with gdb with System.Address_Image; -- used for the function itself. with System.Parameters; -- used for Size_Type with System.Task_Info; -- used for Task_Info_Type -- Task_Image_Type with System.Task_Primitives.Operations; -- used for Finalize_Lock -- Enter_Task -- Write_Lock -- Unlock -- Sleep -- Wakeup -- Get_Priority -- Lock/Unlock_All_Tasks_List -- New_ATCB with System.Soft_Links; -- These are procedure pointers to non-tasking routines that use -- task specific data. In the absence of tasking, these routines -- refer to global data. In the presense of tasking, they must be -- replaced with pointers to task-specific versions. -- Also used for Create_TSD, Destroy_TSD, Get_Current_Excep with System.Tasking.Initialization; -- Used for Remove_From_All_Tasks_List -- Defer_Abort -- Undefer_Abort -- Initialization.Poll_Base_Priority_Change -- Finalize_Attributes_Link -- Initialize_Attributes_Link pragma Elaborate_All (System.Tasking.Initialization); -- This insures that tasking is initialized if any tasks are created. with System.Tasking.Utilities; -- Used for Make_Passive -- Abort_One_Task with System.Tasking.Queuing; -- Used for Dequeue_Head with System.Tasking.Rendezvous; -- Used for Call_Simple with System.OS_Primitives; -- Used for Delay_Modes with System.Finalization_Implementation; -- Used for System.Finalization_Implementation.Finalize_Global_List with Interfaces.C; -- Used for type Unsigned. with System.Secondary_Stack; -- used for SS_Init; with System.Storage_Elements; -- used for Storage_Array; with System.Standard_Library; -- used for Exception_Trace package body System.Tasking.Stages is package STPO renames System.Task_Primitives.Operations; package SSL renames System.Soft_Links; package SSE renames System.Storage_Elements; package SST renames System.Secondary_Stack; use Ada.Exceptions; use System.Task_Primitives; use System.Task_Primitives.Operations; use System.Task_Info; procedure Wakeup_Entry_Caller (Self_ID : Task_ID; Entry_Call : Entry_Call_Link; New_State : Entry_Call_State) renames Initialization.Wakeup_Entry_Caller; procedure Cancel_Queued_Entry_Calls (T : Task_ID) renames Utilities.Cancel_Queued_Entry_Calls; procedure Abort_One_Task (Self_ID : Task_ID; T : Task_ID) renames Utilities.Abort_One_Task; ----------------------- -- Local Subprograms -- ----------------------- procedure Notify_Exception (Self_Id : Task_ID; Excep : Exception_Occurrence); -- This procedure will output the task ID and the exception information, -- including traceback if available. procedure Task_Wrapper (Self_ID : Task_ID); -- This is the procedure that is called by the GNULL from the -- new context when a task is created. It waits for activation -- and then calls the task body procedure. When the task body -- procedure completes, it terminates the task. procedure Vulnerable_Complete_Task (Self_ID : Task_ID); -- Complete the calling task. -- This procedure must be called with abort deferred. -- It should only be called by Complete_Task and -- Finalizate_Global_Tasks (for the environment task). procedure Vulnerable_Complete_Master (Self_ID : Task_ID); -- Complete the current master of the calling task. -- This procedure must be called with abort deferred. -- It should only be called by Vulnerable_Complete_Task and -- Complete_Master. procedure Vulnerable_Complete_Activation (Self_ID : Task_ID); -- Signal to Self_ID's activator that Self_ID has -- completed activation. -- -- Does not defer abortion (unlike Complete_Activation). procedure Abort_Dependents (Self_ID : Task_ID); -- Abort all the dependents of Self at our current master -- nesting level. procedure Vulnerable_Free_Task (T : Task_ID); -- Recover all runtime system storage associated with the task T. -- This should only be called after T has terminated and will no -- longer be referenced. -- -- For tasks created by an allocator that fails, due to an exception, -- it is called from Expunge_Unactivated_Tasks. -- -- It is also called from Unchecked_Deallocation, for objects that -- are or contain tasks. -- -- Different code is used at master completion, in Terminate_Dependents, -- due to a need for tighter synchronization with the master. procedure Terminate_Task (Self_ID : Task_ID); -- Terminate the calling task. -- This should only be called by the Task_Wrapper procedure. ---------------------- -- Abort_Dependents -- ---------------------- -- Abort all the direct dependents of Self at its current master -- nesting level, plus all of their dependents, transitively. -- No locks should be held when this routine is called. procedure Abort_Dependents (Self_ID : Task_ID) is C : Task_ID; P : Task_ID; begin Lock_All_Tasks_List; C := All_Tasks_List; while C /= null loop P := C.Common.Parent; while P /= null loop if P = Self_ID then -- ??? C is supposed to take care of its own dependents, so -- there should be no need to take worry about them. Need to -- double check this. if C.Master_of_Task = Self_ID.Master_Within then Abort_One_Task (Self_ID, C); C.Dependents_Aborted := True; end if; exit; end if; P := P.Common.Parent; end loop; C := C.Common.All_Tasks_Link; end loop; Self_ID.Dependents_Aborted := True; Unlock_All_Tasks_List; end Abort_Dependents; ----------------- -- Abort_Tasks -- ----------------- procedure Abort_Tasks (Tasks : Task_List) is begin Utilities.Abort_Tasks (Tasks); end Abort_Tasks; -------------------- -- Activate_Tasks -- -------------------- -- Note that locks of activator and activated task are both locked -- here. This is necessary because C.Common.State and -- Self.Common.Wait_Count have to be synchronized. This is safe from -- deadlock because the activator is always created before the activated -- task. That satisfies our in-order-of-creation ATCB locking policy. -- At one point, we may also lock the parent, if the parent is -- different from the activator. That is also consistent with the -- lock ordering policy, since the activator cannot be created -- before the parent. -- Since we are holding both the activator's lock, and Task_Wrapper -- locks that before it does anything more than initialize the -- low-level ATCB components, it should be safe to wait to update -- the counts until we see that the thread creation is successful. -- If the thread creation fails, we do need to close the entries -- of the task. The first phase, of dequeuing calls, only requires -- locking the acceptor's ATCB, but the waking up of the callers -- requires locking the caller's ATCB. We cannot safely do this -- while we are holding other locks. Therefore, the queue-clearing -- operation is done in a separate pass over the activation chain. procedure Activate_Tasks (Chain_Access : Activation_Chain_Access) is Self_ID : constant Task_ID := STPO.Self; P : Task_ID; C : Task_ID; Next_C, Last_C : Task_ID; Activate_Prio : System.Any_Priority; Success : Boolean; All_Elaborated : Boolean := True; begin pragma Debug (Debug.Trace (Self_ID, "Activate_Tasks", 'C')); Initialization.Defer_Abort_Nestable (Self_ID); pragma Assert (Self_ID.Common.Wait_Count = 0); -- Lock All_Tasks_L, to prevent activated tasks -- from racing ahead before we finish activating the chain. -- ????? -- Is there some less heavy-handed way? -- In an earlier version, we used the activator's lock here, -- but that violated the locking order rule when we had -- to lock the parent later. Lock_All_Tasks_List; -- Check that all task bodies have been elaborated. C := Chain_Access.T_ID; Last_C := null; while C /= null loop if C.Common.Elaborated /= null and then not C.Common.Elaborated.all then All_Elaborated := False; end if; -- Reverse the activation chain so that tasks are -- activated in the same order they're declared. Next_C := C.Common.Activation_Link; C.Common.Activation_Link := Last_C; Last_C := C; C := Next_C; end loop; Chain_Access.T_ID := Last_C; if not All_Elaborated then Unlock_All_Tasks_List; Initialization.Undefer_Abort_Nestable (Self_ID); Raise_Exception (Program_Error'Identity, "Some tasks have not been elaborated"); end if; -- Activate all the tasks in the chain. -- Creation of the thread of control was deferred until -- activation. So create it now. C := Chain_Access.T_ID; while C /= null loop if C.Common.State /= Terminated then pragma Assert (C.Common.State = Unactivated); P := C.Common.Parent; Write_Lock (P); Write_Lock (C); if C.Common.Base_Priority < Get_Priority (Self_ID) then Activate_Prio := Get_Priority (Self_ID); else Activate_Prio := C.Common.Base_Priority; end if; System.Task_Primitives.Operations.Create_Task (C, Task_Wrapper'Address, Parameters.Size_Type (C.Common.Compiler_Data.Pri_Stack_Info.Size), Activate_Prio, Success); -- There would be a race between the created task and -- the creator to do the following initialization, -- if we did not have a Lock/Unlock_All_Tasks_List pair -- in the task wrapper, to prevent it from racing ahead. if Success then C.Common.State := Runnable; C.Awake_Count := 1; C.Alive_Count := 1; P.Awake_Count := P.Awake_Count + 1; P.Alive_Count := P.Alive_Count + 1; if P.Common.State = Master_Completion_Sleep and then C.Master_of_Task = P.Master_Within then pragma Assert (Self_ID /= P); P.Common.Wait_Count := P.Common.Wait_Count + 1; end if; Unlock (C); Unlock (P); else -- No need to set Awake_Count, State, etc. here since the loop -- below will do that for any Unactivated tasks. Unlock (C); Unlock (P); Self_ID.Common.Activation_Failed := True; end if; end if; C := C.Common.Activation_Link; end loop; Unlock_All_Tasks_List; -- Close the entries of any tasks that failed thread creation, -- and count those that have not finished activation. Write_Lock (Self_ID); Self_ID.Common.State := Activator_Sleep; C := Chain_Access.T_ID; while C /= null loop Write_Lock (C); if C.Common.State = Unactivated then C.Common.Activator := null; C.Common.State := Terminated; C.Callable := False; Cancel_Queued_Entry_Calls (C); elsif C.Common.Activator /= null then Self_ID.Common.Wait_Count := Self_ID.Common.Wait_Count + 1; end if; Unlock (C); P := C.Common.Activation_Link; C.Common.Activation_Link := null; C := P; end loop; -- Wait for the activated tasks to complete activation. -- It is unsafe to abort any of these tasks until the count goes to -- zero. loop Initialization.Poll_Base_Priority_Change (Self_ID); exit when Self_ID.Common.Wait_Count = 0; Sleep (Self_ID, Activator_Sleep); end loop; Self_ID.Common.State := Runnable; Unlock (Self_ID); -- Remove the tasks from the chain. Chain_Access.T_ID := null; Initialization.Undefer_Abort_Nestable (Self_ID); if Self_ID.Common.Activation_Failed then Self_ID.Common.Activation_Failed := False; Raise_Exception (Tasking_Error'Identity, "Failure during activation"); end if; end Activate_Tasks; ------------------------- -- Complete_Activation -- ------------------------- procedure Complete_Activation is Self_ID : constant Task_ID := STPO.Self; begin Initialization.Defer_Abort_Nestable (Self_ID); Vulnerable_Complete_Activation (Self_ID); Initialization.Undefer_Abort_Nestable (Self_ID); -- ????? -- Why do we need to allow for nested deferral here? end Complete_Activation; --------------------- -- Complete_Master -- --------------------- procedure Complete_Master is Self_ID : Task_ID := STPO.Self; begin pragma Assert (Self_ID.Deferral_Level > 0); Vulnerable_Complete_Master (Self_ID); end Complete_Master; ------------------- -- Complete_Task -- ------------------- -- See comments on Vulnerable_Complete_Task for details. procedure Complete_Task is Self_ID : constant Task_ID := STPO.Self; begin pragma Assert (Self_ID.Deferral_Level > 0); Vulnerable_Complete_Task (Self_ID); -- All of our dependents have terminated. -- Never undefer abort again! end Complete_Task; ----------------- -- Create_Task -- ----------------- -- Compiler interface only. Do not call from within the RTS. -- This must be called to create a new task. procedure Create_Task (Priority : Integer; Size : System.Parameters.Size_Type; Task_Info : System.Task_Info.Task_Info_Type; Num_Entries : Task_Entry_Index; Master : Master_Level; State : Task_Procedure_Access; Discriminants : System.Address; Elaborated : Access_Boolean; Chain : in out Activation_Chain; Task_Image : System.Task_Info.Task_Image_Type; Created_Task : out Task_ID) is T, P : Task_ID; Self_ID : constant Task_ID := STPO.Self; Success : Boolean; Base_Priority : System.Any_Priority; begin pragma Debug (Debug.Trace (Self_ID, "Create_Task", 'C')); if Priority = Unspecified_Priority then Base_Priority := Self_ID.Common.Base_Priority; else Base_Priority := System.Any_Priority (Priority); end if; -- Find parent P of new Task, via master level number. P := Self_ID; if P /= null then while P.Master_of_Task >= Master loop P := P.Common.Parent; exit when P = null; end loop; end if; Initialization.Defer_Abort_Nestable (Self_ID); begin T := New_ATCB (Num_Entries); exception when others => Initialization.Undefer_Abort_Nestable (Self_ID); Raise_Exception (Storage_Error'Identity, "Cannot allocate task"); end; -- All_Tasks_L is used by Abort_Dependents and Abort_Tasks. -- Up to this point, it is possible that we may be part of -- a family of tasks that is being aborted. Lock_All_Tasks_List; Write_Lock (Self_ID); -- Now, we must check that we have not been aborted. -- If so, we should give up on creating this task, -- and simply return. if not Self_ID.Callable then pragma Assert (Self_ID.Pending_ATC_Level = 0); pragma Assert (Self_ID.Pending_Action); pragma Assert (Chain.T_ID = null or else Chain.T_ID.Common.State = Unactivated); Unlock (Self_ID); Unlock_All_Tasks_List; Initialization.Undefer_Abort_Nestable (Self_ID); -- ??? Should never get here pragma Assert (False); raise Standard'Abort_Signal; end if; Initialize_ATCB (Self_ID, State, Discriminants, P, Elaborated, Base_Priority, Task_Info, Size, T, Success); if not Success then Unlock (Self_ID); Unlock_All_Tasks_List; Initialization.Undefer_Abort_Nestable (Self_ID); Raise_Exception (Storage_Error'Identity, "Failed to initialize task"); end if; T.Master_of_Task := Master; T.Master_Within := T.Master_of_Task + 1; for L in T.Entry_Calls'Range loop T.Entry_Calls (L).Self := T; T.Entry_Calls (L).Level := L; end loop; T.Common.Task_Image := Task_Image; Unlock (Self_ID); Unlock_All_Tasks_List; -- Create TSD as early as possible in the creation of a task, since it -- may be used by the operation of Ada code within the task. SSL.Create_TSD (T.Common.Compiler_Data); T.Common.Activation_Link := Chain.T_ID; Chain.T_ID := T; Initialization.Initialize_Attributes_Link.all (T); Created_Task := T; Initialization.Undefer_Abort_Nestable (Self_ID); end Create_Task; -------------------- -- Current_Master -- -------------------- function Current_Master return Master_Level is Self_ID : constant Task_ID := STPO.Self; begin return Self_ID.Master_Within; end Current_Master; ------------------ -- Enter_Master -- ------------------ procedure Enter_Master is Self_ID : constant Task_ID := STPO.Self; begin Self_ID.Master_Within := Self_ID.Master_Within + 1; end Enter_Master; ------------------------------- -- Expunge_Unactivated_Tasks -- ------------------------------- -- See procedure Close_Entries for the general case. procedure Expunge_Unactivated_Tasks (Chain : in out Activation_Chain) is Self_ID : constant Task_ID := STPO.Self; C : Task_ID; Call : Entry_Call_Link; Temp : Task_ID; begin pragma Debug (Debug.Trace (Self_ID, "Expunge_Unactivated_Tasks", 'C')); Initialization.Defer_Abort_Nestable (Self_ID); -- ???? -- Experimentation has shown that abort is sometimes (but not -- always) already deferred when this is called. -- That may indicate an error. Find out what is going on. C := Chain.T_ID; while C /= null loop pragma Assert (C.Common.State = Unactivated); Temp := C.Common.Activation_Link; if C.Common.State = Unactivated then Write_Lock (C); for J in 1 .. C.Entry_Num loop Queuing.Dequeue_Head (C.Entry_Queues (J), Call); pragma Assert (Call = null); end loop; Unlock (C); Initialization.Remove_From_All_Tasks_List (C); Vulnerable_Free_Task (C); C := Temp; end if; end loop; Chain.T_ID := null; Initialization.Undefer_Abort_Nestable (Self_ID); end Expunge_Unactivated_Tasks; --------------------------- -- Finalize_Global_Tasks -- --------------------------- -- ???? -- We have a potential problem here if finalization of global -- objects does anything with signals or the timer server, since -- by that time those servers have terminated. -- It is hard to see how that would occur. -- However, a better solution might be to do all this finalization -- using the global finalization chain. procedure Finalize_Global_Tasks is Self_ID : constant Task_ID := STPO.Self; Zero_Independent : Boolean; begin if Self_ID.Deferral_Level = 0 then -- ?????? -- In principle, we should be able to predict whether -- abort is already deferred here (and it should not be deferred -- yet but in practice it seems Finalize_Global_Tasks is being -- called sometimes, from RTS code for exceptions, with abort already -- deferred. Initialization.Defer_Abort_Nestable (Self_ID); -- Never undefer again!!! end if; -- This code is only executed by the environment task pragma Assert (Self_ID = Environment_Task); -- Set Environment_Task'Callable to false to notify library-level tasks -- that it is waiting for them (cf 5619-003). Self_ID.Callable := False; -- Exit level 2 master, for normal tasks in library-level packages. Complete_Master; -- Force termination of "independent" library-level server tasks. Abort_Dependents (Self_ID); -- We need to explicitly wait for the task to be -- terminated here because on true concurrent system, we -- may end this procedure before the tasks are really -- terminated. loop Write_Lock (Self_ID); Zero_Independent := Utilities.Independent_Task_Count = 0; Unlock (Self_ID); -- We used to yield here, but this did not take into account -- low priority tasks that would cause dead lock in some cases. -- See 8126-020. Timed_Delay (Self_ID, 0.01, System.OS_Primitives.Relative); exit when Zero_Independent; end loop; -- ??? On multi-processor environments, it seems that the above loop -- isn't sufficient, so we need to add an additional delay. Timed_Delay (Self_ID, 0.1, System.OS_Primitives.Relative); -- Complete the environment task. Vulnerable_Complete_Task (Self_ID); System.Finalization_Implementation.Finalize_Global_List; SSL.Abort_Defer := SSL.Abort_Defer_NT'Access; SSL.Abort_Undefer := SSL.Abort_Undefer_NT'Access; SSL.Lock_Task := SSL.Task_Lock_NT'Access; SSL.Unlock_Task := SSL.Task_Unlock_NT'Access; SSL.Get_Jmpbuf_Address := SSL.Get_Jmpbuf_Address_NT'Access; SSL.Set_Jmpbuf_Address := SSL.Set_Jmpbuf_Address_NT'Access; SSL.Get_Sec_Stack_Addr := SSL.Get_Sec_Stack_Addr_NT'Access; SSL.Set_Sec_Stack_Addr := SSL.Set_Sec_Stack_Addr_NT'Access; SSL.Get_Exc_Stack_Addr := SSL.Get_Exc_Stack_Addr_NT'Access; SSL.Set_Exc_Stack_Addr := SSL.Set_Exc_Stack_Addr_NT'Access; SSL.Check_Abort_Status := SSL.Check_Abort_Status_NT'Access; SSL.Get_Stack_Info := SSL.Get_Stack_Info_NT'Access; -- Don't bother trying to finalize Initialization.Global_Task_Lock -- and System.Task_Primitives.All_Tasks_L. end Finalize_Global_Tasks; --------------- -- Free_Task -- --------------- procedure Free_Task (T : Task_ID) is Self_Id : constant Task_ID := Self; begin if T.Common.State = Terminated then -- It is not safe to call Abort_Defer or Write_Lock at this stage Initialization.Task_Lock (Self_Id); if T.Common.Task_Image /= null then Free_Task_Image (T.Common.Task_Image); end if; Initialization.Remove_From_All_Tasks_List (T); Initialization.Task_Unlock (Self_Id); System.Task_Primitives.Operations.Finalize_TCB (T); -- If the task is not terminated, then we simply ignore the call. This -- happens when a user program attempts an unchecked deallocation on -- a non-terminated task. else null; end if; end Free_Task; ---------------------- -- Notify_Exception -- ---------------------- procedure Notify_Exception (Self_Id : Task_ID; Excep : Exception_Occurrence) is procedure To_Stderr (S : String); pragma Import (Ada, To_Stderr, "__gnat_to_stderr"); use System.Task_Info; use System.Soft_Links; function To_Address is new Unchecked_Conversion (Task_ID, System.Address); function Tailored_Exception_Information (E : Exception_Occurrence) return String; pragma Import (Ada, Tailored_Exception_Information, "__gnat_tailored_exception_information"); begin To_Stderr ("task "); if Self_Id.Common.Task_Image /= null then To_Stderr (Self_Id.Common.Task_Image.all); To_Stderr ("_"); end if; To_Stderr (System.Address_Image (To_Address (Self_Id))); To_Stderr (" terminated by unhandled exception"); To_Stderr ((1 => ASCII.LF)); To_Stderr (Tailored_Exception_Information (Excep)); end Notify_Exception; ------------------ -- Task_Wrapper -- ------------------ -- The task wrapper is a procedure that is called first for each task -- task body, and which in turn calls the compiler-generated task body -- procedure. The wrapper's main job is to do initialization for the task. -- It also has some locally declared objects that server as per-task local -- data. Task finalization is done by Complete_Task, which is called from -- an at-end handler that the compiler generates. -- The variable ID in the task wrapper is used to implement the Self -- function on targets where there is a fast way to find the stack base -- of the current thread, since it should be at a fixed offset from the -- stack base. -- The variable Magic_Number is also used in such implementations -- of Self, to check whether the current task is an Ada task, as -- compared to other-language threads. -- Both act as constants, once initialized, but need to be marked as -- volatile or aliased to prevent the compiler from optimizing away the -- storage. See System.Task_Primitives.Operations.Self for more info. procedure Task_Wrapper (Self_ID : Task_ID) is ID : Task_ID := Self_ID; pragma Volatile (ID); -- Do not delete this variable. -- In some targets, we need this variable to implement a fast Self. Magic_Number : Interfaces.C.unsigned := 16#ADAADAAD#; pragma Volatile (Magic_Number); -- We use this to verify that we are looking at an Ada task, -- inside of System.Task_Primitives.Operations.Self. use type System.Parameters.Size_Type; use type SSE.Storage_Offset; use System.Standard_Library; Secondary_Stack : aliased SSE.Storage_Array (1 .. ID.Common.Compiler_Data.Pri_Stack_Info.Size * SSE.Storage_Offset (Parameters.Sec_Stack_Ratio) / 100); Secondary_Stack_Address : System.Address := Secondary_Stack'Address; begin pragma Assert (Self_ID.Deferral_Level = 1); if not Parameters.Sec_Stack_Dynamic then ID.Common.Compiler_Data.Sec_Stack_Addr := Secondary_Stack'Address; SST.SS_Init (Secondary_Stack_Address, Integer (Secondary_Stack'Last)); end if; -- Set the guard page at the bottom of the stack. -- The call to unprotect the page is done in Terminate_Task Stack_Guard (Self_ID, True); -- Initialize low-level TCB components, that -- cannot be initialized by the creator. -- Enter_Task sets Self_ID.Known_Tasks_Index -- and Self_ID.LL.Thread Enter_Task (Self_ID); -- We lock All_Tasks_L to wait for activator to finish activating -- the rest of the chain, so that everyone in the chain comes out -- in priority order. -- This also protects the value of -- Self_ID.Common.Activator.Common.Wait_Count. Lock_All_Tasks_List; Unlock_All_Tasks_List; begin -- We are separating the following portion of the code in order to -- place the exception handlers in a different block. -- In this way we do not call Set_Jmpbuf_Address (which needs -- Self) before we set Self in Enter_Task -- Call the task body procedure. -- The task body is called with abort still deferred. That -- eliminates a dangerous window, for which we had to patch-up in -- Terminate_Task. -- During the expansion of the task body, we insert an RTS-call -- to Abort_Undefer, at the first point where abort should be -- allowed. Self_ID.Common.Task_Entry_Point (Self_ID.Common.Task_Arg); Terminate_Task (Self_ID); exception when Standard'Abort_Signal => Terminate_Task (Self_ID); when others => -- ??? Using an E : others here causes CD2C11A to fail on -- DEC Unix, see 7925-005. if Exception_Trace = Unhandled_Raise then Notify_Exception (Self_ID, SSL.Get_Current_Excep.all.all); end if; Terminate_Task (Self_ID); end; end Task_Wrapper; -------------------- -- Terminate_Task -- -------------------- -- Before we allow the thread to exit, we must clean up. This is a -- a delicate job. We must wake up the task's master, who may immediately -- try to deallocate the ATCB out from under the current task WHILE IT IS -- STILL EXECUTING. -- To avoid this, the parent task must be blocked up to the last thing -- done before the call to Exit_Task. The trouble is that we have another -- step that we also want to postpone to the very end, i.e., calling -- SSL.Destroy_TSD. We have to postpone that until the end because -- compiler-generated code is likely to try to access that data at just -- about any point. -- We can't call Destroy_TSD while we are holding any other locks, because -- it locks Global_Task_Lock, and our deadlock prevention rules require -- that to be the outermost lock. Our first "solution" was to just lock -- Global_Task_Lock in addition to the other locks, and force the parent -- to also lock this lock between its wakeup and its freeing of the ATCB. -- See Complete_Task for the parent-side of the code that has the matching -- calls to Task_Lock and Task_Unlock. That was not really a solution, -- since the operation Task_Unlock continued to access the ATCB after -- unlocking, after which the parent was observed to race ahead, -- deallocate the ATCB, and then reallocate it to another task. The -- call to Undefer_Abortion in Task_Unlock by the "terminated" task was -- overwriting the data of the new task that reused the ATCB! To solve -- this problem, we introduced the new operation Final_Task_Unlock. procedure Terminate_Task (Self_ID : Task_ID) is Environment_Task : constant Task_ID := STPO.Environment_Task; begin pragma Assert (Self_ID.Common.Activator = null); -- Since GCC cannot allocate stack chunks efficiently without reordering -- some of the allocations, we have to handle this unexpected situation -- here. We should normally never have to call Vulnerable_Complete_Task -- here. See 6602-003 for more details. if Self_ID.Common.Activator /= null then Vulnerable_Complete_Task (Self_ID); end if; -- Check if the current task is an independent task -- If so, decrement the Independent_Task_Count value. if Self_ID.Master_of_Task = 2 then Write_Lock (Environment_Task); Utilities.Independent_Task_Count := Utilities.Independent_Task_Count - 1; Unlock (Environment_Task); end if; -- Unprotect the guard page if needed. Stack_Guard (Self_ID, False); Initialization.Task_Lock (Self_ID); Utilities.Make_Passive (Self_ID, Task_Completed => True); pragma Assert (Check_Exit (Self_ID)); SSL.Destroy_TSD (Self_ID.Common.Compiler_Data); Initialization.Final_Task_Unlock (Self_ID); -- WARNING -- past this point, this thread must assume that the ATCB -- has been deallocated. It should not be accessed again. STPO.Exit_Task; end Terminate_Task; ---------------- -- Terminated -- ---------------- function Terminated (T : Task_ID) return Boolean is Result : Boolean; Self_ID : Task_ID := STPO.Self; begin Initialization.Defer_Abort_Nestable (Self_ID); Write_Lock (T); Result := T.Common.State = Terminated; Unlock (T); Initialization.Undefer_Abort_Nestable (Self_ID); return Result; end Terminated; ------------------------------------ -- Vulnerable_Complete_Activation -- ------------------------------------ -- Only call this procedure with abortion deferred. -- As in several other places, the locks of the activator and activated -- task are both locked here. This follows our deadlock prevention lock -- ordering policy, since the activated task must be created after the -- activator. procedure Vulnerable_Complete_Activation (Self_ID : Task_ID) is Activator : Task_ID := Self_ID.Common.Activator; begin pragma Debug (Debug.Trace (Self_ID, "V_Complete_Activation", 'C')); Write_Lock (Activator); Write_Lock (Self_ID); pragma Assert (Self_ID.Common.Activator /= null); -- Remove dangling reference to Activator, -- since a task may outlive its activator. Self_ID.Common.Activator := null; -- Wake up the activator, if it is waiting for a chain -- of tasks to activate, and we are the last in the chain -- to complete activation if Activator.Common.State = Activator_Sleep then Activator.Common.Wait_Count := Activator.Common.Wait_Count - 1; if Activator.Common.Wait_Count = 0 then Wakeup (Activator, Activator_Sleep); end if; end if; -- The activator raises a Tasking_Error if any task -- it is activating is completed before the activation is -- done. However, if the reason for the task completion is -- an abortion, we do not raise an exception. ARM 9.2(5). if not Self_ID.Callable and then Self_ID.Pending_ATC_Level /= 0 then Activator.Common.Activation_Failed := True; end if; Unlock (Self_ID); Unlock (Activator); -- After the activation, active priority should be the same -- as base priority. We must unlock the Activator first, -- though, since it should not wait if we have lower priority. if Get_Priority (Self_ID) /= Self_ID.Common.Base_Priority then Write_Lock (Self_ID); Set_Priority (Self_ID, Self_ID.Common.Base_Priority); Unlock (Self_ID); end if; end Vulnerable_Complete_Activation; -------------------------------- -- Vulnerable_Complete_Master -- -------------------------------- procedure Vulnerable_Complete_Master (Self_ID : Task_ID) is C : Task_ID; P : Task_ID; CM : Master_Level := Self_ID.Master_Within; T : aliased Task_ID; To_Be_Freed : Task_ID; -- This is a list of ATCBs to be freed, after we have released -- all RTS locks. This is necessary because of the locking order -- rules, since the storage manager uses Global_Task_Lock. pragma Warnings (Off); function Check_Unactivated_Tasks return Boolean; pragma Warnings (On); -- Temporary error-checking code below. This is part of the checks -- added in the new run time. Call it only inside a pragma Assert. function Check_Unactivated_Tasks return Boolean is begin Lock_All_Tasks_List; Write_Lock (Self_ID); C := All_Tasks_List; while C /= null loop if C.Common.Activator = Self_ID then return False; end if; if C.Common.Parent = Self_ID and then C.Master_of_Task = CM then Write_Lock (C); if C.Common.State = Unactivated then return False; end if; Unlock (C); end if; C := C.Common.All_Tasks_Link; end loop; Unlock (Self_ID); Unlock_All_Tasks_List; return True; end Check_Unactivated_Tasks; -- Start of processing for Vulnerable_Complete_Master begin pragma Debug (Debug.Trace (Self_ID, "V_Complete_Master", 'C')); pragma Assert (Self_ID.Common.Wait_Count = 0); pragma Assert (Self_ID.Deferral_Level > 0); -- Count how many active dependent tasks this master currently -- has, and record this in Wait_Count. -- This count should start at zero, since it is initialized to -- zero for new tasks, and the task should not exit the -- sleep-loops that use this count until the count reaches zero. Lock_All_Tasks_List; Write_Lock (Self_ID); C := All_Tasks_List; while C /= null loop if C.Common.Activator = Self_ID then pragma Assert (C.Common.State = Unactivated); Write_Lock (C); C.Common.Activator := null; C.Common.State := Terminated; C.Callable := False; Cancel_Queued_Entry_Calls (C); Unlock (C); end if; if C.Common.Parent = Self_ID and then C.Master_of_Task = CM then Write_Lock (C); if C.Awake_Count /= 0 then Self_ID.Common.Wait_Count := Self_ID.Common.Wait_Count + 1; end if; Unlock (C); end if; C := C.Common.All_Tasks_Link; end loop; Self_ID.Common.State := Master_Completion_Sleep; Unlock (Self_ID); Unlock_All_Tasks_List; -- Wait until dependent tasks are all terminated or ready to terminate. -- While waiting, the task may be awakened if the task's priority needs -- changing, or this master is aborted. In the latter case, we want -- to abort the dependents, and resume waiting until Wait_Count goes -- to zero. Write_Lock (Self_ID); loop Initialization.Poll_Base_Priority_Change (Self_ID); exit when Self_ID.Common.Wait_Count = 0; -- Here is a difference as compared to Complete_Master if Self_ID.Pending_ATC_Level < Self_ID.ATC_Nesting_Level and then not Self_ID.Dependents_Aborted then Unlock (Self_ID); Abort_Dependents (Self_ID); Write_Lock (Self_ID); else Sleep (Self_ID, Master_Completion_Sleep); end if; end loop; Self_ID.Common.State := Runnable; Unlock (Self_ID); -- Dependents are all terminated or on terminate alternatives. -- Now, force those on terminate alternatives to terminate, by -- aborting them. pragma Assert (Check_Unactivated_Tasks); if Self_ID.Alive_Count > 1 then -- ????? -- Consider finding a way to skip the following extra steps if -- there are no dependents with terminate alternatives. This -- could be done by adding another count to the ATCB, similar to -- Awake_Count, but keeping track of count of tasks that are on -- terminate alternatives. pragma Assert (Self_ID.Common.Wait_Count = 0); -- Force any remaining dependents to terminate, by aborting them. Abort_Dependents (Self_ID); -- Above, when we "abort" the dependents we are simply using this -- operation for convenience. We are not required to support the full -- abort-statement semantics; in particular, we are not required to -- immediately cancel any queued or in-service entry calls. That is -- good, because if we tried to cancel a call we would need to lock -- the caller, in order to wake the caller up. Our anti-deadlock -- rules prevent us from doing that without releasing the locks on C -- and Self_ID. Releasing and retaking those locks would be -- wasteful, at best, and should not be considered further without -- more detailed analysis of potential concurrent accesses to the -- ATCBs of C and Self_ID. -- Count how many "alive" dependent tasks this master currently -- has, and record this in Wait_Count. -- This count should start at zero, since it is initialized to -- zero for new tasks, and the task should not exit the -- sleep-loops that use this count until the count reaches zero. pragma Assert (Self_ID.Common.Wait_Count = 0); Lock_All_Tasks_List; Write_Lock (Self_ID); C := All_Tasks_List; while C /= null loop if C.Common.Parent = Self_ID and then C.Master_of_Task = CM then Write_Lock (C); pragma Assert (C.Awake_Count = 0); if C.Alive_Count > 0 then pragma Assert (C.Terminate_Alternative); Self_ID.Common.Wait_Count := Self_ID.Common.Wait_Count + 1; end if; Unlock (C); end if; C := C.Common.All_Tasks_Link; end loop; Self_ID.Common.State := Master_Phase_2_Sleep; Unlock (Self_ID); Unlock_All_Tasks_List; -- Wait for all counted tasks to finish terminating themselves. Write_Lock (Self_ID); loop Initialization.Poll_Base_Priority_Change (Self_ID); exit when Self_ID.Common.Wait_Count = 0; Sleep (Self_ID, Master_Phase_2_Sleep); end loop; Self_ID.Common.State := Runnable; Unlock (Self_ID); end if; -- We don't wake up for abortion here. We are already terminating -- just as fast as we can, so there is no point. -- ???? -- Consider whether we want to bother checking for priority -- changes in the loop above, though. -- Remove terminated tasks from the list of Self_ID's dependents, but -- don't free their ATCBs yet, because of lock order restrictions, -- which don't allow us to call "free" or "malloc" while holding any -- other locks. Instead, we put those ATCBs to be freed onto a -- temporary list, called To_Be_Freed. Lock_All_Tasks_List; C := All_Tasks_List; P := null; while C /= null loop if C.Common.Parent = Self_ID and then C.Master_of_Task >= CM then if P /= null then P.Common.All_Tasks_Link := C.Common.All_Tasks_Link; else All_Tasks_List := C.Common.All_Tasks_Link; end if; T := C.Common.All_Tasks_Link; C.Common.All_Tasks_Link := To_Be_Freed; To_Be_Freed := C; C := T; else P := C; C := C.Common.All_Tasks_Link; end if; end loop; Unlock_All_Tasks_List; -- Free all the ATCBs on the list To_Be_Freed. -- The ATCBs in the list are no longer in All_Tasks_List, and after -- any interrupt entries are detached from them they should no longer -- be referenced. -- Global_Task_Lock (Task_Lock/Unlock) is locked in the loop below to -- avoid a race between a terminating task and its parent. The parent -- might try to deallocate the ACTB out from underneath the exiting -- task. Note that Free will also lock Global_Task_Lock, but that is -- OK, since this is the *one* lock for which we have a mechanism to -- support nested locking. See Task_Wrapper and its finalizer for more -- explanation. -- ??? -- The check "T.Common.Parent /= null ..." below is to prevent dangling -- references to terminated library-level tasks, which could -- otherwise occur during finalization of library-level objects. -- A better solution might be to hook task objects into the -- finalization chain and deallocate the ATCB when the task -- object is deallocated. However, this change is not likely -- to gain anything significant, since all this storage should -- be recovered en-masse when the process exits. while To_Be_Freed /= null loop T := To_Be_Freed; To_Be_Freed := T.Common.All_Tasks_Link; -- ??? On SGI there is currently no Interrupt_Manager, that's -- why we need to check if the Interrupt_Manager_ID is null if T.Interrupt_Entry and Interrupt_Manager_ID /= null then declare Detach_Interrupt_Entries_Index : Task_Entry_Index := 6; -- Corresponds to the entry index of System.Interrupts. -- Interrupt_Manager.Detach_Interrupt_Entries. -- Be sure to update this value when changing -- Interrupt_Manager specs. type Param_Type is access all Task_ID; Param : aliased Param_Type := T'Access; begin System.Tasking.Rendezvous.Call_Simple (Interrupt_Manager_ID, Detach_Interrupt_Entries_Index, Param'Address); end; end if; if (T.Common.Parent /= null and then T.Common.Parent.Common.Parent /= null) or else T.Master_of_Task > 3 then Initialization.Task_Lock (Self_ID); -- If Sec_Stack_Addr is not null, it means that Destroy_TSD -- has not been called yet (case of an unactivated task). if T.Common.Compiler_Data.Sec_Stack_Addr /= Null_Address then SSL.Destroy_TSD (T.Common.Compiler_Data); end if; Vulnerable_Free_Task (T); Initialization.Task_Unlock (Self_ID); end if; end loop; -- It might seem nice to let the terminated task deallocate -- its own ATCB. That would not cover the case of unactivated -- tasks. It also would force us to keep the underlying thread -- around past termination, since references to the ATCB are -- possible past termination. Currently, we get rid of the -- thread as soon as the task terminates, and let the parent -- recover the ATCB later. -- ???? -- Some day, if we want to recover the ATCB earlier, at task -- termination, we could consider using "fat task IDs", that -- include the serial number with the ATCB pointer, to catch -- references to tasks that no longer have ATCBs. It is not -- clear how much this would gain, since the user-level task -- object would still be occupying storage. -- Make next master level up active. -- We don't need to lock the ATCB, since the value is only -- updated by each task for itself. Self_ID.Master_Within := CM - 1; end Vulnerable_Complete_Master; ------------------------------ -- Vulnerable_Complete_Task -- ------------------------------ -- Complete the calling task. -- This procedure must be called with abort deferred. (That's why the -- name has "Vulnerable" in it.) It should only be called by Complete_Task -- and Finalizate_Global_Tasks (for the environment task). -- The effect is similar to that of Complete_Master. Differences include -- the closing of entries here, and computation of the number of active -- dependent tasks in Complete_Master. -- We don't lock Self_ID before the call to Vulnerable_Complete_Activation, -- because that does its own locking, and because we do not need the lock -- to test Self_ID.Common.Activator. That value should only be read and -- modified by Self. procedure Vulnerable_Complete_Task (Self_ID : Task_ID) is begin pragma Assert (Self_ID.Deferral_Level > 0); pragma Assert (Self_ID = Self); pragma Assert (Self_ID.Master_Within = Self_ID.Master_of_Task + 1 or else Self_ID.Master_Within = Self_ID.Master_of_Task + 2); pragma Assert (Self_ID.Common.Wait_Count = 0); pragma Assert (Self_ID.Open_Accepts = null); pragma Assert (Self_ID.ATC_Nesting_Level = 1); pragma Debug (Debug.Trace (Self_ID, "V_Complete_Task", 'C')); Write_Lock (Self_ID); Self_ID.Callable := False; -- In theory, Self should have no pending entry calls -- left on its call-stack. Each async. select statement should -- clean its own call, and blocking entry calls should -- defer abort until the calls are cancelled, then clean up. Cancel_Queued_Entry_Calls (Self_ID); Unlock (Self_ID); if Self_ID.Common.Activator /= null then Vulnerable_Complete_Activation (Self_ID); end if; -- If Self_ID.Master_Within = Self_ID.Master_of_Task + 2 -- we may have dependent tasks for which we need to wait. -- Otherwise, we can just exit. if Self_ID.Master_Within = Self_ID.Master_of_Task + 2 then Vulnerable_Complete_Master (Self_ID); end if; end Vulnerable_Complete_Task; -------------------------- -- Vulnerable_Free_Task -- -------------------------- -- Recover all runtime system storage associated with the task T. -- This should only be called after T has terminated and will no -- longer be referenced. -- For tasks created by an allocator that fails, due to an exception, -- it is called from Expunge_Unactivated_Tasks. -- For tasks created by elaboration of task object declarations it -- is called from the finalization code of the Task_Wrapper procedure. -- It is also called from Unchecked_Deallocation, for objects that -- are or contain tasks. procedure Vulnerable_Free_Task (T : Task_ID) is begin pragma Debug (Debug.Trace ("Vulnerable_Free_Task", T, 'C')); Write_Lock (T); Initialization.Finalize_Attributes_Link.all (T); Unlock (T); if T.Common.Task_Image /= null then Free_Task_Image (T.Common.Task_Image); end if; System.Task_Primitives.Operations.Finalize_TCB (T); end Vulnerable_Free_Task; begin -- Establish the Adafinal softlink. -- This is not done inside the central RTS initialization routine -- to avoid with-ing this package from System.Tasking.Initialization. SSL.Adafinal := Finalize_Global_Tasks'Access; -- Establish soft links for subprograms that manipulate master_id's. -- This cannot be done when the RTS is initialized, because of various -- elaboration constraints. SSL.Current_Master := Stages.Current_Master'Access; SSL.Enter_Master := Stages.Enter_Master'Access; SSL.Complete_Master := Stages.Complete_Master'Access; end System.Tasking.Stages;
34.92129
79
0.620566
cb5311d30eda70a5b16c7fe7396c6ae0b8c18778
3,308
ads
Ada
src/skill-string_pools.ads
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
src/skill-string_pools.ads
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
src/skill-string_pools.ads
skill-lang/adaCommon
b27bccb8fa1c8b299ab98a82741a648183e41d3c
[ "BSD-3-Clause" ]
null
null
null
-- ___ _ ___ _ _ -- -- / __| |/ (_) | | Common SKilL implementation -- -- \__ \ ' <| | | |__ string pool management -- -- |___/_|\_\_|_|____| by: Timm Felden -- -- -- pragma Ada_2012; with Ada.Containers.Hashed_Sets; with Interfaces; with Skill.Equals; with Skill.Hashes; with Skill.Streams.Reader; with Skill.Streams.Writer; with Skill.Types; with Skill.Containers.Vectors; with Skill.Synchronization; with Ada.Exceptions; with Ada.Characters.Latin_1; with Ada.Containers.Vectors; limited with Skill.Field_Types.Builtin.String_Type_P; package Skill.String_Pools is type Pool_T is tagged limited private; type Pool is not null access Pool_T; -- internal use only function Create (Input : Skill.Streams.Reader.Input_Stream) return Pool; procedure Free (This : access Pool_T); function Size (This : access Pool_T) return Integer; -- internal use only procedure AddPosition (This : access Pool_T; Pos : Types.v64; Len : Types.i32); function Get (This : access Pool_T; Index : Types.v64) return Skill.Types.String_Access; -- adds a string to the pool procedure Add (This : access Pool_T; S : Types.String_Access); -- adds a string to the pool function Add (This : access Pool_T; S : String) return Types.String_Access; -- internal use only function InvalidPoolIndexException (Idx : Natural; Size : Natural; Type_Name : String; Cause : Ada.Exceptions.Exception_Occurrence) return String is ("Invalid index " & Natural'Image (Idx) & " into pool " & Type_Name & " of size " & Natural'Image (Size) & ". Caused by: " & Ada.Characters.Latin_1.LF & Ada.Exceptions.Exception_Information (Cause)); -- internal use only procedure Prepare_And_Write (This : access Pool_T; Output : Skill.Streams.Writer.Output_Stream; Serialization_IDs : Skill.Field_Types.Builtin.String_Type_P.ID_Map); -- internal use only procedure Prepare_And_Append (This : access Pool_T; Output : Skill.Streams.Writer.Output_Stream; Serialization_IDs : Skill.Field_Types.Builtin.String_Type_P.ID_Map); private use type Skill.Types.String_Access; package A1 is new Ada.Containers.Hashed_Sets (Skill.Types.String_Access, Skill.Hashes.Hash, Skill.Equals.Equals); use type Interfaces.Integer_32; use type Interfaces.Integer_64; type Position is record AbsoluteOffset : Types.v64 := -1; Length : Types.i32 := -1; end record; package A2 is new Skill.Containers.Vectors (Natural, Position); package A3 is new Skill.Containers.Vectors (Natural, Skill.Types.String_Access); type Pool_T is tagged limited record Input : Skill.Streams.Reader.Input_Stream; New_Strings : A1.Set; String_Positions : A2.Vector; Id_Map : A3.Vector; Mutex : Skill.Synchronization.Mutex; end record; end Skill.String_Pools;
31.207547
80
0.614571
183aaf776644b22be46cba2bbb9fa8762768f2af
20,868
adb
Ada
.emacs.d/elpa/wisi-3.0.1/emacs_wisi_common_parse.adb
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
.emacs.d/elpa/wisi-3.0.1/emacs_wisi_common_parse.adb
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
.emacs.d/elpa/wisi-3.0.1/emacs_wisi_common_parse.adb
caqg/linux-home
eed631aae6f5e59e4f46e14f1dff443abca5fa28
[ "Linux-OpenIB" ]
null
null
null
-- Abstract : -- -- See spec. -- -- Copyright (C) 2018 - 2019 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or -- modify it under terms of the GNU General Public License as -- published by the Free Software Foundation; either version 3, or (at -- your option) any later version. This program is distributed in the -- hope that it will be useful, but WITHOUT ANY WARRANTY; without even -- the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR -- PURPOSE. See the GNU General Public License for more details. You -- should have received a copy of the GNU General Public License -- distributed with this program; see file COPYING. If not, write to -- the Free Software Foundation, 51 Franklin Street, Suite 500, Boston, -- MA 02110-1335, USA. pragma License (GPL); with Ada.Command_Line; with Ada.Directories; with Ada.Exceptions; with Ada.Strings.Fixed; with Ada.Text_IO; with GNAT.OS_Lib; with GNAT.Traceback.Symbolic; with SAL; with System.Multiprocessors; with System.Storage_Elements; with WisiToken.Lexer; package body Emacs_Wisi_Common_Parse is procedure Usage (Name : in String) is use Ada.Text_IO; begin Put_Line ("usage: " & Name & "[--recover-log <file-name>]"); Put_Line ("enters a loop waiting for commands:"); Put_Line ("Prompt is '" & Prompt & "'"); Put_Line ("commands are case sensitive"); Put_Line ("See wisi-process-parse.el *--send-parse, *--send-noop for arguments."); end Usage; procedure Read_Input (A : System.Address; N : Integer) is use System.Storage_Elements; B : System.Address := A; Remaining : Integer := N; Read : Integer; begin -- We use GNAT.OS_Lib because it does not buffer input, so it runs -- under Emacs nicely; GNAT Text_IO does not return text until -- some fairly large buffer is filled. -- -- With GNAT GPL 2016, GNAT.OS_Lib.Read does _not_ wait for all N -- bytes or EOF; it returns as soon as it gets some bytes. loop Read := GNAT.OS_Lib.Read (GNAT.OS_Lib.Standin, B, Remaining); if Read = 0 then -- Pipe closed; probably parent Emacs crashed. Force exit. raise SAL.Programmer_Error with "input pipe closed"; end if; Remaining := Remaining - Read; exit when Remaining <= 0; B := B + Storage_Offset (Read); end loop; end Read_Input; function Get_Command_Length return Integer is Temp : aliased String (1 .. 3) := (others => ' '); -- initialize for error message begin Read_Input (Temp'Address, Temp'Length); return Integer'Value (Temp); exception when Constraint_Error => -- From Integer'Value raise Protocol_Error with "invalid command byte count; '" & Temp & "'"; end Get_Command_Length; function Get_String (Source : in String; Last : in out Integer) return String is use Ada.Strings.Fixed; First : constant Integer := Index (Source => Source, Pattern => """", From => Last + 1); begin Last := Index (Source => Source, Pattern => """", From => First + 1); if First = 0 or Last = 0 then raise Protocol_Error with "no '""' found for string"; end if; return Source (First + 1 .. Last - 1); end Get_String; function Get_Integer (Source : in String; Last : in out Integer) return Integer is use Ada.Strings.Fixed; First : constant Integer := Last + 2; -- final char of previous item, space begin Last := Index (Source => Source, Pattern => " ", From => First); if Last = 0 then Last := Source'Last; else Last := Last - 1; end if; return Integer'Value (Source (First .. Last)); exception when others => Ada.Text_IO.Put_Line ("bad integer '" & Source (First .. Source'Last) & "'"); raise; end Get_Integer; function Get_Process_Start_Params return Process_Start_Params is use Ada.Command_Line; procedure Put_Usage is use Ada.Text_IO; begin Put_Line (Standard_Error, "process start args:"); Put_Line (Standard_Error, "--help : put this help"); Put_Line (Standard_Error, "--recover-log <file_name> : log recover actions to file"); end Put_Usage; Next_Arg : Integer := 1; begin return Result : Process_Start_Params do loop exit when Next_Arg > Argument_Count; if Next_Arg <= Argument_Count and then Argument (Next_Arg) = "--help" then Put_Usage; raise Finish; elsif Next_Arg + 1 <= Argument_Count and then Argument (Next_Arg) = "--recover-log" then Result.Recover_Log_File_Name := Ada.Strings.Unbounded.To_Unbounded_String (Argument (Next_Arg + 1)); Next_Arg := Next_Arg + 2; end if; end loop; end return; end Get_Process_Start_Params; function Get_Parse_Params (Command_Line : in String; Last : in out Integer) return Parse_Params is use WisiToken; begin return Result : Parse_Params do -- We don't use an aggregate, to enforce execution order. -- Match wisi-process-parse.el wisi-process--send-parse Result.Post_Parse_Action := Wisi.Post_Parse_Action_Type'Val (Get_Integer (Command_Line, Last)); Result.Source_File_Name := +Get_String (Command_Line, Last); Result.Begin_Byte_Pos := Get_Integer (Command_Line, Last); -- Emacs end is after last char. Result.End_Byte_Pos := Get_Integer (Command_Line, Last) - 1; Result.Goal_Byte_Pos := Get_Integer (Command_Line, Last); Result.Begin_Char_Pos := WisiToken.Buffer_Pos (Get_Integer (Command_Line, Last)); Result.Begin_Line := WisiToken.Line_Number_Type (Get_Integer (Command_Line, Last)); Result.End_Line := WisiToken.Line_Number_Type (Get_Integer (Command_Line, Last)); Result.Begin_Indent := Get_Integer (Command_Line, Last); Result.Partial_Parse_Active := 1 = Get_Integer (Command_Line, Last); Result.Debug_Mode := 1 = Get_Integer (Command_Line, Last); Result.Parse_Verbosity := Get_Integer (Command_Line, Last); Result.McKenzie_Verbosity := Get_Integer (Command_Line, Last); Result.Action_Verbosity := Get_Integer (Command_Line, Last); Result.McKenzie_Disable := Get_Integer (Command_Line, Last); Result.Task_Count := Get_Integer (Command_Line, Last); Result.Check_Limit := Get_Integer (Command_Line, Last); Result.Enqueue_Limit := Get_Integer (Command_Line, Last); Result.Max_Parallel := Get_Integer (Command_Line, Last); Result.Byte_Count := Get_Integer (Command_Line, Last); end return; end Get_Parse_Params; function Get_Refactor_Params (Command_Line : in String; Last : in out Integer) return Refactor_Params is use WisiToken; begin return Result : Refactor_Params do -- We don't use an aggregate, to enforce execution order. -- Match wisi-process-parse.el wisi-process--send-refactor Result.Refactor_Action := Get_Integer (Command_Line, Last); Result.Source_File_Name := +Get_String (Command_Line, Last); Result.Parse_Region.First := WisiToken.Buffer_Pos (Get_Integer (Command_Line, Last)); Result.Parse_Region.Last := WisiToken.Buffer_Pos (Get_Integer (Command_Line, Last) - 1); Result.Edit_Begin := WisiToken.Buffer_Pos (Get_Integer (Command_Line, Last)); Result.Parse_Begin_Char_Pos := WisiToken.Buffer_Pos (Get_Integer (Command_Line, Last)); Result.Parse_Begin_Line := WisiToken.Line_Number_Type (Get_Integer (Command_Line, Last)); Result.Parse_End_Line := WisiToken.Line_Number_Type (Get_Integer (Command_Line, Last)); Result.Parse_Begin_Indent := Get_Integer (Command_Line, Last); Result.Debug_Mode := 1 = Get_Integer (Command_Line, Last); Result.Parse_Verbosity := Get_Integer (Command_Line, Last); Result.Action_Verbosity := Get_Integer (Command_Line, Last); Result.Max_Parallel := Get_Integer (Command_Line, Last); Result.Byte_Count := Get_Integer (Command_Line, Last); end return; end Get_Refactor_Params; procedure Process_Stream (Name : in String; Language_Protocol_Version : in String; Partial_Parse_Active : in out Boolean; Params : in Process_Start_Params; Parser : in out WisiToken.Parse.LR.Parser.Parser; Parse_Data : in out Wisi.Parse_Data_Type'Class; Descriptor : in WisiToken.Descriptor) is use Ada.Text_IO; use WisiToken; -- "+", "-" Unbounded_string procedure Cleanup is begin if Is_Open (Parser.Recover_Log_File) then Close (Parser.Recover_Log_File); end if; end Cleanup; begin declare use Ada.Directories; use Ada.Strings.Unbounded; begin if Length (Params.Recover_Log_File_Name) > 0 then Put_Line (";; logging to '" & (-Params.Recover_Log_File_Name) & "'"); -- to Current_Output, visible from Emacs if Exists (-Params.Recover_Log_File_Name) then Open (Parser.Recover_Log_File, Append_File, -Params.Recover_Log_File_Name); else Create (Parser.Recover_Log_File, Out_File, -Params.Recover_Log_File_Name); end if; end if; end; Parser.Trace.Set_Prefix (";; "); -- so debug messages don't confuse Emacs. Put_Line (Name & " protocol: process version " & Protocol_Version & " language version " & Language_Protocol_Version); -- Read commands and tokens from standard_input via GNAT.OS_Lib, -- send results to standard_output. loop Put (Prompt); Flush; declare Command_Length : constant Integer := Get_Command_Length; Command_Line : aliased String (1 .. Command_Length); Last : Integer; function Match (Target : in String) return Boolean is begin Last := Command_Line'First + Target'Length - 1; return Last <= Command_Line'Last and then Command_Line (Command_Line'First .. Last) = Target; end Match; begin Read_Input (Command_Line'Address, Command_Length); Put_Line (";; " & Command_Line); if Match ("parse") then -- Args: see wisi-process-parse.el wisi-process-parse--send-parse -- Input: <source text> -- Response: -- [response elisp vector]... -- [elisp error form]... -- prompt declare Params : constant Parse_Params := Get_Parse_Params (Command_Line, Last); Buffer : Ada.Strings.Unbounded.String_Access; procedure Clean_Up is use all type SAL.Base_Peek_Type; begin Parser.Lexer.Discard_Rest_Of_Input; if Parser.Parsers.Count > 0 then Parse_Data.Put (Parser.Lexer.Errors, Parser.Parsers.First.State_Ref.Errors, Parser.Parsers.First.State_Ref.Tree); end if; Ada.Strings.Unbounded.Free (Buffer); end Clean_Up; begin Trace_Parse := Params.Parse_Verbosity; Trace_McKenzie := Params.McKenzie_Verbosity; Trace_Action := Params.Action_Verbosity; Debug_Mode := Params.Debug_Mode; Partial_Parse_Active := Params.Partial_Parse_Active; Parser.Partial_Parse_Active := Params.Partial_Parse_Active; if WisiToken.Parse.LR.McKenzie_Defaulted (Parser.Table.all) then -- There is no McKenzie information; don't override that. null; elsif Params.McKenzie_Disable = -1 then -- Use default Parser.Enable_McKenzie_Recover := True; else Parser.Enable_McKenzie_Recover := Params.McKenzie_Disable = 0; end if; Parse_Data.Initialize (Post_Parse_Action => Params.Post_Parse_Action, Lexer => Parser.Lexer, Descriptor => Descriptor'Unrestricted_Access, Base_Terminals => Parser.Terminals'Unrestricted_Access, Begin_Line => Params.Begin_Line, End_Line => Params.End_Line, Begin_Indent => Params.Begin_Indent, Params => Command_Line (Last + 2 .. Command_Line'Last)); if Params.Task_Count > 0 then Parser.Table.McKenzie_Param.Task_Count := System.Multiprocessors.CPU_Range (Params.Task_Count); end if; if Params.Check_Limit > 0 then Parser.Table.McKenzie_Param.Check_Limit := Base_Token_Index (Params.Check_Limit); end if; if Params.Enqueue_Limit > 0 then Parser.Table.McKenzie_Param.Enqueue_Limit := Params.Enqueue_Limit; end if; if Params.Max_Parallel > 0 then Parser.Max_Parallel := SAL.Base_Peek_Type (Params.Max_Parallel); end if; Buffer := new String (Params.Begin_Byte_Pos .. Params.End_Byte_Pos); Read_Input (Buffer (Params.Begin_Byte_Pos)'Address, Params.Byte_Count); Parser.Lexer.Reset_With_String_Access (Buffer, Params.Source_File_Name, Params.Begin_Char_Pos, Params.Begin_Line); -- Parser.Line_Begin_Token First, Last set by Lex_All begin Parser.Parse; exception when WisiToken.Partial_Parse => null; end; Parser.Execute_Actions; Parse_Data.Put (Parser); Clean_Up; exception when Syntax_Error => Clean_Up; Put_Line ("(parse_error)"); when E : Parse_Error => Clean_Up; Put_Line ("(parse_error """ & Ada.Exceptions.Exception_Message (E) & """)"); when E : Fatal_Error => Clean_Up; Put_Line ("(error """ & Ada.Exceptions.Exception_Message (E) & """)"); end; elsif Match ("refactor") then -- Args: see wisi-process-parse.el wisi-process-parse--send-refactor -- Input: <source text> -- Response: -- [edit elisp vector]... -- prompt declare Params : constant Refactor_Params := Get_Refactor_Params (Command_Line, Last); Buffer : Ada.Strings.Unbounded.String_Access; procedure Clean_Up is use all type SAL.Base_Peek_Type; begin Parser.Lexer.Discard_Rest_Of_Input; if Parser.Parsers.Count > 0 then Parse_Data.Put (Parser.Lexer.Errors, Parser.Parsers.First.State_Ref.Errors, Parser.Parsers.First.State_Ref.Tree); end if; Ada.Strings.Unbounded.Free (Buffer); end Clean_Up; begin Trace_Parse := Params.Parse_Verbosity; Trace_Action := Params.Action_Verbosity; Debug_Mode := Params.Debug_Mode; Partial_Parse_Active := True; Parse_Data.Initialize (Post_Parse_Action => Wisi.Navigate, -- mostly ignored Lexer => Parser.Lexer, Descriptor => Descriptor'Unrestricted_Access, Base_Terminals => Parser.Terminals'Unrestricted_Access, Begin_Line => Params.Parse_Begin_Line, End_Line => Params.Parse_End_Line, Begin_Indent => Params.Parse_Begin_Indent, Params => ""); if Params.Max_Parallel > 0 then Parser.Max_Parallel := SAL.Base_Peek_Type (Params.Max_Parallel); end if; Buffer := new String (Integer (Params.Parse_Region.First) .. Integer (Params.Parse_Region.Last)); Read_Input (Buffer (Buffer'First)'Address, Params.Byte_Count); Parser.Lexer.Reset_With_String_Access (Buffer, Params.Source_File_Name, Params.Parse_Begin_Char_Pos, Params.Parse_Begin_Line); begin Parser.Parse; exception when WisiToken.Partial_Parse => null; end; Parser.Execute_Actions; Parse_Data.Refactor (Parser.Parsers.First_State_Ref.Tree, Params.Refactor_Action, Params.Edit_Begin); Clean_Up; exception when Syntax_Error => Clean_Up; Put_Line ("(parse_error ""refactor " & Params.Parse_Region.First'Image & Params.Parse_Region.Last'Image & ": syntax error"")"); when E : Parse_Error => Clean_Up; Put_Line ("(parse_error ""refactor " & Params.Parse_Region.First'Image & Params.Parse_Region.Last'Image & ": " & Ada.Exceptions.Exception_Message (E) & """)"); when E : others => -- includes Fatal_Error Clean_Up; Put_Line ("(error """ & Ada.Exceptions.Exception_Message (E) & """)"); end; elsif Match ("noop") then -- Args: <source byte count> -- Input: <source text> -- Response: prompt declare Byte_Count : constant Integer := Get_Integer (Command_Line, Last); Buffer : constant Ada.Strings.Unbounded.String_Access := new String (1 .. Byte_Count); Token : Base_Token; Lexer_Error : Boolean; pragma Unreferenced (Lexer_Error); begin Token.ID := Invalid_Token_ID; Read_Input (Buffer (1)'Address, Byte_Count); Parser.Lexer.Reset_With_String_Access (Buffer, +""); loop exit when Token.ID = Parser.Trace.Descriptor.EOI_ID; Lexer_Error := Parser.Lexer.Find_Next (Token); end loop; exception when Syntax_Error => Parser.Lexer.Discard_Rest_Of_Input; end; elsif Match ("quit") then exit; else Put_Line ("(error ""bad command: '" & Command_Line & "'"")"); end if; exception when E : Protocol_Error => -- don't exit the loop; allow debugging bad elisp Put_Line ("(error ""protocol error "": " & Ada.Exceptions.Exception_Message (E) & """)"); end; end loop; Cleanup; exception when Finish => null; when E : others => Cleanup; Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Failure); New_Line (2); Put_Line ("(error ""unhandled exception: " & Ada.Exceptions.Exception_Name (E) & ": " & Ada.Exceptions.Exception_Message (E) & """)"); Put_Line (GNAT.Traceback.Symbolic.Symbolic_Traceback (E)); end Process_Stream; end Emacs_Wisi_Common_Parse;
40.757813
119
0.559996
d0ca0c1f62f6ec2a84647520ab5c6c633b323313
4,681
ads
Ada
src/lv-indev.ads
Fabien-Chouteau/ada-lvlg
ccf8da85aeafa38f4ae669b61298237424dc7e55
[ "MIT" ]
3
2019-01-02T18:34:22.000Z
2019-04-27T15:27:07.000Z
src/lv-indev.ads
Fabien-Chouteau/ada-lvlg
ccf8da85aeafa38f4ae669b61298237424dc7e55
[ "MIT" ]
2
2019-12-19T20:52:56.000Z
2020-01-25T21:22:53.000Z
src/lv-indev.ads
Fabien-Chouteau/ada-lvgl
ccf8da85aeafa38f4ae669b61298237424dc7e55
[ "MIT" ]
null
null
null
with Lv.Hal.Indev; with Lv.Objx; with Lv.Area; with Lv.Group; package Lv.Indev is -- Initialize the display input device subsystem procedure Init; -- Get the currently processed input device. Can be used in action functions too. -- @return pointer to the currently processed input device or NULL if no input device processing right now function Get_Act return Lv.Hal.Indev.Indev_T; -- Get the type of an input device -- @param indev pointer to an input device -- @return the type of the input device from `lv_hal_indev_type_t` (`LV_INDEV_TYPE_...`) function Get_Type (Indev : Lv.Hal.Indev.Indev_T) return Lv.Hal.Indev.Indev_Type_T; -- Reset one or all input devices -- @param indev pointer to an input device to reset or NULL to reset all of them procedure Reset (Indev : Lv.Hal.Indev.Indev_T); -- Reset the long press state of an input device -- @param indev_proc pointer to an input device procedure Reset_Lpr (Indev_Proc : Lv.Hal.Indev.Indev_T); -- Enable input devices device by type -- @param type Input device type -- @param enable true: enable this type; false: disable this type procedure Enable (Type_P : Lv.Hal.Indev.Indev_Type_T; Enable : U_Bool); -- lv_indev.h:68 -- Set a cursor for a pointer input device (for LV_INPUT_TYPE_POINTER and LV_INPUT_TYPE_BUTTON) -- @param indev pointer to an input device -- @param cur_obj pointer to an object to be used as cursor procedure Set_Cursor (Indev : Lv.Hal.Indev.Indev_T; Cur_Obj : Lv.Objx.Obj_T); -- Set a destination group for a keypad input device (for LV_INDEV_TYPE_KEYPAD) -- @param indev pointer to an input device -- @param group point to a group procedure Set_Group (Indev : LV.HAL.Indev.Indev_T; Group : LV.Group.Instance); -- Set the an array of points for LV_INDEV_TYPE_BUTTON. -- These points will be assigned to the buttons to press a specific point on the screen -- @param indev pointer to an input device -- @param group point to a group procedure Set_Button_Points (Indev : Lv.Hal.Indev.Indev_T; Group : access Lv.Area.Point_T); -- Get the last point of an input device (for LV_INDEV_TYPE_POINTER and LV_INDEV_TYPE_BUTTON) -- @param indev pointer to an input device -- @param point pointer to a point to store the result procedure Get_Point (Indev : Lv.Hal.Indev.Indev_T; Point : access Lv.Area.Point_T); -- Get the last key of an input device (for LV_INDEV_TYPE_KEYPAD) -- @param indev pointer to an input device -- @return the last pressed key (0 on error) function Get_Key (Indev : Lv.Hal.Indev.Indev_T) return Uint32_T; -- Check if there is dragging with an input device or not (for LV_INDEV_TYPE_POINTER and LV_INDEV_TYPE_BUTTON) -- @param indev pointer to an input device -- @return true: drag is in progress function Is_Dragging (Indev: Lv.Hal.Indev.Indev_T) return U_Bool; -- Get the vector of dragging of an input device (for LV_INDEV_TYPE_POINTER and LV_INDEV_TYPE_BUTTON) -- @param indev pointer to an input device -- @param point pointer to a point to store the vector procedure Get_Vect (Indev : Lv.Hal.Indev.Indev_T; Point : access Lv.Area.Point_T); -- Get elapsed time since last press -- @param indev pointer to an input device (NULL to get the overall smallest inactivity) -- @return Elapsed ticks (milliseconds) since last press function Get_Inactive_Time (Indev : Lv.Hal.Indev.Indev_T) return Uint32_T; -- Do nothing until the next release -- @param indev pointer to an input device procedure Wait_Release (Indev : Lv.Hal.Indev.Indev_T); ------------- -- Imports -- ------------- pragma Import (C, Init, "lv_indev_init"); pragma Import (C, Get_Act, "lv_indev_get_act"); pragma Import (C, Get_Type, "lv_indev_get_type"); pragma Import (C, Reset, "lv_indev_reset"); pragma Import (C, Reset_Lpr, "lv_indev_reset_lpr"); pragma Import (C, Enable, "lv_indev_enable"); pragma Import (C, Set_Cursor, "lv_indev_set_cursor"); pragma Import (C, Set_Group, "lv_indev_set_group"); pragma Import (C, Set_Button_Points, "lv_indev_set_button_points"); pragma Import (C, Get_Point, "lv_indev_get_point"); pragma Import (C, Get_Key, "lv_indev_get_key"); pragma Import (C, Is_Dragging, "lv_indev_is_dragging"); pragma Import (C, Get_Vect, "lv_indev_get_vect"); pragma Import (C, Get_Inactive_Time, "lv_indev_get_inactive_time"); pragma Import (C, Wait_Release, "lv_indev_wait_release"); end Lv.Indev;
41.424779
114
0.697714
cbc7f1de73b383e681eb86a12ad06b0966a2ec09
738
adb
Ada
Ada/src/Problem_20.adb
Tim-Tom/project-euler
177e0043ee93409742ec596c4379251f681b4275
[ "Unlicense" ]
null
null
null
Ada/src/Problem_20.adb
Tim-Tom/project-euler
177e0043ee93409742ec596c4379251f681b4275
[ "Unlicense" ]
null
null
null
Ada/src/Problem_20.adb
Tim-Tom/project-euler
177e0043ee93409742ec596c4379251f681b4275
[ "Unlicense" ]
null
null
null
with Ada.Integer_Text_IO; with Ada.Text_IO; with BigInteger; use BigInteger; package body Problem_20 is package IO renames Ada.Text_IO; package I_IO renames Ada.Integer_Text_IO; procedure Solve is product : BigInt := BigInteger.Create(2); begin for i in 3 .. Long_Long_Integer(100) loop product := product * BigInteger.Create(i); end loop; declare Str : constant String := BigInteger.ToString(product); Digit_Sum : Natural := 0; begin for index in Str'Range loop Digit_Sum := Digit_Sum + Character'Pos(Str(index)) - Character'Pos('0'); end loop; I_IO.Put(Digit_Sum); IO.New_Line; end; end Solve; end Problem_20;
29.52
84
0.635501
0ec34728e6797c81ab2dc9ec67891e628a63e085
62,755
adb
Ada
src/json_gen-actions.adb
persan/testlibadalang
1c7ca9134066e13a3916afb88c905617fcb7e5fd
[ "BSD-3-Clause" ]
null
null
null
src/json_gen-actions.adb
persan/testlibadalang
1c7ca9134066e13a3916afb88c905617fcb7e5fd
[ "BSD-3-Clause" ]
null
null
null
src/json_gen-actions.adb
persan/testlibadalang
1c7ca9134066e13a3916afb88c905617fcb7e5fd
[ "BSD-3-Clause" ]
null
null
null
with Text_IO; with Ada.Characters.Handling; use Ada.Characters.Handling; with Ada.Strings.UTF_Encoding; with System.WCh_Con; with System.WCh_Cnv; with JSON_Gen.Command_Lines; use JSON_Gen.Command_Lines; with Ada.Directories; use Ada.Directories; with Interfaces; use type Interfaces.Unsigned_16; with GNAT.OS_Lib; use GNAT.OS_Lib; with Langkit_Support.Diagnostics; with Langkit_Support.Slocs; with Langkit_Support.Text; with Libadalang; use Libadalang; with Libadalang.Common; use Libadalang.Common; with LAL_Extensions; use LAL_Extensions; with Utils.Command_Lines.Common; use Utils.Command_Lines.Common; with Utils.Dbg_Out; with Utils.Formatted_Output; with Utils.Tool_Names; with GNATCOLL.VFS; with GNATCOLL.Projects; with Utils.Generic_Formatted_Output; with Utils_Debug; use Utils_Debug; with Utils.Environment; -- with Pp.Actions; -- with JSON_Gen.Command_Lines; package body JSON_Gen.Actions is use Utils.Char_Vectors.Char_Vectors; function Image (X : Integer) return String renames Utils.String_Utilities.Image; pragma Warnings (Off); use Common_Flag_Switches, Common_String_Switches, Common_String_Seq_Switches, Common_Nat_Switches; pragma Warnings (On); use Json_Gen_Flag_Switches, Json_Gen_String_Switches, Json_Gen_Nat_Switches; use Scanner.Source_Message_Vectors; -- The current body-generating version of gnatstub generates output bodies; -- we could implement a new body-modifying version modifies existing -- bodies. -- -- Body-generating: By default, the command line arguments refer to specs, -- and the --subunits switch is not given. The output is a body. It is an -- error if the body already exists. If the --force/-f switch is given, -- then any existing body is overwritten; if that body contains -- hand-written code, it is lost. If the --subunits switch is given, the -- command line arguments refer to bodies, and a subunit is generated for -- each Ada stub found in that body, skipping ones that already exist. -- -- Thus "--subunits switch given" if and only if "argument is a body". -- -- Body-modifying: Command-line arguments always refer to specs. [???Or -- perhaps allow bodies, but process as if the corresponding spec were -- mentioned.] If the body exists, read it; otherwise create an empty one. -- Further processing can then assume that the body exists. -- -- If --subunits is not given, then for each declaration in the spec and in -- the body that requires completion, and whose completion does not exist, -- generate the completion in the body. The completion is placed -- immediately after the completion of the preceding declaration (where the -- order takes into account the Alphabetical_Order switch, if given). -- What about private types??? -- -- If --subunits is given, then processing is as above, except we generate -- an Ada stub instead of a proper body. -- -- With or without --subunits, for each Ada stub (whether or not newly -- generated), we generate the subunit if it doesn't already exist. -- ???Recursively process subunits, even if they already exist? -- -- Withdraw support for the --force/-f switch. We are always updating an -- existing body, not replacing it. -- -- Design notes: -- -- Read text of spec, parse. -- Read text of body (or concoct empty one), parse, split text into lines. -- Collect relevant nodes into an Ada_Node_Vector. Relevant = requires -- completion, or is an Ada Stub. Nodes from the spec, followed by nodes -- from the body. -- Sort. By default, types first, then other things, otherwise retaining -- order from the source. If --alphabetical-order is given, then types -- first, in alphabetical order, then bodies, in alphabetical order, -- retaining source order for overloaded declarations. -- -- Walk the sorted vector, generating a vector of strings. Each string is -- the text of a completion, and has a source location attached. For each -- item: -- If it requires completion, and the completion does not exist, append -- that completion to the string vector, along with the source location -- just after the preceding item. If --subunits is given, the completion -- is an Ada stub, and we also generate the subunit if it does not -- exist. -- If it is an Ada stub, generate the subunit if it does not exist. -- -- Sort the completions in source location order. -- -- Walk the text lines of the body and the completions in sync, copying -- both to the output, interleaved by source location. -- The above is way too complicated for now. A customer has asked for a way -- to generate the body for a single declaration in a package spec. Here -- are design notes for that. See Update_Body. -- -- If --update=line:col is given, it must be a [generic] package spec. -- Collect subp decls. -- Find the one with the right sloc. Better not have a completion. -- Sort if --alphabetic-order. -- Find preceding one that has a completion, or the start of the -- declarative part if no such. -- Copy body text through that one. -- Append completion. -- Copy rest of body text. package Slocs renames Langkit_Support.Slocs; ---------- -- Init -- ---------- overriding procedure Init (Tool : in out Json_Gen_Tool; Cmd : in out Command_Line) is pragma Unreferenced (Tool); begin -- ????Other checks from gnatstub/lal_ul-check_parameters.adb? pragma Assert (Environment.Initial_Dir = Current_Directory); if Update_Body_Specified (Cmd) and then Num_File_Names (Cmd) > 1 then Cmd_Error ("only one file name allowed with " & Switch_Text (JSON_Gen.Command_Lines.Descriptor, To_All (Update_Body)).all); end if; end Init; ----------- -- Final -- ----------- overriding procedure Final (Tool : in out Json_Gen_Tool; Cmd : Command_Line) is begin null; end Final; procedure Format_Vector (Cmd : Command_Line; Input : Char_Vector; Node : Ada_Node; In_Range : Char_Subrange; Output : out Char_Vector; Out_Range : out Char_Subrange; Messages : out Pp.Scanner.Source_Message_Vector) is begin null; end; --------------------- -- Per_File_Action -- --------------------- -- Debugging printouts: -- See also Libadalang.Debug. pragma Warnings (Off); pragma Style_Checks (Off); procedure knd (X : Ada_Node) is use Utils.Dbg_Out; begin Utils.Dbg_Out.Output_Enabled := True; Put ("\1\n", Kind (X)'Img); end knd; procedure psloc (X : Ada_Node) is function Lines_String (Sloc_Range : Slocs.Source_Location_Range) return String is (Image (Integer (Sloc_Range.Start_Line)) & ": " & Image (Integer (Sloc_Range.End_Line))); use Utils.Dbg_Out; begin Utils.Dbg_Out.Output_Enabled := True; Put ("\1\n", Lines_String (Sloc_Range (X))); end psloc; procedure nn (X : Ada_Node) is use Utils.Dbg_Out; begin Utils.Dbg_Out.Output_Enabled := True; Put ("\1\n", (if X.Is_Null then "null" else Short_Image (X))); end nn; procedure ppp (X : Ada_Node) is use Utils.Dbg_Out; begin nn (X); Print (X); end ppp; procedure Put_Ada_Node_Array (X : Ada_Node_Array) is use Utils.Dbg_Out; begin for N of X loop nn (N); Put ("----------------\n"); end loop; end Put_Ada_Node_Array; procedure Put_Child_Record (C : Child_Record) is use Utils.Dbg_Out; begin case C.Kind is when Child => Put ("Child: \1\n", Short_Image (C.Node)); when Trivia => declare Trivia_Data : constant Token_Data_Type := Data (C.Trivia); begin Put ("Trivia: \1 ""\2"" \3\n", Kind (Trivia_Data)'Img, To_UTF8 (Text_To_W_Str (Libadalang.common.Text (C.Trivia))), Slocs.Image (Sloc_Range (Trivia_Data))); end; end case; end Put_Child_Record; procedure Put_Children_Array (A : Children_Array) is use Utils.Dbg_Out; begin for I in A'Range loop Put ("\1: ", Image (I)); Put_Child_Record (A (I)); end loop; end Put_Children_Array; procedure Dump (Tool : in out Json_Gen_Tool; Message : String := "") is pragma Unreferenced (Tool); use Utils.Formatted_Output; begin if Debug_Flag_V then Put ("\1\n", Message); end if; end Dump; pragma Style_Checks (On); pragma Warnings (On); procedure Generate (Tool : in out Json_Gen_Tool; Cmd : Command_Line; File_Name : String; Input : String; BOM_Seen : Boolean; Root_Node : Ada_Node; Parent_Body_Of_Subunit : Ada_Node); -- Given a spec, generate the body file. Given a body, recursively call -- Generate on any Ada stubs, and given a stub, generate the subunit file. -- -- Note: "stub" is used in two different ways. In Ada, a stub ends with "is -- separate;", and we generate subunits for those. But the "stubs" -- generated by gnatstub are not stubs in the Ada sense; they are proper -- bodies. function Q (S : W_Str) return W_Str is (if S (S'First) = '"' then """" & S & """" else S); -- S is the name of a program unit. If it's an operator symbol, like -- "and", we return ""and"" so it can be used inside a generated string -- literal. If it's an identifier, we return it unchanged. function Intersperse_Spaces (S : W_Str) return W_Str; -- Put a space between each character, so "Foo" --> "F o o". -- Used in generating header comments. function Centered_Comment (S : W_Str; Len : Natural) return W_Str; -- Return something like "-- S --" of the right length. -- Used in generating header comments. function Needs_Completion (N : Ada_Node) return Boolean; -- Returns True if N is a declaration that needs a completion. function Get_Parent_Name (Parent_Body_Of_Subunit : Ada_Node) return W_Str; -- This is the name to put in "separate (...)" when generating a subunit. function Less_Than (X, Y : Ada_Node) return Boolean; package Sorting is new Ada_Node_Vectors.Generic_Sorting (Less_Than); -- Used to implement the Alphabetical_Order switch (-gnatyo). -- Type declarations come first, in alphabetical order, then bodies, in -- alphabetical order. If two or more subprograms have the same name, they -- retain their order in the spec. Here we are sorting the incomplete types -- and specs into the order their completions should appear in. function Get_JSON_Gen_Cmd return Command_Line; -- Return a command line for passing to the pretty printer. Comments_Fill_Arg : aliased String := "--comments-fill"; Decimal_Grouping_Arg : aliased String := "--decimal-grouping=3"; Based_Grouping_Arg : aliased String := "--based-grouping=4"; Args : aliased GNAT.OS_Lib.Argument_List := (Comments_Fill_Arg'Access, Decimal_Grouping_Arg'Access, Based_Grouping_Arg'Access); function Get_JSON_Gen_Cmd return Command_Line is begin return Result : Command_Line (JSON_Gen.Command_Lines.Descriptor'Access) do Parse (Args'Access, Result, Cmd_Line_1, Null_Callback'Access, Collect_File_Names => False); end return; end Get_JSON_Gen_Cmd; JSON_Gen_Cmd : Command_Line := Get_JSON_Gen_Cmd; function Overriding_String (Overrides : Ada_Overriding_Node) return W_Str is (case Overrides is when Ada_Overriding_Not_Overriding => "not overriding ", when Ada_Overriding_Overriding => "overriding ", when Ada_Overriding_Unspecified => ""); function Intersperse_Spaces (S : W_Str) return W_Str is use WChar_Vectors; Result : WChar_Vector; First_Time : Boolean := True; begin for C of S loop if First_Time then First_Time := False; else Append (Result, ' '); end if; Append (Result, C); end loop; return To_Array (Result); end Intersperse_Spaces; function Centered_Comment (S : W_Str; Len : Natural) return W_Str is Num_Spaces : constant Integer := Len - S'Length - 4; begin if Num_Spaces < 0 then return "--" & S & "--"; else declare L : constant Natural := Num_Spaces / 2; R : constant Natural := (if Num_Spaces mod 2 = 0 then L else L + 1); begin return "--" & (1 .. L => ' ') & S & (1 .. R => ' ') & "--"; end; end if; end Centered_Comment; function Less_Than (X, Y : Ada_Node) return Boolean is X_Name : constant W_Str := L_Name (Get_Def_Name (X)); Y_Name : constant W_Str := L_Name (Get_Def_Name (Y)); use Slocs; X_Sloc : constant Source_Location := Start_Sloc (Sloc_Range (X)); Y_Sloc : constant Source_Location := Start_Sloc (Sloc_Range (Y)); begin if X.Kind in Ada_Type_Decl and then Y.Kind not in Ada_Type_Decl then return True; end if; if X.Kind not in Ada_Type_Decl and then Y.Kind in Ada_Type_Decl then return False; end if; if X_Name = Y_Name then return Compare (X_Sloc, Y_Sloc) = After; -- Make the sort stable. end if; return X_Name < Y_Name; end Less_Than; function Needs_Completion (N : Ada_Node) return Boolean is function Recurse (Decls : Ada_Node_List) return Boolean; -- Recursively process a nested declaration list. This is used for a -- package spec, which needs a completion if and only if there's -- something in it that needs a completion. function Recurse (Decls : Ada_Node_List) return Boolean is begin if not Decls.Is_Null then for X in 1 .. Last_Child_Index (Decls) loop declare Subtree : constant Ada_Node := Childx (Decls, X); begin if Needs_Completion (Subtree) or else Subtree.Kind in Ada_Incomplete_Type_Decl | Ada_Incomplete_Tagged_Type_Decl then return True; end if; end; end loop; end if; return False; end Recurse; -- Start of processing for Needs_Completion begin case N.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl => declare VP : constant Public_Part := Vis_Part (N); PP : constant Private_Part := Priv_Part (N); begin return (not VP.Is_Null and then Recurse (F_Decls (VP))) or else (not PP.Is_Null and then Recurse (F_Decls (PP))); end; when Ada_Single_Protected_Decl | Ada_Protected_Type_Decl | Ada_Single_Task_Decl | Ada_Task_Type_Decl => return True; when Ada_Entry_Decl => return True; when Ada_Subp_Decl => return not N.As_Basic_Subp_Decl.P_Is_Imported; when Ada_Generic_Subp_Decl => return not N.As_Generic_Subp_Decl.P_Is_Imported; when Ada_Incomplete_Type_Decl | Ada_Incomplete_Tagged_Type_Decl => return False; -- Because these are handled specially in Walk when others => return False; end case; end Needs_Completion; function Get_Parent_Name (Parent_Body_Of_Subunit : Ada_Node) return W_Str is begin if Parent_Body_Of_Subunit.Is_Null then return ""; elsif Ada_Node'(Parent (Parent_Body_Of_Subunit)).Kind = Ada_Subunit then declare Parent_Parent : constant W_Str := Full_Name (Parent_Body_Of_Subunit.Parent.As_Subunit.F_Name); Parent_Simple : constant W_Str := Id_Name (Get_Def_Name (Parent_Body_Of_Subunit)); begin return Parent_Parent & "." & Parent_Simple; end; else return Full_Name (Get_Def_Name (Parent_Body_Of_Subunit).As_Name); end if; end Get_Parent_Name; procedure Generate (Tool : in out Json_Gen_Tool; Cmd : Command_Line; File_Name : String; Input : String; BOM_Seen : Boolean; Root_Node : Ada_Node; Parent_Body_Of_Subunit : Ada_Node) is Looking_For_Ada_Stubs : constant Boolean := Root_Node.Kind in Ada_Body_Node and then Root_Node.Kind not in Ada_Body_Stub; Parent_Name : constant W_Str := Get_Parent_Name (Parent_Body_Of_Subunit); Root_Node_Name : constant W_Str := (if not Parent_Body_Of_Subunit.Is_Null then Parent_Name & "." else "") & Full_Name (Get_Def_Name (Root_Node).As_Name); UC_Root_Node_Name : constant W_Str := To_Upper (Root_Node_Name); LC_Root_Node_Name : constant W_Str := To_Lower (Root_Node_Name); Wide_Char_Encoding : constant System.WCh_Con.WC_Encoding_Method := Wide_Character_Encoding (Cmd); Out_Vec, JSON_Gen_Out_Vec : Char_Vector; procedure Put_To_Out_Vec (WC : W_Char); procedure Put_To_Out_Vec (WC : W_Char) is procedure Append_One (C : Character); pragma Inline (Append_One); procedure Append_One (C : Character) is begin Append (Out_Vec, C); end Append_One; procedure Encode is new System.WCh_Cnv.Wide_Char_To_Char_Sequence (Append_One); begin Encode (WC, Wide_Char_Encoding); end Put_To_Out_Vec; package Buffered_Output is new Utils.Generic_Formatted_Output (W_Char, W_Str, Basic_Put_Char => Put_To_Out_Vec); use Buffered_Output; procedure Generate_CU_Header; procedure Walk (Decl : Ada_Node; Level : Natural); -- Generate code corresponding to Decl, and recursively walk subtrees. -- -- Note on recursion: Generate calls Walk. Walk calls Walk. Walk calls -- Generate. In more detail: Generate is called on the compilation unit -- spec or body. In the case of a spec, Generate calls Walk on the spec, -- which calls Walk on nested specs, and generates a body for each one. -- In the case of a body, Generate calls Walk on the body, which calls -- Generate on nested Ada body stubs, to generate subunit files for each -- one. procedure Generate_Local_Header (Name : W_Str; Level : Natural); -- Generate the local header that appears before each body, -- unless the --no_local_header switch was given. procedure Generate_Subunit_Start (Level : Natural); -- If we are processing a subunit, generate "separate (parent)". procedure Generate_Subp_Body (Decl : Ada_Node; Name : W_Str; Ada_Stub : Boolean); -- Generate a subprogram body stub. If Ada_Stub is True, we generate -- "is separate"; otherwise the so-called "stub" is a proper body. procedure Generate_Entry_Body (Decl : Ada_Node; Name : W_Str); -- Generate an entry body stub procedure Generate_Subp_Or_Entry_Body (Decl : Ada_Node; Name : W_Str; Ada_Stub : Boolean); procedure Generate_Json_Gen_Begin_End (Name, Json_Gen_Kind : W_Str); -- Generate the text from "begin" to "end" of the generated code for a -- subprogram, entry, or task body. Json_Gen_Kind is "function", -- "procedure", "entry", or "task". procedure Format; -- Call the pretty printer on Out_Vec, producing JSON_Gen_Out_Vec. procedure Write_Output_File; -- Write the content of JSON_Gen_Out_Vec to the output file function Get_Output_Name (Resolve_Links : Boolean) return String; -- Return the name of the output file procedure Generate_CU_Header is begin if Arg (Cmd, Header_File) /= null then declare Header : String_Access := Read_File (Arg (Cmd, Header_File).all); begin Put ("\1", From_UTF8 (Header.all)); Free (Header); end; end if; if Arg (Cmd, Comment_Header_Sample) then declare With_Spaces : constant W_Str := Intersperse_Spaces (UC_Root_Node_Name); Len : constant Natural := Arg (Cmd, Max_Line_Length); Dashes : constant W_Str := (1 .. Len => '-'); Spaces : constant W_Str := "--" & (1 .. Len - 4 => ' ') & "--"; begin Put ("\1\n", Dashes); Put ("\1\n", Spaces); Put ("\1\n", Centered_Comment (With_Spaces, Len)); Put ("\1\n", Spaces); Put ("\1\n", Centered_Comment ("B o d y", Len)); Put ("\1\n", Spaces); Put ("\1\n", Dashes); Put ("\n"); end; end if; if Arg (Cmd, Comment_Header_Spec) then declare pragma Assert (Input'First = 1); Last : Natural := 0; Next : Positive := 1; begin -- We want to copy comment lines from the input, starting at -- the start of the file, and stopping when we get to a -- noncomment line. Se set Last to point to the NL at the -- end of the last comment line in the header. while Next <= Input'Last - 2 loop while Next <= Input'Last - 2 and then Input (Next) in ' ' | ASCII.HT loop Next := Next + 1; end loop; exit when Input (Next .. Next + 1) /= "--"; while Next <= Input'Last and then Input (Next) /= ASCII.LF loop Next := Next + 1; end loop; Last := Next; Next := Next + 1; end loop; -- Now the slice ending at Last is what we want to copy, -- replacing the "S p e c" string, if any. Append (Out_Vec, Replace_String (Input (1 .. Last), From => "S p e c", To => "B o d y")); Put ("\n"); end; end if; end Generate_CU_Header; procedure Generate_Local_Header (Name : W_Str; Level : Natural) is begin if not Arg (Cmd, No_Local_Header) and then Level > 0 then declare Header_Length : constant Natural := Name'Length + 6; Header_Line : constant W_Str := (1 .. Header_Length => '-'); begin Put (" \1\n", Header_Line); Put (" -- \1 --\n", Name); Put (" \1\n\n", Header_Line); end; end if; end Generate_Local_Header; procedure Generate_Subunit_Start (Level : Natural) is begin if Level = 0 and then not Parent_Body_Of_Subunit.Is_Null then Put ("separate (\1)\n", Parent_Name); end if; end Generate_Subunit_Start; procedure Generate_Subp_Body (Decl : Ada_Node; Name : W_Str; Ada_Stub : Boolean) is Empty_Vec, JSON_Gen_Out_Vec : Char_Vector; Spec : constant Subp_Spec := Get_Subp_Spec (Decl); Overrides : constant Ada_Overriding_Node := (if Decl.Kind in Ada_Classic_Subp_Decl then Decl.As_Classic_Subp_Decl.F_Overriding else Ada_Overriding_Unspecified); Returns : constant Boolean := not F_Subp_Returns (Spec).Is_Null; begin JSON_Gen.Actions.Format_Vector (JSON_Gen_Cmd, Input => Empty_Vec, Node => Ada_Node (Spec), In_Range => (1, 0), Output => JSON_Gen_Out_Vec, Out_Range => Tool.Ignored_Out_Range, Messages => Tool.Ignored_Messages); pragma Assert (Is_Empty (Tool.Ignored_Messages)); Put (" \1\2 is", Overriding_String (Overrides), From_UTF8 (Elems (JSON_Gen_Out_Vec) (1 .. Last_Index (JSON_Gen_Out_Vec)))); if Ada_Stub then Put (" separate;\n"); else Put ("\n"); Generate_Json_Gen_Begin_End (Name, (if Returns then "function" else "procedure")); end if; end Generate_Subp_Body; procedure Generate_Entry_Body (Decl : Ada_Node; Name : W_Str) is Empty_Vec, JSON_Gen_Out_Vec : Char_Vector; Parms : constant Params := Decl.As_Entry_Decl.F_Spec.F_Entry_Params; Overrides : constant Ada_Overriding_Node := Decl.As_Entry_Decl.F_Overriding; begin if not Parms.Is_Null then JSON_Gen.Actions.Format_Vector (JSON_Gen_Cmd, Input => Empty_Vec, Node => Ada_Node (Parms), In_Range => (1, 0), Output => JSON_Gen_Out_Vec, Out_Range => Tool.Ignored_Out_Range, Messages => Tool.Ignored_Messages); pragma Assert (Is_Empty (Tool.Ignored_Messages)); Put ("\1entry \2 \3 when Standard.True is\n", Overriding_String (Overrides), Name, From_UTF8 (Elems (JSON_Gen_Out_Vec) (1 .. Last_Index (JSON_Gen_Out_Vec)))); else Put ("\1entry \2 when Standard.True is\n", Overriding_String (Overrides), Name); end if; Generate_Json_Gen_Begin_End (Name, "entry"); end Generate_Entry_Body; procedure Generate_Subp_Or_Entry_Body (Decl : Ada_Node; Name : W_Str; Ada_Stub : Boolean) is begin case Decl.Kind is when Ada_Subp_Decl | Ada_Generic_Subp_Decl => Generate_Subp_Body (Decl, Name, Ada_Stub); when Ada_Entry_Decl => Generate_Entry_Body (Decl, Name); when others => raise Program_Error; end case; end Generate_Subp_Or_Entry_Body; procedure Generate_Json_Gen_Begin_End (Name, Json_Gen_Kind : W_Str) is Returns : constant Boolean := Json_Gen_Kind = "function"; begin Put ("begin\n"); Put (" -- Generated stub: replace with real body!\n"); Put ("pragma Compile_Time_Warning " & "(Standard.True, ""\1 unimplemented"");\n", Q (Name)); if Arg (Cmd, No_Exception) and then not Returns then Put ("null;"); else Put ("\1raise Program_Error with ""Unimplemented \2 \3"";\n", (if Returns then "return " else ""), Json_Gen_Kind, Q (Name)); end if; Put ("end;\n"); end Generate_Json_Gen_Begin_End; procedure Walk (Decl : Ada_Node; Level : Natural) is Local_Decls, Incomplete_Types : Ada_Node_Vector; Name : constant W_Str := Full_Name (Get_Def_Name (Decl).As_Name); use Ada_Node_Vectors; procedure Collect_Local_Decls (Decls : Ada_Node_List); -- Append all the declarations that need recursive processing onto -- Local_Decls. procedure Collect_Incomplete_Types (Decls : Ada_Node_List); -- Append all the incomplete type declarations in a private part that -- are not completed in the same private part onto Incomplete_Types. procedure Collect_Local_Decls (Decls : Ada_Node_List) is begin for X in 1 .. Last_Child_Index (Decls) loop declare Subtree : constant Ada_Node := Childx (Decls, X); begin if (Looking_For_Ada_Stubs and then Subtree.Kind in Ada_Body_Stub) or else (not Looking_For_Ada_Stubs and then Needs_Completion (Subtree)) then Append (Local_Decls, Subtree); end if; end; end loop; end Collect_Local_Decls; procedure Collect_Incomplete_Types (Decls : Ada_Node_List) is begin for X in 1 .. Last_Child_Index (Decls) loop declare Subtree : constant Ada_Node := Childx (Decls, X); begin if Subtree.Kind in Ada_Incomplete_Type_Decl | Ada_Incomplete_Tagged_Type_Decl then declare Next_Part : constant Base_Type_Decl := Subtree.As_Base_Type_Decl.P_Next_Part; begin if Next_Part.Is_Null or else Next_Part = Subtree then -- ???Not sure why P_Next_Part sometimes returns -- "self". Append (Incomplete_Types, Subtree); end if; end; end if; end; end loop; end Collect_Incomplete_Types; -- Start of processing for Walk begin if Level > 0 then Put ("\n"); end if; -- For things we will recursively walk (packages, protecteds), -- generate the start of the body. For other things (tasks, -- subprograms, entries), generate the body. case Decl.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl | Ada_Package_Body_Stub => Generate_Local_Header (Name, Level); Generate_Subunit_Start (Level); Put ("package body \1 is\n", Name); when Ada_Single_Protected_Decl | Ada_Protected_Type_Decl | Ada_Protected_Body_Stub => Generate_Local_Header (Name, Level); Generate_Subunit_Start (Level); Put ("protected body \1 is\n", Name); when Ada_Single_Task_Decl | Ada_Task_Type_Decl | Ada_Task_Body_Stub => Generate_Local_Header (Name, Level); Generate_Subunit_Start (Level); Put ("task body \1 is\n", Name); Generate_Json_Gen_Begin_End (Name, "task"); when Ada_Subp_Decl | Ada_Generic_Subp_Decl | Ada_Subp_Body_Stub => Generate_Local_Header (Name, Level); Generate_Subunit_Start (Level); Generate_Subp_Body (Decl, Name, Ada_Stub => False); when Ada_Entry_Decl => Generate_Local_Header (Name, Level); Generate_Entry_Body (Decl, Name); when Ada_Subp_Body | Ada_Package_Body | Ada_Task_Body | Ada_Protected_Body => null; when others => raise Program_Error; end case; -- Collect in Local_Decls all the nested declarations or body stubs -- that need recursive processing. We don't process them right away, -- because we might need to sort the list. case Decl.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl | Ada_Single_Protected_Decl | Ada_Protected_Type_Decl => if not Vis_Part (Decl).Is_Null then Collect_Local_Decls (F_Decls (Vis_Part (Decl))); end if; if not Priv_Part (Decl).Is_Null then Collect_Local_Decls (F_Decls (Priv_Part (Decl))); end if; when Ada_Subp_Body | Ada_Package_Body | Ada_Task_Body | Ada_Protected_Body => Collect_Local_Decls (F_Decls (Body_Decls (Decl))); when Ada_Package_Body_Stub | Ada_Protected_Body_Stub => -- Find the corresponding spec, and walk the decls therein declare Spec : constant Basic_Decl := P_Previous_Part (Decl.As_Body_Node); begin if not Vis_Part (Spec).Is_Null then Collect_Local_Decls (F_Decls (Vis_Part (Spec))); end if; if not Priv_Part (Spec).Is_Null then Collect_Local_Decls (F_Decls (Priv_Part (Spec))); end if; end; when Ada_Subp_Decl | Ada_Generic_Subp_Decl | Ada_Single_Task_Decl | Ada_Task_Type_Decl | Ada_Entry_Decl | Ada_Task_Body_Stub | Ada_Subp_Body_Stub => null; when others => raise Program_Error; end case; -- Sort the list if appropriate. There's no point in sorting if we're -- doing subunits, because each one goes in a separate file. if Arg (Cmd, Alphabetical_Order) and then not Looking_For_Ada_Stubs then Sorting.Sort (Local_Decls); end if; -- For an incomplete type in a private part that has no completion in -- the same private part, generate a completion in the package body. -- We do this separately from the normal walk, because we want the -- full type declarations to come first, before procedure bodies and -- whatnot. case Decl.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl => if not Priv_Part (Decl).Is_Null then Collect_Incomplete_Types (F_Decls (Priv_Part (Decl))); for Child of Incomplete_Types loop Put ("\ntype \1 is\2 null record;\n", Full_Name (Get_Def_Name (Child).As_Name), (if Child.Kind = Ada_Incomplete_Type_Decl then "" else " tagged")); end loop; end if; when others => null; end case; -- Recursively process the nested declarations. In the case of Ada -- stubs, we call Generate, because the corrsponding subunit goes in -- a separate file, and Generate knows how to create files. for Child of Local_Decls loop if Looking_For_Ada_Stubs and then Decl.Kind not in Ada_Package_Body_Stub | Ada_Protected_Body_Stub then pragma Assert (Child.Kind in Ada_Body_Stub); Generate (Tool, Cmd, File_Name, Input, BOM_Seen, Root_Node => Child, Parent_Body_Of_Subunit => Root_Node); else Walk (Child, Level + 1); end if; end loop; -- For things we recursively walked above (packages, protecteds), -- generate the end of the body. For other things (tasks, -- subprograms, entries), generate nothing. case Decl.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl | Ada_Package_Body_Stub | Ada_Single_Protected_Decl | Ada_Protected_Type_Decl | Ada_Protected_Body_Stub => Put ("\nend;\n"); when Ada_Subp_Decl | Ada_Generic_Subp_Decl | Ada_Subp_Body_Stub | Ada_Single_Task_Decl | Ada_Task_Type_Decl | Ada_Task_Body_Stub | Ada_Entry_Decl | Ada_Subp_Body | Ada_Package_Body | Ada_Task_Body | Ada_Protected_Body => null; when others => raise Program_Error; end case; end Walk; procedure Format is Context : constant Analysis_Context := Create_Context (Charset => Wide_Character_Encoding (Cmd)); Out_Str : String renames Elems (Out_Vec) (1 .. Last_Index (Out_Vec)); Out_Unit : constant Analysis_Unit := Get_From_Buffer (Context, Filename => "", Buffer => Out_Str); begin if Has_Diagnostics (Out_Unit) then if Assert_Enabled then Text_IO.Put_Line ("Errors while parsing """ & Out_Str & """"); for D of Analysis.Diagnostics (Out_Unit) loop Text_IO.Put_Line (Langkit_Support.Diagnostics.To_Pretty_String (D)); end loop; end if; raise Program_Error; end if; pragma Assert (not Root (Out_Unit).Is_Null); JSON_Gen.Actions.Format_Vector (JSON_Gen_Cmd, Input => Out_Vec, Node => Root (Out_Unit), In_Range => (1, 0), Output => JSON_Gen_Out_Vec, Out_Range => Tool.Ignored_Out_Range, Messages => Tool.Ignored_Messages); pragma Assert (Is_Empty (Tool.Ignored_Messages)); end Format; function Get_Output_Name (Resolve_Links : Boolean) return String is pragma Unreferenced (Resolve_Links); use GNATCOLL.Projects, GNATCOLL.VFS; function Default_Name return String; -- This is used when the output file is not specified on the -- command line, and there is no project file. It uses the -- default GNAT conventions for file names (.ads, .adb). function Name_From_Project return String; -- This is used when there is a project file. It queries the -- project, so it uses whatever naming convention is specified in -- the project. function Default_Name return String is begin if Has_Suffix (File_Name, Suffix => ".ads") or else Has_Suffix (File_Name, Suffix => ".adb") then if Root_Node.Kind in Ada_Body_Stub then declare Root_Node_Name_String : constant String := To_UTF8 (LC_Root_Node_Name) & ".JSON"; -- Root_Node is the stub (in the Ada sense). begin return Replace_String (Root_Node_Name_String, From => ".", To => "-") & ".adb"; end; else return Result : String := File_Name do Result (Result'Last) := 'b'; end return; end if; else Cmd_Error ("output file name should be provided because " & File_Name & " does not follow GNAT naming rules for " & "spec files"); end if; end Default_Name; function Name_From_Project return String is Arg_Virt_File : constant Virtual_File := Create (Tool.Project_Tree.all, +File_Name); Arg_File_Info : constant File_Info := Info (Tool.Project_Tree.all, Arg_Virt_File); Unit_Name : constant String := To_UTF8 (LC_Root_Node_Name); -- Unit_Name is correct for both library units and Ada stubs Part : constant Unit_Parts := (if Root_Node.Kind in Ada_Body_Stub then Unit_Separate else Unit_Body); begin pragma Assert (Extending_Project (Project (Arg_File_Info)) = No_Project); -- We don't want to modify extended projects return Result : constant String := +GNATCOLL.Projects.File_From_Unit (Project => Project (Arg_File_Info), Unit_Name => Unit_Name, Part => Part, Language => "Ada", File_Must_Exist => False) do null; end return; end Name_From_Project; -- If the output file is specified on the command line, -- use that. Otherwise, if there is a project file, -- use that. Otherwise use the default naming convention. Simple : constant String := (if Arg (Cmd, Output) = null then (if Status (Tool.Project_Tree.all) = Empty then Simple_Name (Default_Name) else Name_From_Project) else Arg (Cmd, Output).all); pragma Assert (Simple_Name (Simple) = Simple); begin return Result : constant String := (if Arg (Cmd, Output_Directory) = null then Compose (Containing_Directory (File_Name), Simple) else Compose (Arg (Cmd, Output_Directory).all, Simple)) do if Debug_Flag_C then Formatted_Output.Put ("writing \1?\n", Result); end if; end return; end Get_Output_Name; Output_Name : constant String := Get_Output_Name (Resolve_Links => True); procedure Write_Output_File is Out_File : constant File_Descriptor := Create_File (Output_Name, Fmode => Binary); Out_String : String renames Elems (JSON_Gen_Out_Vec) (1 .. Last_Index (JSON_Gen_Out_Vec)); Status : Boolean; -- Start of Processing for Write_Output_File begin if Out_File = Invalid_FD then raise Program_Error with "write of " & Output_Name & " failed"; end if; if BOM_Seen then -- if Options.Output_Encoding /= System.WCh_Con.WCEM_UTF8 then -- raise Program_Error; -- end if; Write_File (Out_File, Ada.Strings.UTF_Encoding.BOM_8); -- Put (W_Char'Val (16#FEFF#)); -- BOM as a wide character end if; Write_File (Out_File, Out_String); Close (Out_File, Status); if not Status then raise Program_Error with "write of " & Output_Name & " failed"; end if; if Debug_Flag_C then Formatted_Output.Put ("wrote \1\n", Output_Name); end if; -- ???The following messages would be more helpful if they say what -- is created, not what it's created for. if not Arg (Cmd, Quiet) then if Root_Node.Kind in Ada_Body_Stub then Formatted_Output.Put ("separate body is created for stub for \1\n", To_UTF8 (Id_Name (Get_Def_Name (Root_Node)))); elsif Update_Body_Specified (Cmd) then Formatted_Output.Put ("body is updated for \1\n", File_Name); else Formatted_Output.Put ("body is created for \1\n", File_Name); end if; end if; end Write_Output_File; procedure Update_Body; -- Implement the --update-body=N switch. procedure Update_Body is use Slocs, Ada_Node_Vectors; Search_Line : constant Line_Number := Line_Number (Arg (Cmd, Update_Body)); -- For --update-body=N, this is the value of N; we are searching for -- a subprogram declaration that appears on line N of the spec. Subp_Decl : Ada_Node := No_Ada_Node; -- The Subp_Decl at Search_Line Body_Line : Line_Number; -- The line number in the body file after which the new subprogram -- body should be inserted. Body_Line_Set : Boolean := False; procedure Search; -- Compute Subp_Decl and Body_Line function Find_Insertion_Index (Old_Content : String; Body_Line : Line_Number) return Positive; -- Return the index at which the stub is to be inserted procedure Indent_Stub (Amount : Natural); -- Indents the stub that is in JSON_Gen_Out_Vec. This is needed because the -- --initial-indentation switch doesn't fully work. We don't specify -- --initial-indentation=3; instead we subtract 3 from -- --max-line-length, and call Indent_Stub. procedure Search is -- Walk the spec, recursing into nested package and protected -- specs, searching for the subprogram declaration at Search_Line. -- Each time we see a declaration that has a corresponding -- declaration in the body, update Body_Line; we're going to -- insert the new body after the last such one encountered. When -- we find the subprogram we're searching for, we set Subp_Decl -- and quit. procedure Rec (Decl : Ada_Node); procedure Rec (Decl : Ada_Node) is Sorted : Ada_Node_Vector; procedure Update_Body_Line (New_Body_Line : Line_Number); -- Update Body_Line, asserting that we have not yet found the -- subprogram declaration we are looking for; once found, we -- should quit. procedure Collect_Decls (Decls : Ada_Node_List); -- Collect the declarations into Sorted, which will be sorted -- if --alphabetical-order was specified. procedure Update_Body_Line (New_Body_Line : Line_Number) is use Utils.Formatted_Output; begin if Debug_Flag_V then nn (Decl); Put ("\1 ==> \2\n", Image (Integer (Body_Line)), Image (Integer (New_Body_Line))); end if; pragma Assert (Subp_Decl.Is_Null); Body_Line_Set := True; Body_Line := New_Body_Line; end Update_Body_Line; procedure Collect_Decls (Decls : Ada_Node_List) is begin for X in 1 .. Last_Child_Index (Decls) loop declare Subtree : constant Ada_Node := Childx (Decls, X); begin Append (Sorted, Subtree); end; end loop; end Collect_Decls; Sloc : constant Source_Location_Range := Sloc_Range (Decl); Decl_Name : constant String := To_UTF8 (Full_Name (Get_Def_Name (Decl).As_Name)); -- Start of processing for Rec begin if Search_Line in Sloc.Start_Line .. Sloc.End_Line then case Decl.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl | Ada_Single_Protected_Decl | Ada_Protected_Type_Decl => declare B : constant Body_Node := Decl.As_Basic_Decl.P_Body_Part_For_Decl; begin if B.Is_Null then if not Body_Line_Set then Cmd_Error ("body of " & Decl_Name & " not found"); end if; else Update_Body_Line (Body_Decls (B).Sloc_Range.Start_Line); end if; end; if not Vis_Part (Decl).Is_Null then Collect_Decls (F_Decls (Vis_Part (Decl))); end if; if not Priv_Part (Decl).Is_Null then Collect_Decls (F_Decls (Priv_Part (Decl))); end if; if Arg (Cmd, Alphabetical_Order) then Sorting.Sort (Sorted); end if; for X in 1 .. Last_Index (Sorted) loop Rec (Sorted (X)); exit when not Subp_Decl.Is_Null; end loop; if Subp_Decl.Is_Null then Cmd_Error ("subprogram not found at line " & Image (Arg (Cmd, Update_Body))); end if; when Ada_Subp_Decl | Ada_Generic_Subp_Decl | Ada_Entry_Decl => pragma Assert (Subp_Decl.Is_Null); Subp_Decl := Decl; if not Decl.As_Basic_Decl.P_Body_Part_For_Decl.Is_Null then Cmd_Error ("body for " & Decl_Name & " already exists"); end if; when others => null; end case; else declare B : constant Body_Node := Decl.As_Basic_Decl.P_Body_Part_For_Decl; begin if not B.Is_Null then Update_Body_Line (B.Sloc_Range.End_Line); end if; end; end if; end Rec; begin Rec (Root_Node); if Subp_Decl.Is_Null then Cmd_Error ("no subprogram found at line " & Image (Arg (Cmd, Update_Body))); end if; end Search; function Find_Insertion_Index (Old_Content : String; Body_Line : Line_Number) return Positive is Line_Num : Line_Number := 1; begin return Result : Positive := 1 do while Line_Num <= Body_Line loop if Old_Content (Result) = ASCII.LF then Line_Num := Line_Num + 1; end if; Result := Result + 1; end loop; end return; end Find_Insertion_Index; procedure Indent_Stub (Amount : Natural) is Ind : constant String := (1 .. Amount => ' '); Temp : Char_Vector; begin Append (Temp, Ind); for X in 1 .. Last_Index (JSON_Gen_Out_Vec) loop Append (Temp, JSON_Gen_Out_Vec (X)); if JSON_Gen_Out_Vec (X) = ASCII.LF and then X /= Last_Index (JSON_Gen_Out_Vec) and then JSON_Gen_Out_Vec (X + 1) /= ASCII.LF then Append (Temp, Ind); end if; end loop; Move (Target => JSON_Gen_Out_Vec, Source => Temp); end Indent_Stub; Old_Content : String_Access := Read_File (Output_Name); Backup_Name : constant String := Output_Name & ".bak"; Create_Backup : constant Boolean := False; -- For now, we do not create a backup file -- Start of processing for Update_Body begin if Root_Node.Kind not in Ada_Package_Decl | Ada_Generic_Package_Decl then Cmd_Error ("package spec not found"); end if; Search; pragma Assert (Body_Line_Set); declare Name : constant W_Str := Full_Name (Get_Def_Name (Subp_Decl).As_Name); Level : constant Natural := 1; Insertion_Index : constant Positive := Find_Insertion_Index (Old_Content.all, Body_Line); pragma Assert (Old_Content (Insertion_Index - 1) = ASCII.LF); begin -- We want to insert the generated stub into the body at -- Insertion_Index. We want to pretty print the generated stub, -- but leave the rest of the code alone. So we generate the stub -- into Out_Vec, then call Format, which formats it into -- JSON_Gen_Out_Vec. Then move it back into Out_Vec, copy the first part -- of the body to JSON_Gen_Out_Vec, copy the stub into JSON_Gen_Out_Vec, and -- copy the rest of the body into JSON_Gen_Out_Vec. Finally, call -- Write_Output_File to write JSON_Gen_Out_Vec to the output (body) -- file. pragma Assert (Is_Empty (Out_Vec) and then Is_Empty (JSON_Gen_Out_Vec)); Generate_Local_Header (Name, Level); Generate_Subunit_Start (Level); Generate_Subp_Or_Entry_Body (Subp_Decl, Name, Ada_Stub => Arg (Cmd, Subunits)); -- JSON_Gen.Command_Lines.Json_Gen_Nat_Switches.Set_Arg -- (JSON_Gen_Cmd, JSON_Gen.Command_Lines.Initial_Indentation, 0); JSON_Gen.Command_Lines.Json_Gen_Nat_Switches.Set_Arg (JSON_Gen_Cmd, JSON_Gen.Command_Lines.Max_Line_Length, JSON_Gen.Command_Lines.Json_Gen_Nat_Switches.Arg (JSON_Gen_Cmd, JSON_Gen.Command_Lines.Max_Line_Length) - 3); if Update_Body_Specified (Cmd) and then Arg (Cmd, Subunits) then -- We would prefer to use Format in this case, with an -- appropriate Rule passed to Get_From_Buffer, but that -- doesn't quite work. Move (Target => JSON_Gen_Out_Vec, Source => Out_Vec); Indent_Stub (2); else Format; Indent_Stub (3); end if; Move (Target => Out_Vec, Source => JSON_Gen_Out_Vec); Append (JSON_Gen_Out_Vec, Old_Content (Old_Content'First .. Insertion_Index - 1)); Append (JSON_Gen_Out_Vec, ASCII.LF); Append (JSON_Gen_Out_Vec, Elems (Out_Vec) (1 .. Last_Index (Out_Vec))); if Old_Content (Insertion_Index) /= ASCII.LF then Append (JSON_Gen_Out_Vec, ASCII.LF); end if; Append (JSON_Gen_Out_Vec, Old_Content (Insertion_Index .. Old_Content'Last)); Free (Old_Content); Clear (Out_Vec); end; if Create_Backup then Move_File (Old_Name => Output_Name, New_Name => Backup_Name); end if; Write_Output_File; -- Finally, if we generated an Ada stub (i.e. --subunits is True), we -- recursively call ourself on the body to generate the subunits. if Arg (Cmd, Subunits) then declare Body_Cmd : Cmd_Line := Copy_Command_Line (Cmd); Cont : Natural := 1; begin Clear_File_Names (Body_Cmd); Append_File_Name (Body_Cmd, Output_Name); Set_Arg (Body_Cmd, Update_Body, No_Update_Body); Process_File (Tool, Body_Cmd, Output_Name, Cont); end; end if; end Update_Body; -- Start of processing for Generate begin if Update_Body_Specified (Cmd) then Update_Body; goto Skip; end if; -- If we are looking for Ada stubs, then of course the body file exists; -- we are not going to overwrite it. If we are generating a subunit for -- an Ada stub, and the subunit file already exists, we simply skip -- it. If we are generating a body for an Ada spec, it is an error if -- the output already exists, unless --force was given. if not Looking_For_Ada_Stubs and then Exists (Output_Name) then if Root_Node.Kind in Ada_Body_Stub then goto Skip; else if not Arg (Cmd, Force) then Cmd_Error ("the body for " & File_Name & " already exists; " & "use -f to overwrite it"); end if; end if; end if; Generate_CU_Header; Put ("pragma Ada_2012;\n"); Walk (Root_Node, Level => 0); -- If we're processing a body for stubs, we don't want to output -- anything corresponding to that body; we've already output the -- subunits. In that case, the above Walk will have generated some -- rubbage, which we ignore. Looking_For_Ada_Stubs will be False if the -- input is a spec, so we're generating bodies, or if we're in a -- recursive call to Generate for an Ada stub. It will be True only for -- the outer call with a body as input. if not Looking_For_Ada_Stubs then Format; Write_Output_File; end if; <<Skip>> end Generate; overriding procedure Per_File_Action (Tool : in out Json_Gen_Tool; Cmd : Command_Line; File_Name : String; Input : String; BOM_Seen : Boolean; Unit : Analysis_Unit) is Lib_Item_Or_Subunit : constant Ada_Node := Root (Unit).As_Compilation_Unit.F_Body; Root_Node : constant Ada_Node := (case Lib_Item_Or_Subunit.Kind is when Ada_Library_Item => Lib_Item_Or_Subunit.As_Library_Item.F_Item.As_Ada_Node, when Ada_Subunit => Lib_Item_Or_Subunit.As_Subunit.F_Body.As_Ada_Node, when others => raise Program_Error); -- Start of processing for Per_File_Action begin if Debug_Mode then Print (Unit); -- Put ("With trivia\n"); -- PP_Trivia (Unit); end if; case Root_Node.Kind is when Ada_Package_Decl | Ada_Generic_Package_Decl | Ada_Subp_Decl | Ada_Generic_Subp_Decl => if Arg (Cmd, Subunits) and then not Update_Body_Specified (Cmd) then Cmd_Error ("argument unit cannot have subunits"); end if; if not Needs_Completion (Root_Node) then Cmd_Error_No_Help ("Compilation unit " & To_UTF8 (Full_Name (Get_Def_Name (Root_Node).As_Name)) & " does not require a body"); end if; when Ada_Body_Node => if not Arg (Cmd, Subunits) then declare use Text_IO; begin Put (Standard_Error, Utils.Tool_Names.Tool_Name & ": "); Put_Line (Standard_Error, "input file looks like a body"); Cmd_Error_No_Help ("output file name should be provided because " & File_Name & " does not follow GNAT naming rules for " & "spec files"); end; end if; when others => raise Program_Error; end case; Generate (Tool, Cmd, File_Name, Input, BOM_Seen, Root_Node, Parent_Body_Of_Subunit => No_Ada_Node); end Per_File_Action; --------------- -- Tool_Help -- --------------- overriding procedure Tool_Help (Tool : Json_Gen_Tool) is pragma Unreferenced (Tool); use Utils.Formatted_Output; begin pragma Style_Checks ("M200"); -- Allow long lines Put ("Usage: jsongen [options] {filename}\n"); Put ("\n"); Put (" filename Ada source file\n"); Put ("\n"); Put ("options:\n"); Put (" --version Display version and exit\n"); Put (" --help Display usage and exit\n"); Put ("\n"); Put (" -Pproject Use project file project\n"); Put (" -U process all sources of the argument project\n"); Put (" -U main process the closure of units rooted at unit main\n"); Put (" -Xname=value specify an external reference for argument project file\n"); Put (" -eL follow all symbolic links when processing project files\n"); Put ("\n"); Put (" --subunits generate separate bodies for body stubs\n"); Put (" --files=filename name of a file containing a list of files to process\n"); Put ("\n"); Put (" --force replace an existing body file (if any), with a body sample\n"); Put (" --max-line-length=nnn maximum line length in sample body\n"); Put (" --indentation=n number of spaces used for indentation in sample body\n"); Put (" --alphabetical-order alphabetically order local bodies\n"); Put (" --comment_header_sample insert a sample comment header\n"); Put (" --comment_header_spec insert the comment header from the spec\n"); Put (" --header-file=filename insert the comment header from the specified file\n"); Put (" --no-exception avoid raising Program_Error in procedure stubs\n"); Put (" --no-local-header no local comment headers for unit stubs\n"); Put (" --output=body-name the name of the file to place the body into\n"); Put (" --output-dir=directory place generated file(s) into directory\n"); Put (" --wide-character-encoding=(8|b)\n"); Put (" wide character encoding of the result file\n"); Put ("\n"); Put (" --quiet / -q quiet mode\n"); Put (" --verbose / -v verbose mode\n"); Put ("\n\nReport bugs to [email protected]\n"); pragma Style_Checks ("M79"); end Tool_Help; end JSON_Gen.Actions;
39.493392
100
0.558203
18201070e02c8c2a99558cbdf1fed6c0eb069b95
5,187
ads
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-tasloc.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-tasloc.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-tasloc.ads
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . T A S K _ L O C K -- -- -- -- S p e c -- -- -- -- Copyright (C) 1998-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. -- -- -- ------------------------------------------------------------------------------ -- Simple task lock and unlock routines -- A small package containing a task lock and unlock routines for creating -- a critical region. The lock involved is a global lock, shared by all -- tasks, and by all calls to these routines, so these routines should be -- used with care to avoid unnecessary reduction of concurrency. -- These routines may be used in a non-tasking program, and in that case -- they have no effect (they do NOT cause the tasking runtime to be loaded). -- Note: this package is in the System hierarchy so that it can be directly -- be used by other predefined packages. User access to this package is via -- a renaming of this package in GNAT.Task_Lock (file g-tasloc.ads). package System.Task_Lock is pragma Preelaborate; procedure Lock; pragma Inline (Lock); -- Acquires the global lock, starts the execution of a critical region -- which no other task can enter until the locking task calls Unlock procedure Unlock; pragma Inline (Unlock); -- Releases the global lock, allowing another task to successfully -- complete a Lock operation. Terminates the critical region. -- -- The recommended protocol for using these two procedures is as -- follows: -- -- Locked_Processing : begin -- Lock; -- ... -- TSL.Unlock; -- -- exception -- when others => -- Unlock; -- raise; -- end Locked_Processing; -- -- This ensures that the lock is not left set if an exception is raised -- explicitly or implicitly during the critical locked region. -- -- Note on multiple calls to Lock: It is permissible to call Lock -- more than once with no intervening Unlock from a single task, -- and the lock will not be released until the corresponding number -- of Unlock operations has been performed. For example: -- -- System.Task_Lock.Lock; -- acquires lock -- System.Task_Lock.Lock; -- no effect -- System.Task_Lock.Lock; -- no effect -- System.Task_Lock.Unlock; -- no effect -- System.Task_Lock.Unlock; -- no effect -- System.Task_Lock.Unlock; -- releases lock -- -- However, as previously noted, the Task_Lock facility should only -- be used for very local locks where the probability of conflict is -- low, so usually this kind of nesting is not a good idea in any case. -- In more complex locking situations, it is more appropriate to define -- an appropriate protected type to provide the required locking. -- -- It is an error to call Unlock when there has been no prior call to -- Lock. The effect of such an erroneous call is undefined, and may -- result in deadlock, or other malfunction of the run-time system. end System.Task_Lock;
52.393939
78
0.533063
c54a774f69971a1740290a172911bdfc790ef676
1,492
adb
Ada
src/caches-access_patterns-linear.adb
HeisenbugLtd/cache-sim
a0059c22e2df1fdbf7ea3329c94a06f0d13954cf
[ "WTFPL" ]
null
null
null
src/caches-access_patterns-linear.adb
HeisenbugLtd/cache-sim
a0059c22e2df1fdbf7ea3329c94a06f0d13954cf
[ "WTFPL" ]
null
null
null
src/caches-access_patterns-linear.adb
HeisenbugLtd/cache-sim
a0059c22e2df1fdbf7ea3329c94a06f0d13954cf
[ "WTFPL" ]
null
null
null
------------------------------------------------------------------------------ -- Copyright (C) 2012-2020 by Heisenbug Ltd. -- -- 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); package body Caches.Access_Patterns.Linear is ----------------------------------------------------------------------------- -- Create ----------------------------------------------------------------------------- function Create (Length : in Bytes; Step : in Bytes := 1) return Linear_Pattern is begin return Linear_Pattern'(Length => Length, Count => 0, Start_Address => 0, Step => Address (Step)); end Create; ----------------------------------------------------------------------------- -- Next ----------------------------------------------------------------------------- function Next (This_Ptr : access Linear_Pattern) return Address is This : Linear_Pattern renames This_Ptr.all; begin This.Count := This.Count + 1; return This.Start_Address + Address (This.Count - 1) * This.Step; end Next; end Caches.Access_Patterns.Linear;
41.444444
80
0.409517
c5106907387d0eed6edd7b8a504a5b38d56f26e5
259
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/pointer_discr1_pkg2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/pointer_discr1_pkg2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/pointer_discr1_pkg2.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
with Unchecked_Conversion; with Pointer_Discr1_Pkg3; package Pointer_Discr1_Pkg2 is subtype T_WINDOW is Pointer_Discr1_Pkg3.T_WINDOW(Pointer_Discr1_Pkg3.One); function TO_WINDOW is new Unchecked_Conversion(Integer, T_WINDOW); end Pointer_Discr1_Pkg2;
23.545455
76
0.849421
cb6c1ab6bb110d4b9cacb82fcb2dd3e77c8e8558
4,259
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c41303b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c41303b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c41303b.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C41303B.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 NOTATION L.ALL IS ALLOWED IF L IS THE NAME OF AN -- ACCESS OBJECT DESIGNATING A RECORD, AN ARRAY, A SCALAR, OR -- ANOTHER ACCESS OBJECT. -- CHECK THAT IF A IS AN IDENTIFIER DENOTING AN ACCESS OBJECT WHICH -- IN TURN DESIGNATES AN ACCESS OBJECT, THE FORM A.ALL.ALL IS -- ACCEPTED. -- THIS OBJECTIVE IS COVERED IN SEVERAL TESTS. IN THE FOLLOWING DIAGRAM, -- THE PORTION COVERED BY THE CURRENT TEST IS MARKED BY 'X' . -- || ASSIGNMT | PROC. PARAMETERS -- || ():= :=() | IN OUT IN OUT -- ========================||=============|==================== -- ACC REC || | -- --------------||-------------|-------------------- -- 1 '.ALL' ACC ARR || XXXXXXXXX | -- --------------||-------------|-------------------- -- ACC SCLR || | -- ========================||=============|==================== -- ACC ACC REC || | -- --------------||-------------|-------------------- -- 1 '.ALL' ACC ACC ARR || | -- --------------||-------------|-------------------- -- ACC ACC SCLR || | -- ========================||=============|==================== -- ACC ACC REC || | -- --------------||-------------|-------------------- -- 2 '.ALL' ACC ACC ARR || | -- --------------||-------------|-------------------- -- ACC ACC SCLR || | -- ============================================================ -- RM 1/20/82 -- RM 1/25/82 -- SPS 12/2/82 WITH REPORT; USE REPORT; PROCEDURE C41303B IS BEGIN TEST ( "C41303B" , "CHECK THAT THE NOTATION L.ALL IS ALLOWED IF" & " L IS THE NAME OF AN ACCESS OBJECT" & " DESIGNATING A RECORD, AN ARRAY, OR A SCALAR"); ------------------------------------------------------------------- -------------------- ACCESS TO ARRAY ---------------------------- DECLARE TYPE ARR IS ARRAY(1..2) OF BOOLEAN ; ARR_CONST : ARR := ( TRUE , FALSE ); ARR_VAR : ARR := ARR_CONST ; TYPE ACC_ARR IS ACCESS ARR ; ACC_ARR_VAR : ACC_ARR := NEW ARR'( FALSE , TRUE ); BEGIN ARR_VAR := ACC_ARR_VAR.ALL ; IF ARR_VAR /= ( FALSE , TRUE ) THEN FAILED( "ACC. ARRAY, RIGHT SIDE OF ASSIGN., WRONG VAL."); END IF; ACC_ARR_VAR.ALL := ARR_CONST ; IF ACC_ARR_VAR.ALL /= ( TRUE , FALSE ) THEN FAILED( "ACC. ARRAY, LEFT SIDE OF ASSIGN., WRONG VAL." ); END IF; END ; ------------------------------------------------------------------- RESULT; END C41303B;
36.09322
79
0.427096
0ee9ef9a21c798077c31cafaa59fc134678a7524
793
ads
Ada
gnu/src/gdb/gdb/testsuite/gdb.ada/mi_var_array/pck.ads
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/mi_var_array/pck.ads
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
gnu/src/gdb/gdb/testsuite/gdb.ada/mi_var_array/pck.ads
ghsecuritylab/ellcc-mirror
b03a4afac74d50cf0987554b8c0cd8209bcb92a2
[ "BSD-2-Clause" ]
null
null
null
-- Copyright 2015 Free Software Foundation, Inc. -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 3 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program. If not, see <http://www.gnu.org/licenses/>. with System; package Pck is procedure Do_Nothing (A : System.Address); end Pck;
39.65
73
0.737705
184ea00c31820d0e3fd65d1905f1d342e1a37f21
4,071
adb
Ada
libraries/zlib/contrib/ada/read.adb
tomberek/RaySAR
b8f885e1b640662b67a568cf8c41b8dcfc9a9c8d
[ "Zlib" ]
1
2021-07-29T01:38:56.000Z
2021-07-29T01:38:56.000Z
libraries/zlib/contrib/ada/read.adb
tomberek/RaySAR
b8f885e1b640662b67a568cf8c41b8dcfc9a9c8d
[ "Zlib" ]
null
null
null
libraries/zlib/contrib/ada/read.adb
tomberek/RaySAR
b8f885e1b640662b67a568cf8c41b8dcfc9a9c8d
[ "Zlib" ]
1
2021-08-05T17:43:15.000Z
2021-08-05T17:43:15.000Z
---------------------------------------------------------------- -- ZLib for Ada thick binding. -- -- -- -- Copyright (C) 2002-2003 Dmitriy Anisimkov -- -- -- -- Open source license information is in the zlib.ads file. -- ---------------------------------------------------------------- -- $Id: read.adb,v 1.7 2003/08/12 12:12:35 vagul Exp $ -- Test/demo program for the generic read interface. with Ada.Numerics.Discrete_Random; with Ada.Streams; with Ada.Text_IO; with ZLib; procedure Read is use Ada.Streams; ------------------------------------ -- Test configuration parameters -- ------------------------------------ File_Size : Stream_Element_Offset := 100_000; Continuous : constant Boolean := False; -- If this constant is True, the test would be repeated again and again, -- with increment File_Size for every iteration. Header : constant ZLib.Header_Type := ZLib.Default; -- Do not use Header other than Default in ZLib versions 1.1.4 and older. Init_Random : constant := 8; -- We are using the same random sequence, in case of we catch bug, -- so we would be able to reproduce it. -- End -- Pack_Size : Stream_Element_Offset; Offset : Stream_Element_Offset; Filter : ZLib.Filter_Type; subtype Visible_Symbols is Stream_Element range 16#20# .. 16#7E#; package Random_Elements is new Ada.Numerics.Discrete_Random (Visible_Symbols); Gen : Random_Elements.Generator; Period : constant Stream_Element_Offset := 200; -- Period constant variable for random generator not to be very random. -- Bigger period, harder random. Read_Buffer : Stream_Element_Array (1 .. 2048); Read_First : Stream_Element_Offset; Read_Last : Stream_Element_Offset; procedure Reset; procedure Read (Item : out Stream_Element_Array; Last : out Stream_Element_Offset); -- this procedure is for generic instantiation of -- ZLib.Read -- reading data from the File_In. procedure Read is new ZLib.Read (Read, Read_Buffer, Read_First, Read_Last); ---------- -- Read -- ---------- procedure Read (Item : out Stream_Element_Array; Last : out Stream_Element_Offset) is begin Last := Stream_Element_Offset'Min (Item'Last, Item'First + File_Size - Offset); for J in Item'First .. Last loop if J < Item'First + Period then Item (J) := Random_Elements.Random (Gen); else Item (J) := Item (J - Period); end if; Offset := Offset + 1; end loop; end Read; ----------- -- Reset -- ----------- procedure Reset is begin Random_Elements.Reset (Gen, Init_Random); Pack_Size := 0; Offset := 1; Read_First := Read_Buffer'Last + 1; end Reset; begin Ada.Text_IO.Put_Line ("ZLib " & ZLib.Version); loop for Level in ZLib.Compression_Level'Range loop Ada.Text_IO.Put ("Level =" & ZLib.Compression_Level'Image (Level)); -- Deflate using generic instantiation. ZLib.Deflate_Init (Filter, Level, Header => Header); Reset; Ada.Text_IO.Put (Stream_Element_Offset'Image (File_Size) & " ->"); loop declare Buffer : Stream_Element_Array (1 .. 1024); Last : Stream_Element_Offset; begin Read (Filter, Buffer, Last); Pack_Size := Pack_Size + Last - Buffer'First + 1; exit when Last < Buffer'Last; end; end loop; Ada.Text_IO.Put_Line (Stream_Element_Offset'Image (Pack_Size)); ZLib.Close (Filter); end loop; exit when not Continuous; File_Size := File_Size + 1; end loop; end Read;
26.782895
78
0.54704
181a8ce94d85ad702440bfd516dab1411aca2b45
5,182
ads
Ada
src/security-oauth.ads
jquorning/ada-security
b9aa8e7deffaf71d50d501e284b821b8b0f942c3
[ "Apache-2.0" ]
19
2015-01-18T23:04:59.000Z
2021-11-30T10:39:10.000Z
src/security-oauth.ads
jquorning/ada-security
b9aa8e7deffaf71d50d501e284b821b8b0f942c3
[ "Apache-2.0" ]
4
2020-08-06T15:37:51.000Z
2022-02-04T20:19:39.000Z
src/security-oauth.ads
jquorning/ada-security
b9aa8e7deffaf71d50d501e284b821b8b0f942c3
[ "Apache-2.0" ]
3
2021-01-04T10:23:22.000Z
2022-01-30T21:45:49.000Z
----------------------------------------------------------------------- -- security-oauth -- OAuth Security -- Copyright (C) 2012, 2016, 2017, 2018, 2019, 2020 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; -- = OAuth = -- The <b>Security.OAuth</b> package defines and implements the OAuth 2.0 authorization -- framework as defined by the IETF working group in RFC 6749: -- The OAuth 2.0 Authorization Framework. -- -- @include security-oauth-clients.ads -- @include security-oauth-servers.ads package Security.OAuth is -- OAuth 2.0: Section 10.2.2. Initial Registry Contents -- RFC 6749: 11.2.2. Initial Registry Contents CLIENT_ID : constant String := "client_id"; CLIENT_SECRET : constant String := "client_secret"; RESPONSE_TYPE : constant String := "response_type"; REDIRECT_URI : constant String := "redirect_uri"; SCOPE : constant String := "scope"; STATE : constant String := "state"; CODE : constant String := "code"; ERROR_DESCRIPTION : constant String := "error_description"; ERROR_URI : constant String := "error_uri"; GRANT_TYPE : constant String := "grant_type"; ACCESS_TOKEN : constant String := "access_token"; TOKEN_TYPE : constant String := "token_type"; EXPIRES_IN : constant String := "expires_in"; USERNAME : constant String := "username"; PASSWORD : constant String := "password"; REFRESH_TOKEN : constant String := "refresh_token"; NONCE_TOKEN : constant String := "nonce"; -- RFC 6749: 5.2. Error Response INVALID_REQUEST : aliased constant String := "invalid_request"; INVALID_CLIENT : aliased constant String := "invalid_client"; INVALID_GRANT : aliased constant String := "invalid_grant"; UNAUTHORIZED_CLIENT : aliased constant String := "unauthorized_client"; UNSUPPORTED_GRANT_TYPE : aliased constant String := "unsupported_grant_type"; INVALID_SCOPE : aliased constant String := "invalid_scope"; -- RFC 6749: 4.1.2.1. Error Response ACCESS_DENIED : aliased constant String := "access_denied"; UNSUPPORTED_RESPONSE_TYPE : aliased constant String := "unsupported_response_type"; SERVER_ERROR : aliased constant String := "server_error"; TEMPORARILY_UNAVAILABLE : aliased constant String := "temporarily_unavailable"; type Client_Authentication_Type is (AUTH_NONE, AUTH_BASIC); -- ------------------------------ -- Application -- ------------------------------ -- The <b>Application</b> holds the necessary information to let a user -- grant access to its protected resources on the resource server. It contains -- information that allows the OAuth authorization server to identify the -- application (client id and secret key). type Application is tagged private; -- Get the application identifier. function Get_Application_Identifier (App : in Application) return String; -- Set the application identifier used by the OAuth authorization server -- to identify the application (for example, the App ID in Facebook). procedure Set_Application_Identifier (App : in out Application; Client : in String); -- Set the application secret defined in the OAuth authorization server -- for the application (for example, the App Secret in Facebook). procedure Set_Application_Secret (App : in out Application; Secret : in String); -- Set the redirection callback that will be used to redirect the user -- back to the application after the OAuth authorization is finished. procedure Set_Application_Callback (App : in out Application; URI : in String); -- Set the client authentication method used when doing OAuth calls for this application. -- See RFC 6749, 2.3. Client Authentication procedure Set_Client_Authentication (App : in out Application; Method : in Client_Authentication_Type); private type Application is tagged record Client_Id : Ada.Strings.Unbounded.Unbounded_String; Secret : Ada.Strings.Unbounded.Unbounded_String; Callback : Ada.Strings.Unbounded.Unbounded_String; Client_Auth : Client_Authentication_Type := AUTH_NONE; end record; end Security.OAuth;
47.981481
93
0.651486
dca6fb6d4bfd95bdf71c839ba63215a0203f41ba
16,622
adb
Ada
src/sys/os-unix/util-processes-os.adb
jquorning/ada-util
84314f66853ae5a3afe41b62a02eaeb65931cad7
[ "Apache-2.0" ]
60
2015-01-18T23:05:34.000Z
2022-03-20T18:56:30.000Z
src/sys/os-unix/util-processes-os.adb
jquorning/ada-util
84314f66853ae5a3afe41b62a02eaeb65931cad7
[ "Apache-2.0" ]
20
2016-09-15T16:41:30.000Z
2022-03-29T22:02:32.000Z
src/sys/os-unix/util-processes-os.adb
jquorning/ada-util
84314f66853ae5a3afe41b62a02eaeb65931cad7
[ "Apache-2.0" ]
10
2015-02-13T04:00:45.000Z
2022-03-20T18:57:54.000Z
----------------------------------------------------------------------- -- util-processes-os -- System specific and low level operations -- Copyright (C) 2011, 2012, 2017, 2018, 2019, 2020, 2021 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Directories; with Ada.Unchecked_Deallocation; with Util.Strings; package body Util.Processes.Os is use Util.Systems.Os; use type Interfaces.C.size_t; use type Util.Systems.Types.File_Type; use type Ada.Directories.File_Kind; type Pipe_Type is array (0 .. 1) of File_Type; procedure Close (Pipes : in out Pipe_Type); procedure Free_Array (Argv : in out Util.Systems.Os.Ptr_Ptr_Array); procedure Allocate (Into : in out Util.Systems.Os.Ptr_Ptr_Array; Count : in Interfaces.C.size_t); -- ------------------------------ -- Create the output stream to read/write on the process input/output. -- Setup the file to be closed on exec. -- ------------------------------ function Create_Stream (File : in File_Type) return Util.Streams.Raw.Raw_Stream_Access is Stream : constant Util.Streams.Raw.Raw_Stream_Access := new Util.Streams.Raw.Raw_Stream; Status : constant Integer := Sys_Fcntl (File, F_SETFL, FD_CLOEXEC); pragma Unreferenced (Status); begin Stream.Initialize (File); return Stream; end Create_Stream; -- ------------------------------ -- Wait for the process to exit. -- ------------------------------ overriding procedure Wait (Sys : in out System_Process; Proc : in out Process'Class; Timeout : in Duration) is pragma Unreferenced (Sys, Timeout); use type Util.Streams.Output_Stream_Access; Result : Integer; Wpid : Integer; begin -- Close the input stream pipe if there is one. if Proc.Input /= null then Util.Streams.Raw.Raw_Stream'Class (Proc.Input.all).Close; end if; Wpid := Sys_Waitpid (Integer (Proc.Pid), Result'Address, 0); if Wpid = Integer (Proc.Pid) then Proc.Exit_Value := Result / 256; if Result mod 256 /= 0 then Proc.Exit_Value := (Result mod 256) * 1000; end if; end if; end Wait; -- ------------------------------ -- Terminate the process by sending a signal on Unix and exiting the process on Windows. -- This operation is not portable and has a different behavior between Unix and Windows. -- Its intent is to stop the process. -- ------------------------------ overriding procedure Stop (Sys : in out System_Process; Proc : in out Process'Class; Signal : in Positive := 15) is pragma Unreferenced (Sys); Result : Integer; pragma Unreferenced (Result); begin Result := Sys_Kill (Integer (Proc.Pid), Integer (Signal)); end Stop; -- ------------------------------ -- Close both ends of the pipe (used to cleanup in case or error). -- ------------------------------ procedure Close (Pipes : in out Pipe_Type) is Result : Integer; pragma Unreferenced (Result); begin if Pipes (0) /= NO_FILE then Result := Sys_Close (Pipes (0)); Pipes (0) := NO_FILE; end if; if Pipes (1) /= NO_FILE then Result := Sys_Close (Pipes (1)); Pipes (1) := NO_FILE; end if; end Close; procedure Prepare_Working_Directory (Sys : in out System_Process; Proc : in out Process'Class) is Dir : constant String := Ada.Strings.Unbounded.To_String (Proc.Dir); begin Interfaces.C.Strings.Free (Sys.Dir); if Dir'Length > 0 then if not Ada.Directories.Exists (Dir) or else Ada.Directories.Kind (Dir) /= Ada.Directories.Directory then raise Ada.Directories.Name_Error with "Invalid directory: " & Dir; end if; Sys.Dir := Interfaces.C.Strings.New_String (Dir); end if; end Prepare_Working_Directory; -- ------------------------------ -- Spawn a new process. -- ------------------------------ overriding procedure Spawn (Sys : in out System_Process; Proc : in out Process'Class; Mode : in Pipe_Mode := NONE) is use Interfaces.C.Strings; use type Interfaces.C.int; procedure Cleanup; -- Suppress all checks to make sure the child process will not raise any exception. pragma Suppress (All_Checks); Result : Integer; Stdin_Pipes : aliased Pipe_Type := (others => NO_FILE); Stdout_Pipes : aliased Pipe_Type := (others => NO_FILE); Stderr_Pipes : aliased Pipe_Type := (others => NO_FILE); procedure Cleanup is begin Close (Stdin_Pipes); Close (Stdout_Pipes); Close (Stderr_Pipes); end Cleanup; begin Sys.Prepare_Working_Directory (Proc); -- Since checks are disabled, verify by hand that the argv table is correct. if Sys.Argv = null or else Sys.Argc < 1 or else Sys.Argv (0) = Null_Ptr then raise Program_Error with "Invalid process argument list"; end if; -- Setup the pipes. if Mode = WRITE or Mode = READ_WRITE or Mode = READ_WRITE_ALL then if Sys_Pipe (Stdin_Pipes'Address) /= 0 then Cleanup; raise Process_Error with "Cannot create stdin pipe"; end if; end if; if Mode = READ or Mode = READ_WRITE or Mode = READ_ALL or Mode = READ_WRITE_ALL then if Sys_Pipe (Stdout_Pipes'Address) /= 0 then Cleanup; raise Process_Error with "Cannot create stdout pipe"; end if; end if; if Mode = READ_ERROR then if Sys_Pipe (Stderr_Pipes'Address) /= 0 then Cleanup; raise Process_Error with "Cannot create stderr pipe"; end if; end if; -- Create the new process by using vfork instead of fork. The parent process is blocked -- until the child executes the exec or exits. The child process uses the same stack -- as the parent. Proc.Pid := Sys_VFork; if Proc.Pid = 0 then -- Do not use any Ada type while in the child process. if Proc.To_Close /= null then for Fd of Proc.To_Close.all loop Result := Sys_Close (Fd); end loop; end if; -- Handle stdin/stdout/stderr pipe redirections unless they are file-redirected. if Sys.Err_File = Null_Ptr and Stdout_Pipes (1) /= NO_FILE and (Mode = READ_ALL or Mode = READ_WRITE_ALL) then Result := Sys_Dup2 (Stdout_Pipes (1), STDERR_FILENO); end if; -- Redirect stdin to the pipe unless we use file redirection. if Sys.In_File = Null_Ptr and Stdin_Pipes (0) /= NO_FILE then if Stdin_Pipes (0) /= STDIN_FILENO then Result := Sys_Dup2 (Stdin_Pipes (0), STDIN_FILENO); end if; end if; if Stdin_Pipes (0) /= NO_FILE and Stdin_Pipes (0) /= STDIN_FILENO then Result := Sys_Close (Stdin_Pipes (0)); end if; if Stdin_Pipes (1) /= NO_FILE then Result := Sys_Close (Stdin_Pipes (1)); end if; -- Redirect stdout to the pipe unless we use file redirection. if Sys.Out_File = Null_Ptr and Stdout_Pipes (1) /= NO_FILE then if Stdout_Pipes (1) /= STDOUT_FILENO then Result := Sys_Dup2 (Stdout_Pipes (1), STDOUT_FILENO); end if; end if; if Stdout_Pipes (1) /= NO_FILE and Stdout_Pipes (1) /= STDOUT_FILENO then Result := Sys_Close (Stdout_Pipes (1)); end if; if Stdout_Pipes (0) /= NO_FILE then Result := Sys_Close (Stdout_Pipes (0)); end if; if Sys.Err_File = Null_Ptr and Stderr_Pipes (1) /= NO_FILE then if Stderr_Pipes (1) /= STDERR_FILENO then Result := Sys_Dup2 (Stderr_Pipes (1), STDERR_FILENO); Result := Sys_Close (Stderr_Pipes (1)); end if; Result := Sys_Close (Stderr_Pipes (0)); end if; if Sys.In_File /= Null_Ptr then -- Redirect the process input from a file. declare Fd : File_Type; begin Fd := Sys_Open (Sys.In_File, O_RDONLY, 8#644#); if Fd < 0 then Sys_Exit (254); end if; if Fd /= STDIN_FILENO then Result := Sys_Dup2 (Fd, STDIN_FILENO); Result := Sys_Close (Fd); end if; end; end if; if Sys.Out_File /= Null_Ptr then -- Redirect the process output to a file. declare Fd : File_Type; begin if Sys.Out_Append then Fd := Sys_Open (Sys.Out_File, O_CREAT + O_WRONLY + O_APPEND, 8#644#); else Fd := Sys_Open (Sys.Out_File, O_CREAT + O_WRONLY + O_TRUNC, 8#644#); end if; if Fd < 0 then Sys_Exit (254); end if; if Fd /= STDOUT_FILENO then Result := Sys_Dup2 (Fd, STDOUT_FILENO); Result := Sys_Close (Fd); end if; end; end if; if Sys.Err_File /= Null_Ptr then -- Redirect the process error to a file. declare Fd : File_Type; begin if Sys.Err_Append then Fd := Sys_Open (Sys.Err_File, O_CREAT + O_WRONLY + O_APPEND, 8#644#); else Fd := Sys_Open (Sys.Err_File, O_CREAT + O_WRONLY + O_TRUNC, 8#644#); end if; if Fd < 0 then Sys_Exit (254); end if; if Fd /= STDERR_FILENO then Result := Sys_Dup2 (Fd, STDERR_FILENO); Result := Sys_Close (Fd); end if; end; end if; if Sys.Dir /= Null_Ptr then Result := Sys_Chdir (Sys.Dir); if Result < 0 then Sys_Exit (253); end if; end if; if Sys.Envp /= null then Result := Sys_Execve (Sys.Argv (0), Sys.Argv.all, Sys.Envp.all); else Result := Sys_Execvp (Sys.Argv (0), Sys.Argv.all); end if; Sys_Exit (255); end if; -- Process creation failed, cleanup and raise an exception. if Proc.Pid < 0 then Cleanup; raise Process_Error with "Cannot create process"; end if; if Stdin_Pipes (1) /= NO_FILE then Result := Sys_Close (Stdin_Pipes (0)); Proc.Input := Create_Stream (Stdin_Pipes (1)).all'Access; end if; if Stdout_Pipes (0) /= NO_FILE then Result := Sys_Close (Stdout_Pipes (1)); Proc.Output := Create_Stream (Stdout_Pipes (0)).all'Access; end if; if Stderr_Pipes (0) /= NO_FILE then Result := Sys_Close (Stderr_Pipes (1)); Proc.Error := Create_Stream (Stderr_Pipes (0)).all'Access; end if; end Spawn; procedure Free is new Ada.Unchecked_Deallocation (Name => Ptr_Ptr_Array, Object => Ptr_Array); procedure Allocate (Into : in out Util.Systems.Os.Ptr_Ptr_Array; Count : in Interfaces.C.size_t) is begin if Into = null then Into := new Ptr_Array (0 .. 10); elsif Count = Into'Last - 1 then declare N : constant Ptr_Ptr_Array := new Ptr_Array (0 .. Count + 32); begin N (0 .. Count) := Into (0 .. Count); Free (Into); Into := N; end; end if; end Allocate; -- ------------------------------ -- Append the argument to the process argument list. -- ------------------------------ overriding procedure Append_Argument (Sys : in out System_Process; Arg : in String) is begin Allocate (Sys.Argv, Sys.Argc); Sys.Argv (Sys.Argc) := Interfaces.C.Strings.New_String (Arg); Sys.Argc := Sys.Argc + 1; Sys.Argv (Sys.Argc) := Interfaces.C.Strings.Null_Ptr; end Append_Argument; -- ------------------------------ -- Clear the program arguments. -- ------------------------------ overriding procedure Clear_Arguments (Sys : in out System_Process) is begin if Sys.Argv /= null then Free_Array (Sys.Argv); end if; Sys.Argc := 0; end Clear_Arguments; -- ------------------------------ -- Set the environment variable to be used by the process before its creation. -- ------------------------------ overriding procedure Set_Environment (Sys : in out System_Process; Name : in String; Value : in String) is begin if Sys.Envc > 0 then for I in 0 .. Sys.Envc loop declare Env : Interfaces.C.Strings.chars_ptr := Sys.Envp (I); V : constant String := Interfaces.C.Strings.Value (Env); begin if Util.Strings.Starts_With (V, Name & "=") then Interfaces.C.Strings.Free (Env); Sys.Envp (I) := Interfaces.C.Strings.New_String (Name & "=" & Value); return; end if; end; end loop; end if; Allocate (Sys.Envp, Sys.Envc); Sys.Envp (Sys.Envc) := Interfaces.C.Strings.New_String (Name & "=" & Value); Sys.Envc := Sys.Envc + 1; Sys.Envp (Sys.Envc) := Interfaces.C.Strings.Null_Ptr; end Set_Environment; -- ------------------------------ -- Set the process input, output and error streams to redirect and use specified files. -- ------------------------------ overriding procedure Set_Streams (Sys : in out System_Process; Input : in String; Output : in String; Error : in String; Append_Output : in Boolean; Append_Error : in Boolean; To_Close : in File_Type_Array_Access) is begin if Input'Length > 0 then Sys.In_File := Interfaces.C.Strings.New_String (Input); else Interfaces.C.Strings.Free (Sys.In_File); end if; if Output'Length > 0 then Sys.Out_File := Interfaces.C.Strings.New_String (Output); Sys.Out_Append := Append_Output; else Interfaces.C.Strings.Free (Sys.Out_File); end if; if Error'Length > 0 then Sys.Err_File := Interfaces.C.Strings.New_String (Error); Sys.Err_Append := Append_Error; else Interfaces.C.Strings.Free (Sys.Err_File); end if; Sys.To_Close := To_Close; end Set_Streams; procedure Free_Array (Argv : in out Util.Systems.Os.Ptr_Ptr_Array) is begin for I in Argv'Range loop Interfaces.C.Strings.Free (Argv (I)); end loop; Free (Argv); end Free_Array; -- ------------------------------ -- Deletes the storage held by the system process. -- ------------------------------ overriding procedure Finalize (Sys : in out System_Process) is begin if Sys.Argv /= null then Free_Array (Sys.Argv); end if; if Sys.Envp /= null then Free_Array (Sys.Envp); end if; Interfaces.C.Strings.Free (Sys.In_File); Interfaces.C.Strings.Free (Sys.Out_File); Interfaces.C.Strings.Free (Sys.Err_File); Interfaces.C.Strings.Free (Sys.Dir); end Finalize; end Util.Processes.Os;
35.746237
95
0.542414
4a4346860520b4cb6fee5ff9479e64a1be21292b
4,805
adb
Ada
ada_lists_tests/src/test_list_combo.adb
gerr135/ada_gems
fc1b55e991766110581fcc340c8bc7c51ef7a49b
[ "BSD-2-Clause" ]
6
2020-11-26T20:01:50.000Z
2022-03-04T22:22:12.000Z
ada_lists_tests/src/test_list_combo.adb
gerr135/ada_gems
fc1b55e991766110581fcc340c8bc7c51ef7a49b
[ "BSD-2-Clause" ]
null
null
null
ada_lists_tests/src/test_list_combo.adb
gerr135/ada_gems
fc1b55e991766110581fcc340c8bc7c51ef7a49b
[ "BSD-2-Clause" ]
null
null
null
-- -- 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;
32.033333
149
0.561498
4a85d614b189b634993c02d66965d882bb59dee0
4,887
ads
Ada
src/asf-components-core.ads
jquorning/ada-asf
ddc697c5dfa4e22c57c6958f4cff27e14d02ce98
[ "Apache-2.0" ]
12
2015-01-18T23:02:20.000Z
2022-03-25T15:30:30.000Z
src/asf-components-core.ads
jquorning/ada-asf
ddc697c5dfa4e22c57c6958f4cff27e14d02ce98
[ "Apache-2.0" ]
3
2021-01-06T09:44:02.000Z
2022-02-04T20:20:53.000Z
src/asf-components-core.ads
jquorning/ada-asf
ddc697c5dfa4e22c57c6958f4cff27e14d02ce98
[ "Apache-2.0" ]
4
2016-04-12T05:29:00.000Z
2022-01-24T23:53:59.000Z
----------------------------------------------------------------------- -- asf-components-core -- ASF Core Components -- Copyright (C) 2009 - 2021 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with 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;
38.480315
99
0.643544
4a0b92a8b62e01424abcf870490cd59890781d74
645
ads
Ada
tests/tk-ttkbutton-test_data-tests.ads
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
2
2020-12-09T07:27:07.000Z
2021-10-19T13:31:54.000Z
tests/tk-ttkbutton-test_data-tests.ads
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
tests/tk-ttkbutton-test_data-tests.ads
thindil/tashy2
43fcbadb33c0062b2c8d6138a8238441dec5fd80
[ "Apache-2.0" ]
null
null
null
-- This package has been generated automatically by GNATtest. -- Do not edit any part of it, see GNATtest documentation for more details. -- begin read only with Gnattest_Generated; package Tk.TtkButton.Test_Data.Tests is type Test is new GNATtest_Generated.GNATtest_Standard.Tk.TtkButton.Test_Data .Test with null record; procedure Test_Invoke_05a9d3_1d715e(Gnattest_T: in out Test); -- tk-ttkbutton.ads:209:4:Invoke:Test_Invoke_TtkButton1 procedure Test_Invoke_89eee4_5d3252(Gnattest_T: in out Test); -- tk-ttkbutton.ads:232:4:Invoke:Test_Invoke_TtkButton2 end Tk.TtkButton.Test_Data.Tests; -- end read only
30.714286
79
0.775194
4ab6120677076f62547f90bfd73a5bf37d4cac70
241
ads
Ada
examples/stm32f0/interrupts/peripherals.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
1
2021-04-06T07:57:56.000Z
2021-04-06T07:57:56.000Z
examples/stm32f0/interrupts/peripherals.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
null
null
null
examples/stm32f0/interrupts/peripherals.ads
ekoeppen/STM32_Generic_Ada_Drivers
4ff29c3026c4b24280baf22a5b81ea9969375466
[ "MIT" ]
2
2018-05-29T13:59:31.000Z
2019-02-03T19:48:08.000Z
with Ada.Interrupts.Names; with STM32GD.Timer; with STM32GD.Timer.Peripheral; package Peripherals is package Timer is new STM32GD.Timer.Peripheral (Timer => STM32GD.Timer.Timer_14, IRQ => Ada.Interrupts.Names.TIM14); end Peripherals;
21.909091
118
0.780083
0eab1749852c6f73b315eec3e6fdd4d2bc633aa0
337,461
ads
Ada
src/ada-xcb/src/xcb-xkb.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
src/ada-xcb/src/xcb-xkb.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
src/ada-xcb/src/xcb-xkb.ads
mstewartgallus/linted
4d4cf9390353ea045b95671474ab278456793a35
[ "Apache-2.0" ]
null
null
null
-- Copyright 2015 Steven Stewart-Gallus -- -- 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 Interfaces.C; use Interfaces.C; with Libc.Stdint; with XCB.XProto; with System; with Interfaces.C.Strings; package XCB.XKB with Spark_Mode => Off is pragma Preelaborate; pragma Link_With ("-lxcb -lxcb-xkb"); XCB_XKB_MAJOR_VERSION : constant := 1; XCB_XKB_MINOR_VERSION : constant := 0; XCB_XKB_KEYBOARD : constant := 0; -- XCB_XKB_USE_EXTENSION : constant := 0; -- XCB_XKB_SELECT_EVENTS : constant := 1; -- XCB_XKB_BELL : constant := 3; -- XCB_XKB_GET_STATE : constant := 4; -- XCB_XKB_LATCH_LOCK_STATE : constant := 5; -- XCB_XKB_GET_CONTROLS : constant := 6; -- XCB_XKB_SET_CONTROLS : constant := 7; -- XCB_XKB_GET_MAP : constant := 8; -- XCB_XKB_SET_MAP : constant := 9; -- XCB_XKB_GET_COMPAT_MAP : constant := 10; -- XCB_XKB_SET_COMPAT_MAP : constant := 11; -- XCB_XKB_GET_INDICATOR_STATE : constant := 12; -- XCB_XKB_GET_INDICATOR_MAP : constant := 13; -- XCB_XKB_SET_INDICATOR_MAP : constant := 14; -- XCB_XKB_GET_NAMED_INDICATOR : constant := 15; -- XCB_XKB_SET_NAMED_INDICATOR : constant := 16; -- XCB_XKB_GET_NAMES : constant := 17; -- XCB_XKB_SET_NAMES : constant := 18; -- XCB_XKB_PER_CLIENT_FLAGS : constant := 21; -- XCB_XKB_LIST_COMPONENTS : constant := 22; -- XCB_XKB_GET_KBD_BY_NAME : constant := 23; -- XCB_XKB_GET_DEVICE_INFO : constant := 24; -- XCB_XKB_SET_DEVICE_INFO : constant := 25; -- XCB_XKB_SET_DEBUGGING_FLAGS : constant := 101; XCB_XKB_NEW_KEYBOARD_NOTIFY : constant := 0; XCB_XKB_MAP_NOTIFY : constant := 1; XCB_XKB_STATE_NOTIFY : constant := 2; XCB_XKB_CONTROLS_NOTIFY : constant := 3; XCB_XKB_INDICATOR_STATE_NOTIFY : constant := 4; XCB_XKB_INDICATOR_MAP_NOTIFY : constant := 5; XCB_XKB_NAMES_NOTIFY : constant := 6; XCB_XKB_COMPAT_MAP_NOTIFY : constant := 7; XCB_XKB_BELL_NOTIFY : constant := 8; XCB_XKB_ACTION_MESSAGE : constant := 9; XCB_XKB_ACCESS_X_NOTIFY : constant := 10; XCB_XKB_EXTENSION_DEVICE_NOTIFY : constant := 11; xcb_xkb_id : aliased XCB .xcb_extension_t_access; -- /usr/include/xcb/xkb.h:25 pragma Import (C, xcb_xkb_id, "xcb_xkb_id"); subtype xcb_xkb_const_t is unsigned; XCB_XKB_CONST_MAX_LEGAL_KEY_CODE : constant xcb_xkb_const_t := 255; XCB_XKB_CONST_PER_KEY_BIT_ARRAY_SIZE : constant xcb_xkb_const_t := 32; XCB_XKB_CONST_KEY_NAME_LENGTH : constant xcb_xkb_const_t := 4; -- /usr/include/xcb/xkb.h:27 subtype xcb_xkb_event_type_t is unsigned; XCB_XKB_EVENT_TYPE_NEW_KEYBOARD_NOTIFY : constant xcb_xkb_event_type_t := 1; XCB_XKB_EVENT_TYPE_MAP_NOTIFY : constant xcb_xkb_event_type_t := 2; XCB_XKB_EVENT_TYPE_STATE_NOTIFY : constant xcb_xkb_event_type_t := 4; XCB_XKB_EVENT_TYPE_CONTROLS_NOTIFY : constant xcb_xkb_event_type_t := 8; XCB_XKB_EVENT_TYPE_INDICATOR_STATE_NOTIFY : constant xcb_xkb_event_type_t := 16; XCB_XKB_EVENT_TYPE_INDICATOR_MAP_NOTIFY : constant xcb_xkb_event_type_t := 32; XCB_XKB_EVENT_TYPE_NAMES_NOTIFY : constant xcb_xkb_event_type_t := 64; XCB_XKB_EVENT_TYPE_COMPAT_MAP_NOTIFY : constant xcb_xkb_event_type_t := 128; XCB_XKB_EVENT_TYPE_BELL_NOTIFY : constant xcb_xkb_event_type_t := 256; XCB_XKB_EVENT_TYPE_ACTION_MESSAGE : constant xcb_xkb_event_type_t := 512; XCB_XKB_EVENT_TYPE_ACCESS_X_NOTIFY : constant xcb_xkb_event_type_t := 1024; XCB_XKB_EVENT_TYPE_EXTENSION_DEVICE_NOTIFY : constant xcb_xkb_event_type_t := 2048; -- /usr/include/xcb/xkb.h:33 subtype xcb_xkb_nkn_detail_t is unsigned; XCB_XKB_NKN_DETAIL_KEYCODES : constant xcb_xkb_nkn_detail_t := 1; XCB_XKB_NKN_DETAIL_GEOMETRY : constant xcb_xkb_nkn_detail_t := 2; XCB_XKB_NKN_DETAIL_DEVICE_ID : constant xcb_xkb_nkn_detail_t := 4; -- /usr/include/xcb/xkb.h:48 subtype xcb_xkb_axn_detail_t is unsigned; XCB_XKB_AXN_DETAIL_SK_PRESS : constant xcb_xkb_axn_detail_t := 1; XCB_XKB_AXN_DETAIL_SK_ACCEPT : constant xcb_xkb_axn_detail_t := 2; XCB_XKB_AXN_DETAIL_SK_REJECT : constant xcb_xkb_axn_detail_t := 4; XCB_XKB_AXN_DETAIL_SK_RELEASE : constant xcb_xkb_axn_detail_t := 8; XCB_XKB_AXN_DETAIL_BK_ACCEPT : constant xcb_xkb_axn_detail_t := 16; XCB_XKB_AXN_DETAIL_BK_REJECT : constant xcb_xkb_axn_detail_t := 32; XCB_XKB_AXN_DETAIL_AXK_WARNING : constant xcb_xkb_axn_detail_t := 64; -- /usr/include/xcb/xkb.h:54 subtype xcb_xkb_map_part_t is unsigned; XCB_XKB_MAP_PART_KEY_TYPES : constant xcb_xkb_map_part_t := 1; XCB_XKB_MAP_PART_KEY_SYMS : constant xcb_xkb_map_part_t := 2; XCB_XKB_MAP_PART_MODIFIER_MAP : constant xcb_xkb_map_part_t := 4; XCB_XKB_MAP_PART_EXPLICIT_COMPONENTS : constant xcb_xkb_map_part_t := 8; XCB_XKB_MAP_PART_KEY_ACTIONS : constant xcb_xkb_map_part_t := 16; XCB_XKB_MAP_PART_KEY_BEHAVIORS : constant xcb_xkb_map_part_t := 32; XCB_XKB_MAP_PART_VIRTUAL_MODS : constant xcb_xkb_map_part_t := 64; XCB_XKB_MAP_PART_VIRTUAL_MOD_MAP : constant xcb_xkb_map_part_t := 128; -- /usr/include/xcb/xkb.h:64 subtype xcb_xkb_set_map_flags_t is unsigned; XCB_XKB_SET_MAP_FLAGS_RESIZE_TYPES : constant xcb_xkb_set_map_flags_t := 1; XCB_XKB_SET_MAP_FLAGS_RECOMPUTE_ACTIONS : constant xcb_xkb_set_map_flags_t := 2; -- /usr/include/xcb/xkb.h:75 subtype xcb_xkb_state_part_t is unsigned; XCB_XKB_STATE_PART_MODIFIER_STATE : constant xcb_xkb_state_part_t := 1; XCB_XKB_STATE_PART_MODIFIER_BASE : constant xcb_xkb_state_part_t := 2; XCB_XKB_STATE_PART_MODIFIER_LATCH : constant xcb_xkb_state_part_t := 4; XCB_XKB_STATE_PART_MODIFIER_LOCK : constant xcb_xkb_state_part_t := 8; XCB_XKB_STATE_PART_GROUP_STATE : constant xcb_xkb_state_part_t := 16; XCB_XKB_STATE_PART_GROUP_BASE : constant xcb_xkb_state_part_t := 32; XCB_XKB_STATE_PART_GROUP_LATCH : constant xcb_xkb_state_part_t := 64; XCB_XKB_STATE_PART_GROUP_LOCK : constant xcb_xkb_state_part_t := 128; XCB_XKB_STATE_PART_COMPAT_STATE : constant xcb_xkb_state_part_t := 256; XCB_XKB_STATE_PART_GRAB_MODS : constant xcb_xkb_state_part_t := 512; XCB_XKB_STATE_PART_COMPAT_GRAB_MODS : constant xcb_xkb_state_part_t := 1024; XCB_XKB_STATE_PART_LOOKUP_MODS : constant xcb_xkb_state_part_t := 2048; XCB_XKB_STATE_PART_COMPAT_LOOKUP_MODS : constant xcb_xkb_state_part_t := 4096; XCB_XKB_STATE_PART_POINTER_BUTTONS : constant xcb_xkb_state_part_t := 8192; -- /usr/include/xcb/xkb.h:80 subtype xcb_xkb_bool_ctrl_t is unsigned; XCB_XKB_BOOL_CTRL_REPEAT_KEYS : constant xcb_xkb_bool_ctrl_t := 1; XCB_XKB_BOOL_CTRL_SLOW_KEYS : constant xcb_xkb_bool_ctrl_t := 2; XCB_XKB_BOOL_CTRL_BOUNCE_KEYS : constant xcb_xkb_bool_ctrl_t := 4; XCB_XKB_BOOL_CTRL_STICKY_KEYS : constant xcb_xkb_bool_ctrl_t := 8; XCB_XKB_BOOL_CTRL_MOUSE_KEYS : constant xcb_xkb_bool_ctrl_t := 16; XCB_XKB_BOOL_CTRL_MOUSE_KEYS_ACCEL : constant xcb_xkb_bool_ctrl_t := 32; XCB_XKB_BOOL_CTRL_ACCESS_X_KEYS : constant xcb_xkb_bool_ctrl_t := 64; XCB_XKB_BOOL_CTRL_ACCESS_X_TIMEOUT_MASK : constant xcb_xkb_bool_ctrl_t := 128; XCB_XKB_BOOL_CTRL_ACCESS_X_FEEDBACK_MASK : constant xcb_xkb_bool_ctrl_t := 256; XCB_XKB_BOOL_CTRL_AUDIBLE_BELL_MASK : constant xcb_xkb_bool_ctrl_t := 512; XCB_XKB_BOOL_CTRL_OVERLAY_1_MASK : constant xcb_xkb_bool_ctrl_t := 1024; XCB_XKB_BOOL_CTRL_OVERLAY_2_MASK : constant xcb_xkb_bool_ctrl_t := 2048; XCB_XKB_BOOL_CTRL_IGNORE_GROUP_LOCK_MASK : constant xcb_xkb_bool_ctrl_t := 4096; -- /usr/include/xcb/xkb.h:97 subtype xcb_xkb_control_t is unsigned; XCB_XKB_CONTROL_GROUPS_WRAP : constant xcb_xkb_control_t := 134217728; XCB_XKB_CONTROL_INTERNAL_MODS : constant xcb_xkb_control_t := 268435456; XCB_XKB_CONTROL_IGNORE_LOCK_MODS : constant xcb_xkb_control_t := 536870912; XCB_XKB_CONTROL_PER_KEY_REPEAT : constant xcb_xkb_control_t := 1073741824; XCB_XKB_CONTROL_CONTROLS_ENABLED : constant xcb_xkb_control_t := 2147483648; -- /usr/include/xcb/xkb.h:113 subtype xcb_xkb_ax_option_t is unsigned; XCB_XKB_AX_OPTION_SK_PRESS_FB : constant xcb_xkb_ax_option_t := 1; XCB_XKB_AX_OPTION_SK_ACCEPT_FB : constant xcb_xkb_ax_option_t := 2; XCB_XKB_AX_OPTION_FEATURE_FB : constant xcb_xkb_ax_option_t := 4; XCB_XKB_AX_OPTION_SLOW_WARN_FB : constant xcb_xkb_ax_option_t := 8; XCB_XKB_AX_OPTION_INDICATOR_FB : constant xcb_xkb_ax_option_t := 16; XCB_XKB_AX_OPTION_STICKY_KEYS_FB : constant xcb_xkb_ax_option_t := 32; XCB_XKB_AX_OPTION_TWO_KEYS : constant xcb_xkb_ax_option_t := 64; XCB_XKB_AX_OPTION_LATCH_TO_LOCK : constant xcb_xkb_ax_option_t := 128; XCB_XKB_AX_OPTION_SK_RELEASE_FB : constant xcb_xkb_ax_option_t := 256; XCB_XKB_AX_OPTION_SK_REJECT_FB : constant xcb_xkb_ax_option_t := 512; XCB_XKB_AX_OPTION_BK_REJECT_FB : constant xcb_xkb_ax_option_t := 1024; XCB_XKB_AX_OPTION_DUMB_BELL : constant xcb_xkb_ax_option_t := 2048; -- /usr/include/xcb/xkb.h:121 subtype xcb_xkb_device_spec_t is Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:136 type xcb_xkb_device_spec_iterator_t is record data : access xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:142 c_rem : aliased int; -- /usr/include/xcb/xkb.h:143 index : aliased int; -- /usr/include/xcb/xkb.h:144 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_device_spec_iterator_t); -- /usr/include/xcb/xkb.h:141 subtype xcb_xkb_led_class_result_t is unsigned; XCB_XKB_LED_CLASS_RESULT_KBD_FEEDBACK_CLASS : constant xcb_xkb_led_class_result_t := 0; XCB_XKB_LED_CLASS_RESULT_LED_FEEDBACK_CLASS : constant xcb_xkb_led_class_result_t := 4; -- /usr/include/xcb/xkb.h:147 subtype xcb_xkb_led_class_t is unsigned; XCB_XKB_LED_CLASS_KBD_FEEDBACK_CLASS : constant xcb_xkb_led_class_t := 0; XCB_XKB_LED_CLASS_LED_FEEDBACK_CLASS : constant xcb_xkb_led_class_t := 4; XCB_XKB_LED_CLASS_DFLT_XI_CLASS : constant xcb_xkb_led_class_t := 768; XCB_XKB_LED_CLASS_ALL_XI_CLASSES : constant xcb_xkb_led_class_t := 1280; -- /usr/include/xcb/xkb.h:152 subtype xcb_xkb_led_class_spec_t is Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:159 type xcb_xkb_led_class_spec_iterator_t is record data : access xcb_xkb_led_class_spec_t; -- /usr/include/xcb/xkb.h:165 c_rem : aliased int; -- /usr/include/xcb/xkb.h:166 index : aliased int; -- /usr/include/xcb/xkb.h:167 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_led_class_spec_iterator_t); -- /usr/include/xcb/xkb.h:164 subtype xcb_xkb_bell_class_result_t is unsigned; XCB_XKB_BELL_CLASS_RESULT_KBD_FEEDBACK_CLASS : constant xcb_xkb_bell_class_result_t := 0; XCB_XKB_BELL_CLASS_RESULT_BELL_FEEDBACK_CLASS : constant xcb_xkb_bell_class_result_t := 5; -- /usr/include/xcb/xkb.h:170 subtype xcb_xkb_bell_class_t is unsigned; XCB_XKB_BELL_CLASS_KBD_FEEDBACK_CLASS : constant xcb_xkb_bell_class_t := 0; XCB_XKB_BELL_CLASS_BELL_FEEDBACK_CLASS : constant xcb_xkb_bell_class_t := 5; XCB_XKB_BELL_CLASS_DFLT_XI_CLASS : constant xcb_xkb_bell_class_t := 768; -- /usr/include/xcb/xkb.h:175 subtype xcb_xkb_bell_class_spec_t is Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:181 type xcb_xkb_bell_class_spec_iterator_t is record data : access xcb_xkb_bell_class_spec_t; -- /usr/include/xcb/xkb.h:187 c_rem : aliased int; -- /usr/include/xcb/xkb.h:188 index : aliased int; -- /usr/include/xcb/xkb.h:189 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_bell_class_spec_iterator_t); -- /usr/include/xcb/xkb.h:186 subtype xcb_xkb_id_t is unsigned; XCB_XKB_ID_USE_CORE_KBD : constant xcb_xkb_id_t := 256; XCB_XKB_ID_USE_CORE_PTR : constant xcb_xkb_id_t := 512; XCB_XKB_ID_DFLT_XI_CLASS : constant xcb_xkb_id_t := 768; XCB_XKB_ID_DFLT_XI_ID : constant xcb_xkb_id_t := 1024; XCB_XKB_ID_ALL_XI_CLASS : constant xcb_xkb_id_t := 1280; XCB_XKB_ID_ALL_XI_ID : constant xcb_xkb_id_t := 1536; XCB_XKB_ID_XI_NONE : constant xcb_xkb_id_t := 65280; -- /usr/include/xcb/xkb.h:192 subtype xcb_xkb_id_spec_t is Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:202 type xcb_xkb_id_spec_iterator_t is record data : access xcb_xkb_id_spec_t; -- /usr/include/xcb/xkb.h:208 c_rem : aliased int; -- /usr/include/xcb/xkb.h:209 index : aliased int; -- /usr/include/xcb/xkb.h:210 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_id_spec_iterator_t); -- /usr/include/xcb/xkb.h:207 type xcb_xkb_group_t is (XCB_XKB_GROUP_1, XCB_XKB_GROUP_2, XCB_XKB_GROUP_3, XCB_XKB_GROUP_4); pragma Convention (C, xcb_xkb_group_t); -- /usr/include/xcb/xkb.h:213 subtype xcb_xkb_groups_t is unsigned; XCB_XKB_GROUPS_ANY : constant xcb_xkb_groups_t := 254; XCB_XKB_GROUPS_ALL : constant xcb_xkb_groups_t := 255; -- /usr/include/xcb/xkb.h:220 subtype xcb_xkb_set_of_group_t is unsigned; XCB_XKB_SET_OF_GROUP_GROUP_1 : constant xcb_xkb_set_of_group_t := 1; XCB_XKB_SET_OF_GROUP_GROUP_2 : constant xcb_xkb_set_of_group_t := 2; XCB_XKB_SET_OF_GROUP_GROUP_3 : constant xcb_xkb_set_of_group_t := 4; XCB_XKB_SET_OF_GROUP_GROUP_4 : constant xcb_xkb_set_of_group_t := 8; -- /usr/include/xcb/xkb.h:225 subtype xcb_xkb_set_of_groups_t is unsigned; XCB_XKB_SET_OF_GROUPS_ANY : constant xcb_xkb_set_of_groups_t := 128; -- /usr/include/xcb/xkb.h:232 subtype xcb_xkb_groups_wrap_t is unsigned; XCB_XKB_GROUPS_WRAP_WRAP_INTO_RANGE : constant xcb_xkb_groups_wrap_t := 0; XCB_XKB_GROUPS_WRAP_CLAMP_INTO_RANGE : constant xcb_xkb_groups_wrap_t := 64; XCB_XKB_GROUPS_WRAP_REDIRECT_INTO_RANGE : constant xcb_xkb_groups_wrap_t := 128; -- /usr/include/xcb/xkb.h:236 subtype xcb_xkb_v_mods_high_t is unsigned; XCB_XKB_V_MODS_HIGH_15 : constant xcb_xkb_v_mods_high_t := 128; XCB_XKB_V_MODS_HIGH_14 : constant xcb_xkb_v_mods_high_t := 64; XCB_XKB_V_MODS_HIGH_13 : constant xcb_xkb_v_mods_high_t := 32; XCB_XKB_V_MODS_HIGH_12 : constant xcb_xkb_v_mods_high_t := 16; XCB_XKB_V_MODS_HIGH_11 : constant xcb_xkb_v_mods_high_t := 8; XCB_XKB_V_MODS_HIGH_10 : constant xcb_xkb_v_mods_high_t := 4; XCB_XKB_V_MODS_HIGH_9 : constant xcb_xkb_v_mods_high_t := 2; XCB_XKB_V_MODS_HIGH_8 : constant xcb_xkb_v_mods_high_t := 1; -- /usr/include/xcb/xkb.h:242 subtype xcb_xkb_v_mods_low_t is unsigned; XCB_XKB_V_MODS_LOW_7 : constant xcb_xkb_v_mods_low_t := 128; XCB_XKB_V_MODS_LOW_6 : constant xcb_xkb_v_mods_low_t := 64; XCB_XKB_V_MODS_LOW_5 : constant xcb_xkb_v_mods_low_t := 32; XCB_XKB_V_MODS_LOW_4 : constant xcb_xkb_v_mods_low_t := 16; XCB_XKB_V_MODS_LOW_3 : constant xcb_xkb_v_mods_low_t := 8; XCB_XKB_V_MODS_LOW_2 : constant xcb_xkb_v_mods_low_t := 4; XCB_XKB_V_MODS_LOW_1 : constant xcb_xkb_v_mods_low_t := 2; XCB_XKB_V_MODS_LOW_0 : constant xcb_xkb_v_mods_low_t := 1; -- /usr/include/xcb/xkb.h:253 subtype xcb_xkb_v_mod_t is unsigned; XCB_XKB_V_MOD_15 : constant xcb_xkb_v_mod_t := 32768; XCB_XKB_V_MOD_14 : constant xcb_xkb_v_mod_t := 16384; XCB_XKB_V_MOD_13 : constant xcb_xkb_v_mod_t := 8192; XCB_XKB_V_MOD_12 : constant xcb_xkb_v_mod_t := 4096; XCB_XKB_V_MOD_11 : constant xcb_xkb_v_mod_t := 2048; XCB_XKB_V_MOD_10 : constant xcb_xkb_v_mod_t := 1024; XCB_XKB_V_MOD_9 : constant xcb_xkb_v_mod_t := 512; XCB_XKB_V_MOD_8 : constant xcb_xkb_v_mod_t := 256; XCB_XKB_V_MOD_7 : constant xcb_xkb_v_mod_t := 128; XCB_XKB_V_MOD_6 : constant xcb_xkb_v_mod_t := 64; XCB_XKB_V_MOD_5 : constant xcb_xkb_v_mod_t := 32; XCB_XKB_V_MOD_4 : constant xcb_xkb_v_mod_t := 16; XCB_XKB_V_MOD_3 : constant xcb_xkb_v_mod_t := 8; XCB_XKB_V_MOD_2 : constant xcb_xkb_v_mod_t := 4; XCB_XKB_V_MOD_1 : constant xcb_xkb_v_mod_t := 2; XCB_XKB_V_MOD_0 : constant xcb_xkb_v_mod_t := 1; -- /usr/include/xcb/xkb.h:264 subtype xcb_xkb_explicit_t is unsigned; XCB_XKB_EXPLICIT_V_MOD_MAP : constant xcb_xkb_explicit_t := 128; XCB_XKB_EXPLICIT_BEHAVIOR : constant xcb_xkb_explicit_t := 64; XCB_XKB_EXPLICIT_AUTO_REPEAT : constant xcb_xkb_explicit_t := 32; XCB_XKB_EXPLICIT_INTERPRET : constant xcb_xkb_explicit_t := 16; XCB_XKB_EXPLICIT_KEY_TYPE_4 : constant xcb_xkb_explicit_t := 8; XCB_XKB_EXPLICIT_KEY_TYPE_3 : constant xcb_xkb_explicit_t := 4; XCB_XKB_EXPLICIT_KEY_TYPE_2 : constant xcb_xkb_explicit_t := 2; XCB_XKB_EXPLICIT_KEY_TYPE_1 : constant xcb_xkb_explicit_t := 1; -- /usr/include/xcb/xkb.h:283 type xcb_xkb_sym_interpret_match_t is (XCB_XKB_SYM_INTERPRET_MATCH_NONE_OF, XCB_XKB_SYM_INTERPRET_MATCH_ANY_OF_OR_NONE, XCB_XKB_SYM_INTERPRET_MATCH_ANY_OF, XCB_XKB_SYM_INTERPRET_MATCH_ALL_OF, XCB_XKB_SYM_INTERPRET_MATCH_EXACTLY); pragma Convention (C, xcb_xkb_sym_interpret_match_t); -- /usr/include/xcb/xkb.h:294 subtype xcb_xkb_sym_interp_match_t is unsigned; XCB_XKB_SYM_INTERP_MATCH_LEVEL_ONE_ONLY : constant xcb_xkb_sym_interp_match_t := 128; XCB_XKB_SYM_INTERP_MATCH_OP_MASK : constant xcb_xkb_sym_interp_match_t := 127; -- /usr/include/xcb/xkb.h:302 subtype xcb_xkb_im_flag_t is unsigned; XCB_XKB_IM_FLAG_NO_EXPLICIT : constant xcb_xkb_im_flag_t := 128; XCB_XKB_IM_FLAG_NO_AUTOMATIC : constant xcb_xkb_im_flag_t := 64; XCB_XKB_IM_FLAG_LED_DRIVES_KB : constant xcb_xkb_im_flag_t := 32; -- /usr/include/xcb/xkb.h:307 subtype xcb_xkb_im_mods_which_t is unsigned; XCB_XKB_IM_MODS_WHICH_USE_COMPAT : constant xcb_xkb_im_mods_which_t := 16; XCB_XKB_IM_MODS_WHICH_USE_EFFECTIVE : constant xcb_xkb_im_mods_which_t := 8; XCB_XKB_IM_MODS_WHICH_USE_LOCKED : constant xcb_xkb_im_mods_which_t := 4; XCB_XKB_IM_MODS_WHICH_USE_LATCHED : constant xcb_xkb_im_mods_which_t := 2; XCB_XKB_IM_MODS_WHICH_USE_BASE : constant xcb_xkb_im_mods_which_t := 1; -- /usr/include/xcb/xkb.h:313 subtype xcb_xkb_im_groups_which_t is unsigned; XCB_XKB_IM_GROUPS_WHICH_USE_COMPAT : constant xcb_xkb_im_groups_which_t := 16; XCB_XKB_IM_GROUPS_WHICH_USE_EFFECTIVE : constant xcb_xkb_im_groups_which_t := 8; XCB_XKB_IM_GROUPS_WHICH_USE_LOCKED : constant xcb_xkb_im_groups_which_t := 4; XCB_XKB_IM_GROUPS_WHICH_USE_LATCHED : constant xcb_xkb_im_groups_which_t := 2; XCB_XKB_IM_GROUPS_WHICH_USE_BASE : constant xcb_xkb_im_groups_which_t := 1; -- /usr/include/xcb/xkb.h:321 type xcb_xkb_indicator_map_t is record flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:333 whichGroups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:334 groups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:335 whichMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:336 mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:337 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:338 vmods : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:339 ctrls : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:340 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_indicator_map_t); -- /usr/include/xcb/xkb.h:332 type xcb_xkb_indicator_map_iterator_t is record data : access xcb_xkb_indicator_map_t; -- /usr/include/xcb/xkb.h:347 c_rem : aliased int; -- /usr/include/xcb/xkb.h:348 index : aliased int; -- /usr/include/xcb/xkb.h:349 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_indicator_map_iterator_t); -- /usr/include/xcb/xkb.h:346 subtype xcb_xkb_cm_detail_t is unsigned; XCB_XKB_CM_DETAIL_SYM_INTERP : constant xcb_xkb_cm_detail_t := 1; XCB_XKB_CM_DETAIL_GROUP_COMPAT : constant xcb_xkb_cm_detail_t := 2; -- /usr/include/xcb/xkb.h:352 subtype xcb_xkb_name_detail_t is unsigned; XCB_XKB_NAME_DETAIL_KEYCODES : constant xcb_xkb_name_detail_t := 1; XCB_XKB_NAME_DETAIL_GEOMETRY : constant xcb_xkb_name_detail_t := 2; XCB_XKB_NAME_DETAIL_SYMBOLS : constant xcb_xkb_name_detail_t := 4; XCB_XKB_NAME_DETAIL_PHYS_SYMBOLS : constant xcb_xkb_name_detail_t := 8; XCB_XKB_NAME_DETAIL_TYPES : constant xcb_xkb_name_detail_t := 16; XCB_XKB_NAME_DETAIL_COMPAT : constant xcb_xkb_name_detail_t := 32; XCB_XKB_NAME_DETAIL_KEY_TYPE_NAMES : constant xcb_xkb_name_detail_t := 64; XCB_XKB_NAME_DETAIL_KT_LEVEL_NAMES : constant xcb_xkb_name_detail_t := 128; XCB_XKB_NAME_DETAIL_INDICATOR_NAMES : constant xcb_xkb_name_detail_t := 256; XCB_XKB_NAME_DETAIL_KEY_NAMES : constant xcb_xkb_name_detail_t := 512; XCB_XKB_NAME_DETAIL_KEY_ALIASES : constant xcb_xkb_name_detail_t := 1024; XCB_XKB_NAME_DETAIL_VIRTUAL_MOD_NAMES : constant xcb_xkb_name_detail_t := 2048; XCB_XKB_NAME_DETAIL_GROUP_NAMES : constant xcb_xkb_name_detail_t := 4096; XCB_XKB_NAME_DETAIL_RG_NAMES : constant xcb_xkb_name_detail_t := 8192; -- /usr/include/xcb/xkb.h:357 subtype xcb_xkb_gbn_detail_t is unsigned; XCB_XKB_GBN_DETAIL_TYPES : constant xcb_xkb_gbn_detail_t := 1; XCB_XKB_GBN_DETAIL_COMPAT_MAP : constant xcb_xkb_gbn_detail_t := 2; XCB_XKB_GBN_DETAIL_CLIENT_SYMBOLS : constant xcb_xkb_gbn_detail_t := 4; XCB_XKB_GBN_DETAIL_SERVER_SYMBOLS : constant xcb_xkb_gbn_detail_t := 8; XCB_XKB_GBN_DETAIL_INDICATOR_MAPS : constant xcb_xkb_gbn_detail_t := 16; XCB_XKB_GBN_DETAIL_KEY_NAMES : constant xcb_xkb_gbn_detail_t := 32; XCB_XKB_GBN_DETAIL_GEOMETRY : constant xcb_xkb_gbn_detail_t := 64; XCB_XKB_GBN_DETAIL_OTHER_NAMES : constant xcb_xkb_gbn_detail_t := 128; -- /usr/include/xcb/xkb.h:374 subtype xcb_xkb_xi_feature_t is unsigned; XCB_XKB_XI_FEATURE_KEYBOARDS : constant xcb_xkb_xi_feature_t := 1; XCB_XKB_XI_FEATURE_BUTTON_ACTIONS : constant xcb_xkb_xi_feature_t := 2; XCB_XKB_XI_FEATURE_INDICATOR_NAMES : constant xcb_xkb_xi_feature_t := 4; XCB_XKB_XI_FEATURE_INDICATOR_MAPS : constant xcb_xkb_xi_feature_t := 8; XCB_XKB_XI_FEATURE_INDICATOR_STATE : constant xcb_xkb_xi_feature_t := 16; -- /usr/include/xcb/xkb.h:385 subtype xcb_xkb_per_client_flag_t is unsigned; XCB_XKB_PER_CLIENT_FLAG_DETECTABLE_AUTO_REPEAT : constant xcb_xkb_per_client_flag_t := 1; XCB_XKB_PER_CLIENT_FLAG_GRABS_USE_XKB_STATE : constant xcb_xkb_per_client_flag_t := 2; XCB_XKB_PER_CLIENT_FLAG_AUTO_RESET_CONTROLS : constant xcb_xkb_per_client_flag_t := 4; XCB_XKB_PER_CLIENT_FLAG_LOOKUP_STATE_WHEN_GRABBED : constant xcb_xkb_per_client_flag_t := 8; XCB_XKB_PER_CLIENT_FLAG_SEND_EVENT_USES_XKB_STATE : constant xcb_xkb_per_client_flag_t := 16; -- /usr/include/xcb/xkb.h:393 type xcb_xkb_mod_def_t is record mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:405 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:406 vmods : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:407 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_mod_def_t); -- /usr/include/xcb/xkb.h:404 type xcb_xkb_mod_def_iterator_t is record data : access xcb_xkb_mod_def_t; -- /usr/include/xcb/xkb.h:414 c_rem : aliased int; -- /usr/include/xcb/xkb.h:415 index : aliased int; -- /usr/include/xcb/xkb.h:416 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_mod_def_iterator_t); -- /usr/include/xcb/xkb.h:413 subtype xcb_xkb_key_name_t_name_array is Interfaces.C.char_array (0 .. 3); type xcb_xkb_key_name_t is record name : aliased xcb_xkb_key_name_t_name_array; -- /usr/include/xcb/xkb.h:423 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_name_t); -- /usr/include/xcb/xkb.h:422 type xcb_xkb_key_name_iterator_t is record data : access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:430 c_rem : aliased int; -- /usr/include/xcb/xkb.h:431 index : aliased int; -- /usr/include/xcb/xkb.h:432 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_name_iterator_t); -- /usr/include/xcb/xkb.h:429 subtype xcb_xkb_key_alias_t_real_array is Interfaces.C.char_array (0 .. 3); subtype xcb_xkb_key_alias_t_alias_array is Interfaces.C.char_array (0 .. 3); type xcb_xkb_key_alias_t is record real : aliased xcb_xkb_key_alias_t_real_array; -- /usr/include/xcb/xkb.h:439 alias : aliased xcb_xkb_key_alias_t_alias_array; -- /usr/include/xcb/xkb.h:440 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_alias_t); -- /usr/include/xcb/xkb.h:438 type xcb_xkb_key_alias_iterator_t is record data : access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:447 c_rem : aliased int; -- /usr/include/xcb/xkb.h:448 index : aliased int; -- /usr/include/xcb/xkb.h:449 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_alias_iterator_t); -- /usr/include/xcb/xkb.h:446 type xcb_xkb_counted_string_16_t is record length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:456 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_counted_string_16_t); -- /usr/include/xcb/xkb.h:455 type xcb_xkb_counted_string_16_iterator_t is record data : access xcb_xkb_counted_string_16_t; -- /usr/include/xcb/xkb.h:463 c_rem : aliased int; -- /usr/include/xcb/xkb.h:464 index : aliased int; -- /usr/include/xcb/xkb.h:465 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_counted_string_16_iterator_t); -- /usr/include/xcb/xkb.h:462 type xcb_xkb_kt_map_entry_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_kt_map_entry_t is record active : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:472 mods_mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:473 level : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:474 mods_mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:475 mods_vmods : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:476 pad0 : aliased xcb_xkb_kt_map_entry_t_pad0_array; -- /usr/include/xcb/xkb.h:477 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_kt_map_entry_t); -- /usr/include/xcb/xkb.h:471 type xcb_xkb_kt_map_entry_iterator_t is record data : access xcb_xkb_kt_map_entry_t; -- /usr/include/xcb/xkb.h:484 c_rem : aliased int; -- /usr/include/xcb/xkb.h:485 index : aliased int; -- /usr/include/xcb/xkb.h:486 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_kt_map_entry_iterator_t); -- /usr/include/xcb/xkb.h:483 type xcb_xkb_key_type_t is record mods_mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:493 mods_mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:494 mods_vmods : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:495 numLevels : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:496 nMapEntries : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:497 hasPreserve : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:498 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:499 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_type_t); -- /usr/include/xcb/xkb.h:492 type xcb_xkb_key_type_iterator_t is record data : access xcb_xkb_key_type_t; -- /usr/include/xcb/xkb.h:506 c_rem : aliased int; -- /usr/include/xcb/xkb.h:507 index : aliased int; -- /usr/include/xcb/xkb.h:508 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_type_iterator_t); -- /usr/include/xcb/xkb.h:505 type xcb_xkb_key_sym_map_t_kt_index_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_key_sym_map_t is record kt_index : aliased xcb_xkb_key_sym_map_t_kt_index_array; -- /usr/include/xcb/xkb.h:515 groupInfo : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:516 width : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:517 nSyms : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:518 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_sym_map_t); -- /usr/include/xcb/xkb.h:514 type xcb_xkb_key_sym_map_iterator_t is record data : access xcb_xkb_key_sym_map_t; -- /usr/include/xcb/xkb.h:525 c_rem : aliased int; -- /usr/include/xcb/xkb.h:526 index : aliased int; -- /usr/include/xcb/xkb.h:527 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_sym_map_iterator_t); -- /usr/include/xcb/xkb.h:524 type xcb_xkb_common_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:534 data : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:535 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_common_behavior_t); -- /usr/include/xcb/xkb.h:533 type xcb_xkb_common_behavior_iterator_t is record data : access xcb_xkb_common_behavior_t; -- /usr/include/xcb/xkb.h:542 c_rem : aliased int; -- /usr/include/xcb/xkb.h:543 index : aliased int; -- /usr/include/xcb/xkb.h:544 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_common_behavior_iterator_t); -- /usr/include/xcb/xkb.h:541 type xcb_xkb_default_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:551 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:552 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_default_behavior_t); -- /usr/include/xcb/xkb.h:550 type xcb_xkb_default_behavior_iterator_t is record data : access xcb_xkb_default_behavior_t; -- /usr/include/xcb/xkb.h:559 c_rem : aliased int; -- /usr/include/xcb/xkb.h:560 index : aliased int; -- /usr/include/xcb/xkb.h:561 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_default_behavior_iterator_t); -- /usr/include/xcb/xkb.h:558 type xcb_xkb_lock_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:568 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:569 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_lock_behavior_t); -- /usr/include/xcb/xkb.h:567 type xcb_xkb_lock_behavior_iterator_t is record data : access xcb_xkb_lock_behavior_t; -- /usr/include/xcb/xkb.h:576 c_rem : aliased int; -- /usr/include/xcb/xkb.h:577 index : aliased int; -- /usr/include/xcb/xkb.h:578 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_lock_behavior_iterator_t); -- /usr/include/xcb/xkb.h:575 type xcb_xkb_radio_group_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:585 group : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:586 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_radio_group_behavior_t); -- /usr/include/xcb/xkb.h:584 type xcb_xkb_radio_group_behavior_iterator_t is record data : access xcb_xkb_radio_group_behavior_t; -- /usr/include/xcb/xkb.h:593 c_rem : aliased int; -- /usr/include/xcb/xkb.h:594 index : aliased int; -- /usr/include/xcb/xkb.h:595 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_radio_group_behavior_iterator_t); -- /usr/include/xcb/xkb.h:592 type xcb_xkb_overlay_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:602 key : aliased XCB.XProto.xcb_keycode_t; -- /usr/include/xcb/xkb.h:603 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_behavior_t); -- /usr/include/xcb/xkb.h:601 type xcb_xkb_overlay_behavior_iterator_t is record data : access xcb_xkb_overlay_behavior_t; -- /usr/include/xcb/xkb.h:610 c_rem : aliased int; -- /usr/include/xcb/xkb.h:611 index : aliased int; -- /usr/include/xcb/xkb.h:612 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_behavior_iterator_t); -- /usr/include/xcb/xkb.h:609 type xcb_xkb_permament_lock_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:619 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:620 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_permament_lock_behavior_t); -- /usr/include/xcb/xkb.h:618 type xcb_xkb_permament_lock_behavior_iterator_t is record data : access xcb_xkb_permament_lock_behavior_t; -- /usr/include/xcb/xkb.h:627 c_rem : aliased int; -- /usr/include/xcb/xkb.h:628 index : aliased int; -- /usr/include/xcb/xkb.h:629 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_permament_lock_behavior_iterator_t); -- /usr/include/xcb/xkb.h:626 type xcb_xkb_permament_radio_group_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:636 group : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:637 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_permament_radio_group_behavior_t); -- /usr/include/xcb/xkb.h:635 type xcb_xkb_permament_radio_group_behavior_iterator_t is record data : access xcb_xkb_permament_radio_group_behavior_t; -- /usr/include/xcb/xkb.h:644 c_rem : aliased int; -- /usr/include/xcb/xkb.h:645 index : aliased int; -- /usr/include/xcb/xkb.h:646 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_permament_radio_group_behavior_iterator_t); -- /usr/include/xcb/xkb.h:643 type xcb_xkb_permament_overlay_behavior_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:653 key : aliased XCB.XProto.xcb_keycode_t; -- /usr/include/xcb/xkb.h:654 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_permament_overlay_behavior_t); -- /usr/include/xcb/xkb.h:652 type xcb_xkb_permament_overlay_behavior_iterator_t is record data : access xcb_xkb_permament_overlay_behavior_t; -- /usr/include/xcb/xkb.h:661 c_rem : aliased int; -- /usr/include/xcb/xkb.h:662 index : aliased int; -- /usr/include/xcb/xkb.h:663 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_permament_overlay_behavior_iterator_t); -- /usr/include/xcb/xkb.h:660 type xcb_xkb_behavior_t (discr : unsigned := 0) is record case discr is when 0 => common : aliased xcb_xkb_common_behavior_t; -- /usr/include/xcb/xkb.h:670 when 1 => u_default : aliased xcb_xkb_default_behavior_t; -- /usr/include/xcb/xkb.h:671 when 2 => lock : aliased xcb_xkb_lock_behavior_t; -- /usr/include/xcb/xkb.h:672 when 3 => radioGroup : aliased xcb_xkb_radio_group_behavior_t; -- /usr/include/xcb/xkb.h:673 when 4 => overlay1 : aliased xcb_xkb_overlay_behavior_t; -- /usr/include/xcb/xkb.h:674 when 5 => overlay2 : aliased xcb_xkb_overlay_behavior_t; -- /usr/include/xcb/xkb.h:675 when 6 => permamentLock : aliased xcb_xkb_permament_lock_behavior_t; -- /usr/include/xcb/xkb.h:676 when 7 => permamentRadioGroup : aliased xcb_xkb_permament_radio_group_behavior_t; -- /usr/include/xcb/xkb.h:677 when 8 => permamentOverlay1 : aliased xcb_xkb_permament_overlay_behavior_t; -- /usr/include/xcb/xkb.h:678 when 9 => permamentOverlay2 : aliased xcb_xkb_permament_overlay_behavior_t; -- /usr/include/xcb/xkb.h:679 when others => c_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:680 end case; end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_behavior_t); pragma Unchecked_Union (xcb_xkb_behavior_t); -- /usr/include/xcb/xkb.h:669 type xcb_xkb_behavior_iterator_t is record data : access xcb_xkb_behavior_t; -- /usr/include/xcb/xkb.h:687 c_rem : aliased int; -- /usr/include/xcb/xkb.h:688 index : aliased int; -- /usr/include/xcb/xkb.h:689 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_behavior_iterator_t); -- /usr/include/xcb/xkb.h:686 subtype xcb_xkb_behavior_type_t is unsigned; XCB_XKB_BEHAVIOR_TYPE_DEFAULT : constant xcb_xkb_behavior_type_t := 0; XCB_XKB_BEHAVIOR_TYPE_LOCK : constant xcb_xkb_behavior_type_t := 1; XCB_XKB_BEHAVIOR_TYPE_RADIO_GROUP : constant xcb_xkb_behavior_type_t := 2; XCB_XKB_BEHAVIOR_TYPE_OVERLAY_1 : constant xcb_xkb_behavior_type_t := 3; XCB_XKB_BEHAVIOR_TYPE_OVERLAY_2 : constant xcb_xkb_behavior_type_t := 4; XCB_XKB_BEHAVIOR_TYPE_PERMAMENT_LOCK : constant xcb_xkb_behavior_type_t := 129; XCB_XKB_BEHAVIOR_TYPE_PERMAMENT_RADIO_GROUP : constant xcb_xkb_behavior_type_t := 130; XCB_XKB_BEHAVIOR_TYPE_PERMAMENT_OVERLAY_1 : constant xcb_xkb_behavior_type_t := 131; XCB_XKB_BEHAVIOR_TYPE_PERMAMENT_OVERLAY_2 : constant xcb_xkb_behavior_type_t := 132; -- /usr/include/xcb/xkb.h:692 type xcb_xkb_set_behavior_t is record keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:708 behavior : xcb_xkb_behavior_t; -- /usr/include/xcb/xkb.h:709 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:710 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_behavior_t); -- /usr/include/xcb/xkb.h:707 type xcb_xkb_set_behavior_iterator_t is record data : access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:717 c_rem : aliased int; -- /usr/include/xcb/xkb.h:718 index : aliased int; -- /usr/include/xcb/xkb.h:719 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_behavior_iterator_t); -- /usr/include/xcb/xkb.h:716 type xcb_xkb_set_explicit_t is record keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:726 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_explicit_t); -- /usr/include/xcb/xkb.h:725 type xcb_xkb_set_explicit_iterator_t is record data : access xcb_xkb_set_explicit_t; -- /usr/include/xcb/xkb.h:734 c_rem : aliased int; -- /usr/include/xcb/xkb.h:735 index : aliased int; -- /usr/include/xcb/xkb.h:736 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_explicit_iterator_t); -- /usr/include/xcb/xkb.h:733 type xcb_xkb_key_mod_map_t is record keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:743 mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:744 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_mod_map_t); -- /usr/include/xcb/xkb.h:742 type xcb_xkb_key_mod_map_iterator_t is record data : access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:751 c_rem : aliased int; -- /usr/include/xcb/xkb.h:752 index : aliased int; -- /usr/include/xcb/xkb.h:753 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_mod_map_iterator_t); -- /usr/include/xcb/xkb.h:750 type xcb_xkb_key_v_mod_map_t is record keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:760 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:761 vmods : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:762 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_v_mod_map_t); -- /usr/include/xcb/xkb.h:759 type xcb_xkb_key_v_mod_map_iterator_t is record data : access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:769 c_rem : aliased int; -- /usr/include/xcb/xkb.h:770 index : aliased int; -- /usr/include/xcb/xkb.h:771 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_v_mod_map_iterator_t); -- /usr/include/xcb/xkb.h:768 type xcb_xkb_kt_set_map_entry_t is record level : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:778 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:779 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:780 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_kt_set_map_entry_t); -- /usr/include/xcb/xkb.h:777 type xcb_xkb_kt_set_map_entry_iterator_t is record data : access xcb_xkb_kt_set_map_entry_t; -- /usr/include/xcb/xkb.h:787 c_rem : aliased int; -- /usr/include/xcb/xkb.h:788 index : aliased int; -- /usr/include/xcb/xkb.h:789 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_kt_set_map_entry_iterator_t); -- /usr/include/xcb/xkb.h:786 type xcb_xkb_set_key_type_t is record mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:796 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:797 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:798 numLevels : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:799 nMapEntries : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:800 preserve : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:801 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:802 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_key_type_t); -- /usr/include/xcb/xkb.h:795 type xcb_xkb_set_key_type_iterator_t is record data : access xcb_xkb_set_key_type_t; -- /usr/include/xcb/xkb.h:809 c_rem : aliased int; -- /usr/include/xcb/xkb.h:810 index : aliased int; -- /usr/include/xcb/xkb.h:811 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_key_type_iterator_t); -- /usr/include/xcb/xkb.h:808 subtype xcb_xkb_string8_t is char; -- /usr/include/xcb/xkb.h:814 type xcb_xkb_string8_iterator_t is record data : access xcb_xkb_string8_t; -- /usr/include/xcb/xkb.h:820 c_rem : aliased int; -- /usr/include/xcb/xkb.h:821 index : aliased int; -- /usr/include/xcb/xkb.h:822 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_string8_iterator_t); -- /usr/include/xcb/xkb.h:819 type xcb_xkb_outline_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_outline_t is record nPoints : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:829 cornerRadius : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:830 pad0 : aliased xcb_xkb_outline_t_pad0_array; -- /usr/include/xcb/xkb.h:831 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_outline_t); -- /usr/include/xcb/xkb.h:828 type xcb_xkb_outline_iterator_t is record data : access xcb_xkb_outline_t; -- /usr/include/xcb/xkb.h:838 c_rem : aliased int; -- /usr/include/xcb/xkb.h:839 index : aliased int; -- /usr/include/xcb/xkb.h:840 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_outline_iterator_t); -- /usr/include/xcb/xkb.h:837 type xcb_xkb_shape_t is record name : aliased XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:847 nOutlines : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:848 primaryNdx : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:849 approxNdx : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:850 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:851 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_shape_t); -- /usr/include/xcb/xkb.h:846 type xcb_xkb_shape_iterator_t is record data : access xcb_xkb_shape_t; -- /usr/include/xcb/xkb.h:858 c_rem : aliased int; -- /usr/include/xcb/xkb.h:859 index : aliased int; -- /usr/include/xcb/xkb.h:860 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_shape_iterator_t); -- /usr/include/xcb/xkb.h:857 type xcb_xkb_key_t_name_array is array (0 .. 3) of aliased xcb_xkb_string8_t; type xcb_xkb_key_t is record name : aliased xcb_xkb_key_t_name_array; -- /usr/include/xcb/xkb.h:867 gap : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:868 shapeNdx : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:869 colorNdx : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:870 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_t); -- /usr/include/xcb/xkb.h:866 type xcb_xkb_key_iterator_t is record data : access xcb_xkb_key_t; -- /usr/include/xcb/xkb.h:877 c_rem : aliased int; -- /usr/include/xcb/xkb.h:878 index : aliased int; -- /usr/include/xcb/xkb.h:879 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_key_iterator_t); -- /usr/include/xcb/xkb.h:876 type xcb_xkb_overlay_key_t_over_array is array (0 .. 3) of aliased xcb_xkb_string8_t; type xcb_xkb_overlay_key_t_under_array is array (0 .. 3) of aliased xcb_xkb_string8_t; type xcb_xkb_overlay_key_t is record over : aliased xcb_xkb_overlay_key_t_over_array; -- /usr/include/xcb/xkb.h:886 under : aliased xcb_xkb_overlay_key_t_under_array; -- /usr/include/xcb/xkb.h:887 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_key_t); -- /usr/include/xcb/xkb.h:885 type xcb_xkb_overlay_key_iterator_t is record data : access xcb_xkb_overlay_key_t; -- /usr/include/xcb/xkb.h:894 c_rem : aliased int; -- /usr/include/xcb/xkb.h:895 index : aliased int; -- /usr/include/xcb/xkb.h:896 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_key_iterator_t); -- /usr/include/xcb/xkb.h:893 type xcb_xkb_overlay_row_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_overlay_row_t is record rowUnder : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:903 nKeys : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:904 pad0 : aliased xcb_xkb_overlay_row_t_pad0_array; -- /usr/include/xcb/xkb.h:905 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_row_t); -- /usr/include/xcb/xkb.h:902 type xcb_xkb_overlay_row_iterator_t is record data : access xcb_xkb_overlay_row_t; -- /usr/include/xcb/xkb.h:912 c_rem : aliased int; -- /usr/include/xcb/xkb.h:913 index : aliased int; -- /usr/include/xcb/xkb.h:914 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_row_iterator_t); -- /usr/include/xcb/xkb.h:911 type xcb_xkb_overlay_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_overlay_t is record name : aliased XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:921 nRows : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:922 pad0 : aliased xcb_xkb_overlay_t_pad0_array; -- /usr/include/xcb/xkb.h:923 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_t); -- /usr/include/xcb/xkb.h:920 type xcb_xkb_overlay_iterator_t is record data : access xcb_xkb_overlay_t; -- /usr/include/xcb/xkb.h:930 c_rem : aliased int; -- /usr/include/xcb/xkb.h:931 index : aliased int; -- /usr/include/xcb/xkb.h:932 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_overlay_iterator_t); -- /usr/include/xcb/xkb.h:929 type xcb_xkb_row_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_row_t is record top : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:939 left : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:940 nKeys : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:941 vertical : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:942 pad0 : aliased xcb_xkb_row_t_pad0_array; -- /usr/include/xcb/xkb.h:943 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_row_t); -- /usr/include/xcb/xkb.h:938 type xcb_xkb_row_iterator_t is record data : access xcb_xkb_row_t; -- /usr/include/xcb/xkb.h:950 c_rem : aliased int; -- /usr/include/xcb/xkb.h:951 index : aliased int; -- /usr/include/xcb/xkb.h:952 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_row_iterator_t); -- /usr/include/xcb/xkb.h:949 subtype xcb_xkb_doodad_type_t is unsigned; XCB_XKB_DOODAD_TYPE_OUTLINE : constant xcb_xkb_doodad_type_t := 1; XCB_XKB_DOODAD_TYPE_SOLID : constant xcb_xkb_doodad_type_t := 2; XCB_XKB_DOODAD_TYPE_TEXT : constant xcb_xkb_doodad_type_t := 3; XCB_XKB_DOODAD_TYPE_INDICATOR : constant xcb_xkb_doodad_type_t := 4; XCB_XKB_DOODAD_TYPE_LOGO : constant xcb_xkb_doodad_type_t := 5; -- /usr/include/xcb/xkb.h:955 type xcb_xkb_listing_t is record flags : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:967 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:968 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_listing_t); -- /usr/include/xcb/xkb.h:966 type xcb_xkb_listing_iterator_t is record data : access xcb_xkb_listing_t; -- /usr/include/xcb/xkb.h:975 c_rem : aliased int; -- /usr/include/xcb/xkb.h:976 index : aliased int; -- /usr/include/xcb/xkb.h:977 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_listing_iterator_t); -- /usr/include/xcb/xkb.h:974 type xcb_xkb_device_led_info_t is record ledClass : aliased xcb_xkb_led_class_spec_t; -- /usr/include/xcb/xkb.h:984 ledID : aliased xcb_xkb_id_spec_t; -- /usr/include/xcb/xkb.h:985 namesPresent : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:986 mapsPresent : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:987 physIndicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:988 state : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:989 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_device_led_info_t); -- /usr/include/xcb/xkb.h:983 type xcb_xkb_device_led_info_iterator_t is record data : access xcb_xkb_device_led_info_t; -- /usr/include/xcb/xkb.h:996 c_rem : aliased int; -- /usr/include/xcb/xkb.h:997 index : aliased int; -- /usr/include/xcb/xkb.h:998 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_device_led_info_iterator_t); -- /usr/include/xcb/xkb.h:995 subtype xcb_xkb_error_t is unsigned; XCB_XKB_ERROR_BAD_DEVICE : constant xcb_xkb_error_t := 255; XCB_XKB_ERROR_BAD_CLASS : constant xcb_xkb_error_t := 254; XCB_XKB_ERROR_BAD_ID : constant xcb_xkb_error_t := 253; -- /usr/include/xcb/xkb.h:1001 type xcb_xkb_keyboard_error_t_pad0_array is array (0 .. 20) of aliased Libc.Stdint.uint8_t; type xcb_xkb_keyboard_error_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1014 error_code : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1015 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1016 value : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:1017 minorOpcode : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1018 majorOpcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1019 pad0 : aliased xcb_xkb_keyboard_error_t_pad0_array; -- /usr/include/xcb/xkb.h:1020 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_keyboard_error_t); -- /usr/include/xcb/xkb.h:1013 subtype xcb_xkb_sa_t is unsigned; XCB_XKB_SA_CLEAR_LOCKS : constant xcb_xkb_sa_t := 1; XCB_XKB_SA_LATCH_TO_LOCK : constant xcb_xkb_sa_t := 2; XCB_XKB_SA_USE_MOD_MAP_MODS : constant xcb_xkb_sa_t := 4; XCB_XKB_SA_GROUP_ABSOLUTE : constant xcb_xkb_sa_t := 4; -- /usr/include/xcb/xkb.h:1023 type xcb_xkb_sa_type_t is (XCB_XKB_SA_TYPE_NO_ACTION, XCB_XKB_SA_TYPE_SET_MODS, XCB_XKB_SA_TYPE_LATCH_MODS, XCB_XKB_SA_TYPE_LOCK_MODS, XCB_XKB_SA_TYPE_SET_GROUP, XCB_XKB_SA_TYPE_LATCH_GROUP, XCB_XKB_SA_TYPE_LOCK_GROUP, XCB_XKB_SA_TYPE_MOVE_PTR, XCB_XKB_SA_TYPE_PTR_BTN, XCB_XKB_SA_TYPE_LOCK_PTR_BTN, XCB_XKB_SA_TYPE_SET_PTR_DFLT, XCB_XKB_SA_TYPE_ISO_LOCK, XCB_XKB_SA_TYPE_TERMINATE, XCB_XKB_SA_TYPE_SWITCH_SCREEN, XCB_XKB_SA_TYPE_SET_CONTROLS, XCB_XKB_SA_TYPE_LOCK_CONTROLS, XCB_XKB_SA_TYPE_ACTION_MESSAGE, XCB_XKB_SA_TYPE_REDIRECT_KEY, XCB_XKB_SA_TYPE_DEVICE_BTN, XCB_XKB_SA_TYPE_LOCK_DEVICE_BTN, XCB_XKB_SA_TYPE_DEVICE_VALUATOR); pragma Convention (C, xcb_xkb_sa_type_t); -- /usr/include/xcb/xkb.h:1030 type xcb_xkb_sa_no_action_t_pad0_array is array (0 .. 6) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_no_action_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1058 pad0 : aliased xcb_xkb_sa_no_action_t_pad0_array; -- /usr/include/xcb/xkb.h:1059 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_no_action_t); -- /usr/include/xcb/xkb.h:1057 type xcb_xkb_sa_no_action_iterator_t is record data : access xcb_xkb_sa_no_action_t; -- /usr/include/xcb/xkb.h:1066 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1067 index : aliased int; -- /usr/include/xcb/xkb.h:1068 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_no_action_iterator_t); -- /usr/include/xcb/xkb.h:1065 type xcb_xkb_sa_set_mods_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_set_mods_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1075 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1076 mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1077 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1078 vmodsHigh : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1079 vmodsLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1080 pad0 : aliased xcb_xkb_sa_set_mods_t_pad0_array; -- /usr/include/xcb/xkb.h:1081 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_mods_t); -- /usr/include/xcb/xkb.h:1074 type xcb_xkb_sa_set_mods_iterator_t is record data : access xcb_xkb_sa_set_mods_t; -- /usr/include/xcb/xkb.h:1088 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1089 index : aliased int; -- /usr/include/xcb/xkb.h:1090 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_mods_iterator_t); -- /usr/include/xcb/xkb.h:1087 type xcb_xkb_sa_latch_mods_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_latch_mods_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1097 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1098 mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1099 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1100 vmodsHigh : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1101 vmodsLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1102 pad0 : aliased xcb_xkb_sa_latch_mods_t_pad0_array; -- /usr/include/xcb/xkb.h:1103 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_latch_mods_t); -- /usr/include/xcb/xkb.h:1096 type xcb_xkb_sa_latch_mods_iterator_t is record data : access xcb_xkb_sa_latch_mods_t; -- /usr/include/xcb/xkb.h:1110 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1111 index : aliased int; -- /usr/include/xcb/xkb.h:1112 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_latch_mods_iterator_t); -- /usr/include/xcb/xkb.h:1109 type xcb_xkb_sa_lock_mods_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_lock_mods_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1119 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1120 mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1121 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1122 vmodsHigh : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1123 vmodsLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1124 pad0 : aliased xcb_xkb_sa_lock_mods_t_pad0_array; -- /usr/include/xcb/xkb.h:1125 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_mods_t); -- /usr/include/xcb/xkb.h:1118 type xcb_xkb_sa_lock_mods_iterator_t is record data : access xcb_xkb_sa_lock_mods_t; -- /usr/include/xcb/xkb.h:1132 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1133 index : aliased int; -- /usr/include/xcb/xkb.h:1134 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_mods_iterator_t); -- /usr/include/xcb/xkb.h:1131 type xcb_xkb_sa_set_group_t_pad0_array is array (0 .. 4) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_set_group_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1141 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1142 group : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1143 pad0 : aliased xcb_xkb_sa_set_group_t_pad0_array; -- /usr/include/xcb/xkb.h:1144 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_group_t); -- /usr/include/xcb/xkb.h:1140 type xcb_xkb_sa_set_group_iterator_t is record data : access xcb_xkb_sa_set_group_t; -- /usr/include/xcb/xkb.h:1151 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1152 index : aliased int; -- /usr/include/xcb/xkb.h:1153 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_group_iterator_t); -- /usr/include/xcb/xkb.h:1150 type xcb_xkb_sa_latch_group_t_pad0_array is array (0 .. 4) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_latch_group_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1160 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1161 group : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1162 pad0 : aliased xcb_xkb_sa_latch_group_t_pad0_array; -- /usr/include/xcb/xkb.h:1163 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_latch_group_t); -- /usr/include/xcb/xkb.h:1159 type xcb_xkb_sa_latch_group_iterator_t is record data : access xcb_xkb_sa_latch_group_t; -- /usr/include/xcb/xkb.h:1170 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1171 index : aliased int; -- /usr/include/xcb/xkb.h:1172 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_latch_group_iterator_t); -- /usr/include/xcb/xkb.h:1169 type xcb_xkb_sa_lock_group_t_pad0_array is array (0 .. 4) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_lock_group_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1179 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1180 group : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1181 pad0 : aliased xcb_xkb_sa_lock_group_t_pad0_array; -- /usr/include/xcb/xkb.h:1182 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_group_t); -- /usr/include/xcb/xkb.h:1178 type xcb_xkb_sa_lock_group_iterator_t is record data : access xcb_xkb_sa_lock_group_t; -- /usr/include/xcb/xkb.h:1189 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1190 index : aliased int; -- /usr/include/xcb/xkb.h:1191 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_group_iterator_t); -- /usr/include/xcb/xkb.h:1188 subtype xcb_xkb_sa_move_ptr_flag_t is unsigned; XCB_XKB_SA_MOVE_PTR_FLAG_NO_ACCELERATION : constant xcb_xkb_sa_move_ptr_flag_t := 1; XCB_XKB_SA_MOVE_PTR_FLAG_MOVE_ABSOLUTE_X : constant xcb_xkb_sa_move_ptr_flag_t := 2; XCB_XKB_SA_MOVE_PTR_FLAG_MOVE_ABSOLUTE_Y : constant xcb_xkb_sa_move_ptr_flag_t := 4; -- /usr/include/xcb/xkb.h:1194 type xcb_xkb_sa_move_ptr_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_move_ptr_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1204 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1205 xHigh : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1206 xLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1207 yHigh : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1208 yLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1209 pad0 : aliased xcb_xkb_sa_move_ptr_t_pad0_array; -- /usr/include/xcb/xkb.h:1210 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_move_ptr_t); -- /usr/include/xcb/xkb.h:1203 type xcb_xkb_sa_move_ptr_iterator_t is record data : access xcb_xkb_sa_move_ptr_t; -- /usr/include/xcb/xkb.h:1217 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1218 index : aliased int; -- /usr/include/xcb/xkb.h:1219 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_move_ptr_iterator_t); -- /usr/include/xcb/xkb.h:1216 type xcb_xkb_sa_ptr_btn_t_pad0_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_ptr_btn_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1226 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1227 count : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1228 button : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1229 pad0 : aliased xcb_xkb_sa_ptr_btn_t_pad0_array; -- /usr/include/xcb/xkb.h:1230 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_ptr_btn_t); -- /usr/include/xcb/xkb.h:1225 type xcb_xkb_sa_ptr_btn_iterator_t is record data : access xcb_xkb_sa_ptr_btn_t; -- /usr/include/xcb/xkb.h:1237 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1238 index : aliased int; -- /usr/include/xcb/xkb.h:1239 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_ptr_btn_iterator_t); -- /usr/include/xcb/xkb.h:1236 type xcb_xkb_sa_lock_ptr_btn_t_pad1_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_lock_ptr_btn_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1246 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1247 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1248 button : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1249 pad1 : aliased xcb_xkb_sa_lock_ptr_btn_t_pad1_array; -- /usr/include/xcb/xkb.h:1250 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_ptr_btn_t); -- /usr/include/xcb/xkb.h:1245 type xcb_xkb_sa_lock_ptr_btn_iterator_t is record data : access xcb_xkb_sa_lock_ptr_btn_t; -- /usr/include/xcb/xkb.h:1257 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1258 index : aliased int; -- /usr/include/xcb/xkb.h:1259 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_ptr_btn_iterator_t); -- /usr/include/xcb/xkb.h:1256 subtype xcb_xkb_sa_set_ptr_dflt_flag_t is unsigned; XCB_XKB_SA_SET_PTR_DFLT_FLAG_DFLT_BTN_ABSOLUTE : constant xcb_xkb_sa_set_ptr_dflt_flag_t := 4; XCB_XKB_SA_SET_PTR_DFLT_FLAG_AFFECT_DFLT_BUTTON : constant xcb_xkb_sa_set_ptr_dflt_flag_t := 1; -- /usr/include/xcb/xkb.h:1262 type xcb_xkb_sa_set_ptr_dflt_t_pad0_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_set_ptr_dflt_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1271 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1272 affect : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1273 value : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1274 pad0 : aliased xcb_xkb_sa_set_ptr_dflt_t_pad0_array; -- /usr/include/xcb/xkb.h:1275 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_ptr_dflt_t); -- /usr/include/xcb/xkb.h:1270 type xcb_xkb_sa_set_ptr_dflt_iterator_t is record data : access xcb_xkb_sa_set_ptr_dflt_t; -- /usr/include/xcb/xkb.h:1282 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1283 index : aliased int; -- /usr/include/xcb/xkb.h:1284 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_ptr_dflt_iterator_t); -- /usr/include/xcb/xkb.h:1281 subtype xcb_xkb_sa_iso_lock_flag_t is unsigned; XCB_XKB_SA_ISO_LOCK_FLAG_NO_LOCK : constant xcb_xkb_sa_iso_lock_flag_t := 1; XCB_XKB_SA_ISO_LOCK_FLAG_NO_UNLOCK : constant xcb_xkb_sa_iso_lock_flag_t := 2; XCB_XKB_SA_ISO_LOCK_FLAG_USE_MOD_MAP_MODS : constant xcb_xkb_sa_iso_lock_flag_t := 4; XCB_XKB_SA_ISO_LOCK_FLAG_GROUP_ABSOLUTE : constant xcb_xkb_sa_iso_lock_flag_t := 4; XCB_XKB_SA_ISO_LOCK_FLAG_ISO_DFLT_IS_GROUP : constant xcb_xkb_sa_iso_lock_flag_t := 8; -- /usr/include/xcb/xkb.h:1287 subtype xcb_xkb_sa_iso_lock_no_affect_t is unsigned; XCB_XKB_SA_ISO_LOCK_NO_AFFECT_CTRLS : constant xcb_xkb_sa_iso_lock_no_affect_t := 8; XCB_XKB_SA_ISO_LOCK_NO_AFFECT_PTR : constant xcb_xkb_sa_iso_lock_no_affect_t := 16; XCB_XKB_SA_ISO_LOCK_NO_AFFECT_GROUP : constant xcb_xkb_sa_iso_lock_no_affect_t := 32; XCB_XKB_SA_ISO_LOCK_NO_AFFECT_MODS : constant xcb_xkb_sa_iso_lock_no_affect_t := 64; -- /usr/include/xcb/xkb.h:1295 type xcb_xkb_sa_iso_lock_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1306 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1307 mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1308 realMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1309 group : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1310 affect : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1311 vmodsHigh : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1312 vmodsLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1313 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_iso_lock_t); -- /usr/include/xcb/xkb.h:1305 type xcb_xkb_sa_iso_lock_iterator_t is record data : access xcb_xkb_sa_iso_lock_t; -- /usr/include/xcb/xkb.h:1320 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1321 index : aliased int; -- /usr/include/xcb/xkb.h:1322 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_iso_lock_iterator_t); -- /usr/include/xcb/xkb.h:1319 type xcb_xkb_sa_terminate_t_pad0_array is array (0 .. 6) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_terminate_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1329 pad0 : aliased xcb_xkb_sa_terminate_t_pad0_array; -- /usr/include/xcb/xkb.h:1330 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_terminate_t); -- /usr/include/xcb/xkb.h:1328 type xcb_xkb_sa_terminate_iterator_t is record data : access xcb_xkb_sa_terminate_t; -- /usr/include/xcb/xkb.h:1337 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1338 index : aliased int; -- /usr/include/xcb/xkb.h:1339 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_terminate_iterator_t); -- /usr/include/xcb/xkb.h:1336 subtype xcb_xkb_switch_screen_flag_t is unsigned; XCB_XKB_SWITCH_SCREEN_FLAG_APPLICATION : constant xcb_xkb_switch_screen_flag_t := 1; XCB_XKB_SWITCH_SCREEN_FLAG_ABSOLUTE : constant xcb_xkb_switch_screen_flag_t := 4; -- /usr/include/xcb/xkb.h:1342 type xcb_xkb_sa_switch_screen_t_pad0_array is array (0 .. 4) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_switch_screen_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1351 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1352 newScreen : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1353 pad0 : aliased xcb_xkb_sa_switch_screen_t_pad0_array; -- /usr/include/xcb/xkb.h:1354 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_switch_screen_t); -- /usr/include/xcb/xkb.h:1350 type xcb_xkb_sa_switch_screen_iterator_t is record data : access xcb_xkb_sa_switch_screen_t; -- /usr/include/xcb/xkb.h:1361 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1362 index : aliased int; -- /usr/include/xcb/xkb.h:1363 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_switch_screen_iterator_t); -- /usr/include/xcb/xkb.h:1360 subtype xcb_xkb_bool_ctrls_high_t is unsigned; XCB_XKB_BOOL_CTRLS_HIGH_ACCESS_X_FEEDBACK : constant xcb_xkb_bool_ctrls_high_t := 1; XCB_XKB_BOOL_CTRLS_HIGH_AUDIBLE_BELL : constant xcb_xkb_bool_ctrls_high_t := 2; XCB_XKB_BOOL_CTRLS_HIGH_OVERLAY_1 : constant xcb_xkb_bool_ctrls_high_t := 4; XCB_XKB_BOOL_CTRLS_HIGH_OVERLAY_2 : constant xcb_xkb_bool_ctrls_high_t := 8; XCB_XKB_BOOL_CTRLS_HIGH_IGNORE_GROUP_LOCK : constant xcb_xkb_bool_ctrls_high_t := 16; -- /usr/include/xcb/xkb.h:1366 subtype xcb_xkb_bool_ctrls_low_t is unsigned; XCB_XKB_BOOL_CTRLS_LOW_REPEAT_KEYS : constant xcb_xkb_bool_ctrls_low_t := 1; XCB_XKB_BOOL_CTRLS_LOW_SLOW_KEYS : constant xcb_xkb_bool_ctrls_low_t := 2; XCB_XKB_BOOL_CTRLS_LOW_BOUNCE_KEYS : constant xcb_xkb_bool_ctrls_low_t := 4; XCB_XKB_BOOL_CTRLS_LOW_STICKY_KEYS : constant xcb_xkb_bool_ctrls_low_t := 8; XCB_XKB_BOOL_CTRLS_LOW_MOUSE_KEYS : constant xcb_xkb_bool_ctrls_low_t := 16; XCB_XKB_BOOL_CTRLS_LOW_MOUSE_KEYS_ACCEL : constant xcb_xkb_bool_ctrls_low_t := 32; XCB_XKB_BOOL_CTRLS_LOW_ACCESS_X_KEYS : constant xcb_xkb_bool_ctrls_low_t := 64; XCB_XKB_BOOL_CTRLS_LOW_ACCESS_X_TIMEOUT : constant xcb_xkb_bool_ctrls_low_t := 128; -- /usr/include/xcb/xkb.h:1374 type xcb_xkb_sa_set_controls_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_set_controls_t_pad1_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_set_controls_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1389 pad0 : aliased xcb_xkb_sa_set_controls_t_pad0_array; -- /usr/include/xcb/xkb.h:1390 boolCtrlsHigh : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1391 boolCtrlsLow : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1392 pad1 : aliased xcb_xkb_sa_set_controls_t_pad1_array; -- /usr/include/xcb/xkb.h:1393 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_controls_t); -- /usr/include/xcb/xkb.h:1388 type xcb_xkb_sa_set_controls_iterator_t is record data : access xcb_xkb_sa_set_controls_t; -- /usr/include/xcb/xkb.h:1400 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1401 index : aliased int; -- /usr/include/xcb/xkb.h:1402 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_set_controls_iterator_t); -- /usr/include/xcb/xkb.h:1399 type xcb_xkb_sa_lock_controls_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_lock_controls_t_pad1_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_lock_controls_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1409 pad0 : aliased xcb_xkb_sa_lock_controls_t_pad0_array; -- /usr/include/xcb/xkb.h:1410 boolCtrlsHigh : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1411 boolCtrlsLow : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1412 pad1 : aliased xcb_xkb_sa_lock_controls_t_pad1_array; -- /usr/include/xcb/xkb.h:1413 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_controls_t); -- /usr/include/xcb/xkb.h:1408 type xcb_xkb_sa_lock_controls_iterator_t is record data : access xcb_xkb_sa_lock_controls_t; -- /usr/include/xcb/xkb.h:1420 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1421 index : aliased int; -- /usr/include/xcb/xkb.h:1422 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_controls_iterator_t); -- /usr/include/xcb/xkb.h:1419 subtype xcb_xkb_action_message_flag_t is unsigned; XCB_XKB_ACTION_MESSAGE_FLAG_ON_PRESS : constant xcb_xkb_action_message_flag_t := 1; XCB_XKB_ACTION_MESSAGE_FLAG_ON_RELEASE : constant xcb_xkb_action_message_flag_t := 2; XCB_XKB_ACTION_MESSAGE_FLAG_GEN_KEY_EVENT : constant xcb_xkb_action_message_flag_t := 4; -- /usr/include/xcb/xkb.h:1425 type xcb_xkb_sa_action_message_t_message_array is array (0 .. 5) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_action_message_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1435 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1436 message : aliased xcb_xkb_sa_action_message_t_message_array; -- /usr/include/xcb/xkb.h:1437 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_action_message_t); -- /usr/include/xcb/xkb.h:1434 type xcb_xkb_sa_action_message_iterator_t is record data : access xcb_xkb_sa_action_message_t; -- /usr/include/xcb/xkb.h:1444 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1445 index : aliased int; -- /usr/include/xcb/xkb.h:1446 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_action_message_iterator_t); -- /usr/include/xcb/xkb.h:1443 type xcb_xkb_sa_redirect_key_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1453 newkey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1454 mask : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1455 realModifiers : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1456 vmodsMaskHigh : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1457 vmodsMaskLow : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1458 vmodsHigh : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1459 vmodsLow : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1460 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_redirect_key_t); -- /usr/include/xcb/xkb.h:1452 type xcb_xkb_sa_redirect_key_iterator_t is record data : access xcb_xkb_sa_redirect_key_t; -- /usr/include/xcb/xkb.h:1467 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1468 index : aliased int; -- /usr/include/xcb/xkb.h:1469 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_redirect_key_iterator_t); -- /usr/include/xcb/xkb.h:1466 type xcb_xkb_sa_device_btn_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_device_btn_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1476 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1477 count : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1478 button : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1479 device : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1480 pad0 : aliased xcb_xkb_sa_device_btn_t_pad0_array; -- /usr/include/xcb/xkb.h:1481 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_device_btn_t); -- /usr/include/xcb/xkb.h:1475 type xcb_xkb_sa_device_btn_iterator_t is record data : access xcb_xkb_sa_device_btn_t; -- /usr/include/xcb/xkb.h:1488 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1489 index : aliased int; -- /usr/include/xcb/xkb.h:1490 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_device_btn_iterator_t); -- /usr/include/xcb/xkb.h:1487 subtype xcb_xkb_lock_device_flags_t is unsigned; XCB_XKB_LOCK_DEVICE_FLAGS_NO_LOCK : constant xcb_xkb_lock_device_flags_t := 1; XCB_XKB_LOCK_DEVICE_FLAGS_NO_UNLOCK : constant xcb_xkb_lock_device_flags_t := 2; -- /usr/include/xcb/xkb.h:1493 type xcb_xkb_sa_lock_device_btn_t_pad1_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_sa_lock_device_btn_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1502 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1503 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1504 button : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1505 device : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1506 pad1 : aliased xcb_xkb_sa_lock_device_btn_t_pad1_array; -- /usr/include/xcb/xkb.h:1507 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_device_btn_t); -- /usr/include/xcb/xkb.h:1501 type xcb_xkb_sa_lock_device_btn_iterator_t is record data : access xcb_xkb_sa_lock_device_btn_t; -- /usr/include/xcb/xkb.h:1514 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1515 index : aliased int; -- /usr/include/xcb/xkb.h:1516 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_lock_device_btn_iterator_t); -- /usr/include/xcb/xkb.h:1513 type xcb_xkb_sa_val_what_t is (XCB_XKB_SA_VAL_WHAT_IGNORE_VAL, XCB_XKB_SA_VAL_WHAT_SET_VAL_MIN, XCB_XKB_SA_VAL_WHAT_SET_VAL_CENTER, XCB_XKB_SA_VAL_WHAT_SET_VAL_MAX, XCB_XKB_SA_VAL_WHAT_SET_VAL_RELATIVE, XCB_XKB_SA_VAL_WHAT_SET_VAL_ABSOLUTE); pragma Convention (C, xcb_xkb_sa_val_what_t); -- /usr/include/xcb/xkb.h:1519 type xcb_xkb_sa_device_valuator_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1532 device : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1533 val1what : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1534 val1index : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1535 val1value : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1536 val2what : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1537 val2index : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1538 val2value : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1539 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_device_valuator_t); -- /usr/include/xcb/xkb.h:1531 type xcb_xkb_sa_device_valuator_iterator_t is record data : access xcb_xkb_sa_device_valuator_t; -- /usr/include/xcb/xkb.h:1546 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1547 index : aliased int; -- /usr/include/xcb/xkb.h:1548 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sa_device_valuator_iterator_t); -- /usr/include/xcb/xkb.h:1545 type xcb_xkb_si_action_t_data_array is array (0 .. 6) of aliased Libc.Stdint.uint8_t; type xcb_xkb_si_action_t is record c_type : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1555 data : aliased xcb_xkb_si_action_t_data_array; -- /usr/include/xcb/xkb.h:1556 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_si_action_t); -- /usr/include/xcb/xkb.h:1554 type xcb_xkb_si_action_iterator_t is record data : access xcb_xkb_si_action_t; -- /usr/include/xcb/xkb.h:1563 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1564 index : aliased int; -- /usr/include/xcb/xkb.h:1565 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_si_action_iterator_t); -- /usr/include/xcb/xkb.h:1562 type xcb_xkb_sym_interpret_t is record sym : aliased XCB.XProto.xcb_keysym_t; -- /usr/include/xcb/xkb.h:1572 mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1573 match : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1574 virtualMod : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1575 flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1576 action : aliased xcb_xkb_si_action_t; -- /usr/include/xcb/xkb.h:1577 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sym_interpret_t); -- /usr/include/xcb/xkb.h:1571 type xcb_xkb_sym_interpret_iterator_t is record data : access xcb_xkb_sym_interpret_t; -- /usr/include/xcb/xkb.h:1584 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1585 index : aliased int; -- /usr/include/xcb/xkb.h:1586 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_sym_interpret_iterator_t); -- /usr/include/xcb/xkb.h:1583 type xcb_xkb_action_t (discr : unsigned := 0) is record case discr is when 0 => noaction : aliased xcb_xkb_sa_no_action_t; -- /usr/include/xcb/xkb.h:1593 when 1 => setmods : aliased xcb_xkb_sa_set_mods_t; -- /usr/include/xcb/xkb.h:1594 when 2 => latchmods : aliased xcb_xkb_sa_latch_mods_t; -- /usr/include/xcb/xkb.h:1595 when 3 => lockmods : aliased xcb_xkb_sa_lock_mods_t; -- /usr/include/xcb/xkb.h:1596 when 4 => setgroup : aliased xcb_xkb_sa_set_group_t; -- /usr/include/xcb/xkb.h:1597 when 5 => latchgroup : aliased xcb_xkb_sa_latch_group_t; -- /usr/include/xcb/xkb.h:1598 when 6 => lockgroup : aliased xcb_xkb_sa_lock_group_t; -- /usr/include/xcb/xkb.h:1599 when 7 => moveptr : aliased xcb_xkb_sa_move_ptr_t; -- /usr/include/xcb/xkb.h:1600 when 8 => ptrbtn : aliased xcb_xkb_sa_ptr_btn_t; -- /usr/include/xcb/xkb.h:1601 when 9 => lockptrbtn : aliased xcb_xkb_sa_lock_ptr_btn_t; -- /usr/include/xcb/xkb.h:1602 when 10 => setptrdflt : aliased xcb_xkb_sa_set_ptr_dflt_t; -- /usr/include/xcb/xkb.h:1603 when 11 => isolock : aliased xcb_xkb_sa_iso_lock_t; -- /usr/include/xcb/xkb.h:1604 when 12 => c_terminate : aliased xcb_xkb_sa_terminate_t; -- /usr/include/xcb/xkb.h:1605 when 13 => switchscreen : aliased xcb_xkb_sa_switch_screen_t; -- /usr/include/xcb/xkb.h:1606 when 14 => setcontrols : aliased xcb_xkb_sa_set_controls_t; -- /usr/include/xcb/xkb.h:1607 when 15 => lockcontrols : aliased xcb_xkb_sa_lock_controls_t; -- /usr/include/xcb/xkb.h:1608 when 16 => message : aliased xcb_xkb_sa_action_message_t; -- /usr/include/xcb/xkb.h:1609 when 17 => redirect : aliased xcb_xkb_sa_redirect_key_t; -- /usr/include/xcb/xkb.h:1610 when 18 => devbtn : aliased xcb_xkb_sa_device_btn_t; -- /usr/include/xcb/xkb.h:1611 when 19 => lockdevbtn : aliased xcb_xkb_sa_lock_device_btn_t; -- /usr/include/xcb/xkb.h:1612 when 20 => devval : aliased xcb_xkb_sa_device_valuator_t; -- /usr/include/xcb/xkb.h:1613 when others => c_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1614 end case; end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_action_t); pragma Unchecked_Union (xcb_xkb_action_t); -- /usr/include/xcb/xkb.h:1592 type xcb_xkb_action_iterator_t is record data : access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:1621 c_rem : aliased int; -- /usr/include/xcb/xkb.h:1622 index : aliased int; -- /usr/include/xcb/xkb.h:1623 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_action_iterator_t); -- /usr/include/xcb/xkb.h:1620 type xcb_xkb_use_extension_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:1630 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_use_extension_cookie_t); -- /usr/include/xcb/xkb.h:1629 type xcb_xkb_use_extension_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1640 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1641 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1642 wantedMajor : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1643 wantedMinor : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1644 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_use_extension_request_t); -- /usr/include/xcb/xkb.h:1639 type xcb_xkb_use_extension_reply_t_pad0_array is array (0 .. 19) of aliased Libc.Stdint.uint8_t; type xcb_xkb_use_extension_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1651 supported : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1652 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1653 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:1654 serverMajor : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1655 serverMinor : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1656 pad0 : aliased xcb_xkb_use_extension_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:1657 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_use_extension_reply_t); -- /usr/include/xcb/xkb.h:1650 type xcb_xkb_select_events_details_t is record affectNewKeyboard : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1664 newKeyboardDetails : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1665 affectState : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1666 stateDetails : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1667 affectCtrls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1668 ctrlDetails : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1669 affectIndicatorState : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1670 indicatorStateDetails : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1671 affectIndicatorMap : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1672 indicatorMapDetails : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1673 affectNames : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1674 namesDetails : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1675 affectCompat : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1676 compatDetails : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1677 affectBell : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1678 bellDetails : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1679 affectMsgDetails : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1680 msgDetails : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1681 affectAccessX : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1682 accessXDetails : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1683 affectExtDev : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1684 extdevDetails : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1685 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_select_events_details_t); -- /usr/include/xcb/xkb.h:1663 type xcb_xkb_select_events_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1695 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1696 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1697 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1698 affectWhich : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1699 clear : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1700 selectAll : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1701 affectMap : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1702 map : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1703 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_select_events_request_t); -- /usr/include/xcb/xkb.h:1694 type xcb_xkb_bell_request_t_pad1_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_bell_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1713 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1714 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1715 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1716 bellClass : aliased xcb_xkb_bell_class_spec_t; -- /usr/include/xcb/xkb.h:1717 bellID : aliased xcb_xkb_id_spec_t; -- /usr/include/xcb/xkb.h:1718 percent : aliased Libc.Stdint.int8_t; -- /usr/include/xcb/xkb.h:1719 forceSound : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1720 eventOnly : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1721 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1722 pitch : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:1723 duration : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:1724 pad1 : aliased xcb_xkb_bell_request_t_pad1_array; -- /usr/include/xcb/xkb.h:1725 name : aliased XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:1726 window : aliased XCB.XProto.xcb_window_t; -- /usr/include/xcb/xkb.h:1727 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_bell_request_t); -- /usr/include/xcb/xkb.h:1712 type xcb_xkb_get_state_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:1734 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_state_cookie_t); -- /usr/include/xcb/xkb.h:1733 type xcb_xkb_get_state_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_state_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1744 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1745 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1746 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1747 pad0 : aliased xcb_xkb_get_state_request_t_pad0_array; -- /usr/include/xcb/xkb.h:1748 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_state_request_t); -- /usr/include/xcb/xkb.h:1743 type xcb_xkb_get_state_reply_t_pad1_array is array (0 .. 5) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_state_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1755 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1756 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1757 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:1758 mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1759 baseMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1760 latchedMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1761 lockedMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1762 group : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1763 lockedGroup : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1764 baseGroup : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:1765 latchedGroup : aliased Libc.Stdint .int16_t; -- /usr/include/xcb/xkb.h:1766 compatState : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1767 grabMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1768 compatGrabMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1769 lookupMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1770 compatLookupMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1771 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1772 ptrBtnState : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1773 pad1 : aliased xcb_xkb_get_state_reply_t_pad1_array; -- /usr/include/xcb/xkb.h:1774 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_state_reply_t); -- /usr/include/xcb/xkb.h:1754 type xcb_xkb_latch_lock_state_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1784 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1785 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1786 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1787 affectModLocks : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1788 modLocks : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1789 lockGroup : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1790 groupLock : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1791 affectModLatches : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1792 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1793 latchGroup : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1794 groupLatch : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1795 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_latch_lock_state_request_t); -- /usr/include/xcb/xkb.h:1783 type xcb_xkb_get_controls_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:1802 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_controls_cookie_t); -- /usr/include/xcb/xkb.h:1801 type xcb_xkb_get_controls_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_controls_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1812 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1813 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1814 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1815 pad0 : aliased xcb_xkb_get_controls_request_t_pad0_array; -- /usr/include/xcb/xkb.h:1816 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_controls_request_t); -- /usr/include/xcb/xkb.h:1811 type xcb_xkb_get_controls_reply_t_pad1_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_controls_reply_t_perKeyRepeat_array is array (0 .. 31) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_controls_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1823 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1824 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1825 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:1826 mouseKeysDfltBtn : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1827 numGroups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1828 groupsWrap : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1829 internalModsMask : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1830 ignoreLockModsMask : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1831 internalModsRealMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1832 ignoreLockModsRealMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1833 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1834 internalModsVmods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1835 ignoreLockModsVmods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1836 repeatDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1837 repeatInterval : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1838 slowKeysDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1839 debounceDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1840 mouseKeysDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1841 mouseKeysInterval : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1842 mouseKeysTimeToMax : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1843 mouseKeysMaxSpeed : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1844 mouseKeysCurve : aliased Libc.Stdint .int16_t; -- /usr/include/xcb/xkb.h:1845 accessXOption : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1846 accessXTimeout : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1847 accessXTimeoutOptionsMask : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1848 accessXTimeoutOptionsValues : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1849 pad1 : aliased xcb_xkb_get_controls_reply_t_pad1_array; -- /usr/include/xcb/xkb.h:1850 accessXTimeoutMask : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1851 accessXTimeoutValues : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1852 enabledControls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1853 perKeyRepeat : aliased xcb_xkb_get_controls_reply_t_perKeyRepeat_array; -- /usr/include/xcb/xkb.h:1854 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_controls_reply_t); -- /usr/include/xcb/xkb.h:1822 type xcb_xkb_set_controls_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_controls_request_t_perKeyRepeat_array is array (0 .. 31) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_controls_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1864 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1865 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1866 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1867 affectInternalRealMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1868 internalRealMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1869 affectIgnoreLockRealMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1870 ignoreLockRealMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1871 affectInternalVirtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1872 internalVirtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1873 affectIgnoreLockVirtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1874 ignoreLockVirtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1875 mouseKeysDfltBtn : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1876 groupsWrap : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1877 accessXOptions : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1878 pad0 : aliased xcb_xkb_set_controls_request_t_pad0_array; -- /usr/include/xcb/xkb.h:1879 affectEnabledControls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1880 enabledControls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1881 changeControls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1882 repeatDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1883 repeatInterval : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1884 slowKeysDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1885 debounceDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1886 mouseKeysDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1887 mouseKeysInterval : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1888 mouseKeysTimeToMax : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1889 mouseKeysMaxSpeed : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1890 mouseKeysCurve : aliased Libc.Stdint .int16_t; -- /usr/include/xcb/xkb.h:1891 accessXTimeout : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1892 accessXTimeoutMask : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1893 accessXTimeoutValues : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:1894 accessXTimeoutOptionsMask : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1895 accessXTimeoutOptionsValues : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1896 perKeyRepeat : aliased xcb_xkb_set_controls_request_t_perKeyRepeat_array; -- /usr/include/xcb/xkb.h:1897 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_controls_request_t); -- /usr/include/xcb/xkb.h:1863 type xcb_xkb_get_map_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:1904 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_map_cookie_t); -- /usr/include/xcb/xkb.h:1903 type xcb_xkb_get_map_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_map_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1914 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1915 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1916 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:1917 full : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1918 partial : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1919 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1920 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1921 firstKeySym : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1922 nKeySyms : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1923 firstKeyAction : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1924 nKeyActions : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1925 firstKeyBehavior : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1926 nKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1927 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1928 firstKeyExplicit : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1929 nKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1930 firstModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1931 nModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1932 firstVModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1933 nVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1934 pad0 : aliased xcb_xkb_get_map_request_t_pad0_array; -- /usr/include/xcb/xkb.h:1935 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_map_request_t); -- /usr/include/xcb/xkb.h:1913 type xcb_xkb_get_map_map_t is record types_rtrn : access xcb_xkb_key_type_t; -- /usr/include/xcb/xkb.h:1942 syms_rtrn : access xcb_xkb_key_sym_map_t; -- /usr/include/xcb/xkb.h:1943 acts_rtrn_count : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1944 alignment_pad : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1945 acts_rtrn_acts : access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:1946 behaviors_rtrn : access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:1947 vmods_rtrn : access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1948 alignment_pad2 : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1949 explicit_rtrn : access xcb_xkb_set_explicit_t; -- /usr/include/xcb/xkb.h:1950 alignment_pad3 : access Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1951 modmap_rtrn : access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:1952 alignment_pad4 : access Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1953 vmodmap_rtrn : access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:1954 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_map_map_t); -- /usr/include/xcb/xkb.h:1941 type xcb_xkb_get_map_reply_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_map_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1961 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1962 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1963 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:1964 pad0 : aliased xcb_xkb_get_map_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:1965 minKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1966 maxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1967 present : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1968 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1969 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1970 totalTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1971 firstKeySym : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1972 totalSyms : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:1973 nKeySyms : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1974 firstKeyAction : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1975 totalActions : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1976 nKeyActions : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1977 firstKeyBehavior : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1978 nKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1979 totalKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1980 firstKeyExplicit : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1981 nKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1982 totalKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1983 firstModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1984 nModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1985 totalModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1986 firstVModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:1987 nVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1988 totalVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:1989 pad1 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:1990 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:1991 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_map_reply_t); -- /usr/include/xcb/xkb.h:1960 type xcb_xkb_set_map_values_t is record types : access xcb_xkb_set_key_type_t; -- /usr/include/xcb/xkb.h:1998 syms : access xcb_xkb_key_sym_map_t; -- /usr/include/xcb/xkb.h:1999 actionsCount : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2000 actions : access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:2001 behaviors : access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:2002 vmods : access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2003 modmap : access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:2005 vmodmap : access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:2006 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_map_values_t); -- /usr/include/xcb/xkb.h:1997 type xcb_xkb_set_map_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2016 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2017 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2018 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2019 present : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2020 flags : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2021 minKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2022 maxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2023 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2024 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2025 firstKeySym : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2026 nKeySyms : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2027 totalSyms : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2028 firstKeyAction : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2029 nKeyActions : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2030 totalActions : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2031 firstKeyBehavior : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2032 nKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2033 totalKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2034 firstKeyExplicit : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2035 nKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2036 totalKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2037 firstModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2038 nModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2039 totalModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2040 firstVModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2041 nVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2042 totalVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2043 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2044 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_map_request_t); -- /usr/include/xcb/xkb.h:2015 type xcb_xkb_get_compat_map_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2051 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_compat_map_cookie_t); -- /usr/include/xcb/xkb.h:2050 type xcb_xkb_get_compat_map_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2061 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2062 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2063 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2064 groups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2065 getAllSI : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2066 firstSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2067 nSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2068 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_compat_map_request_t); -- /usr/include/xcb/xkb.h:2060 type xcb_xkb_get_compat_map_reply_t_pad1_array is array (0 .. 15) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_compat_map_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2075 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2076 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2077 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2078 groupsRtrn : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2079 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2080 firstSIRtrn : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2081 nSIRtrn : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2082 nTotalSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2083 pad1 : aliased xcb_xkb_get_compat_map_reply_t_pad1_array; -- /usr/include/xcb/xkb.h:2084 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_compat_map_reply_t); -- /usr/include/xcb/xkb.h:2074 type xcb_xkb_set_compat_map_request_t_pad1_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_compat_map_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2094 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2095 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2096 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2097 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2098 recomputeActions : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2099 truncateSI : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2100 groups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2101 firstSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2102 nSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2103 pad1 : aliased xcb_xkb_set_compat_map_request_t_pad1_array; -- /usr/include/xcb/xkb.h:2104 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_compat_map_request_t); -- /usr/include/xcb/xkb.h:2093 type xcb_xkb_get_indicator_state_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2111 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_indicator_state_cookie_t); -- /usr/include/xcb/xkb.h:2110 type xcb_xkb_get_indicator_state_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_indicator_state_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2121 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2122 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2123 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2124 pad0 : aliased xcb_xkb_get_indicator_state_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2125 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_indicator_state_request_t); -- /usr/include/xcb/xkb.h:2120 type xcb_xkb_get_indicator_state_reply_t_pad0_array is array (0 .. 19) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_indicator_state_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2132 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2133 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2134 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2135 state : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2136 pad0 : aliased xcb_xkb_get_indicator_state_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2137 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_indicator_state_reply_t); -- /usr/include/xcb/xkb.h:2131 type xcb_xkb_get_indicator_map_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2144 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_indicator_map_cookie_t); -- /usr/include/xcb/xkb.h:2143 type xcb_xkb_get_indicator_map_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_indicator_map_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2154 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2155 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2156 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2157 pad0 : aliased xcb_xkb_get_indicator_map_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2158 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2159 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_indicator_map_request_t); -- /usr/include/xcb/xkb.h:2153 type xcb_xkb_get_indicator_map_reply_t_pad0_array is array (0 .. 14) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_indicator_map_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2166 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2167 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2168 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2169 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2170 realIndicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2171 nIndicators : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2172 pad0 : aliased xcb_xkb_get_indicator_map_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2173 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_indicator_map_reply_t); -- /usr/include/xcb/xkb.h:2165 type xcb_xkb_set_indicator_map_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_indicator_map_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2183 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2184 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2185 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2186 pad0 : aliased xcb_xkb_set_indicator_map_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2187 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2188 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_indicator_map_request_t); -- /usr/include/xcb/xkb.h:2182 type xcb_xkb_get_named_indicator_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2195 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_named_indicator_cookie_t); -- /usr/include/xcb/xkb.h:2194 type xcb_xkb_get_named_indicator_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_named_indicator_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2205 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2206 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2207 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2208 ledClass : aliased xcb_xkb_led_class_spec_t; -- /usr/include/xcb/xkb.h:2209 ledID : aliased xcb_xkb_id_spec_t; -- /usr/include/xcb/xkb.h:2210 pad0 : aliased xcb_xkb_get_named_indicator_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2211 indicator : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2212 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_named_indicator_request_t); -- /usr/include/xcb/xkb.h:2204 type xcb_xkb_get_named_indicator_reply_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_named_indicator_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2219 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2220 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2221 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2222 indicator : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2223 found : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2224 on : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2225 realIndicator : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2226 ndx : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2227 map_flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2228 map_whichGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2229 map_groups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2230 map_whichMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2231 map_mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2232 map_realMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2233 map_vmod : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2234 map_ctrls : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2235 supported : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2236 pad0 : aliased xcb_xkb_get_named_indicator_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2237 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_named_indicator_reply_t); -- /usr/include/xcb/xkb.h:2218 type xcb_xkb_set_named_indicator_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_named_indicator_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2247 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2248 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2249 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2250 ledClass : aliased xcb_xkb_led_class_spec_t; -- /usr/include/xcb/xkb.h:2251 ledID : aliased xcb_xkb_id_spec_t; -- /usr/include/xcb/xkb.h:2252 pad0 : aliased xcb_xkb_set_named_indicator_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2253 indicator : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2254 setState : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2255 on : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2256 setMap : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2257 createMap : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2258 pad1 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2259 map_flags : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2260 map_whichGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2261 map_groups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2262 map_whichMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2263 map_realMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2264 map_vmods : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2265 map_ctrls : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2266 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_named_indicator_request_t); -- /usr/include/xcb/xkb.h:2246 type xcb_xkb_get_names_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2273 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_names_cookie_t); -- /usr/include/xcb/xkb.h:2272 type xcb_xkb_get_names_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_names_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2283 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2284 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2285 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2286 pad0 : aliased xcb_xkb_get_names_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2287 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2288 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_names_request_t); -- /usr/include/xcb/xkb.h:2282 type xcb_xkb_get_names_value_list_t is record keycodesName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2295 geometryName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2296 symbolsName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2297 physSymbolsName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2298 typesName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2299 compatName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2300 typeNames : access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2301 nLevelsPerType : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2302 alignment_pad : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2303 ktLevelNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2304 indicatorNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2305 virtualModNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2306 groups : access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2307 keyNames : access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:2308 keyAliases : access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:2309 radioGroupNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2310 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_names_value_list_t); -- /usr/include/xcb/xkb.h:2294 type xcb_xkb_get_names_reply_t_pad0_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_names_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2317 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2318 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2319 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2320 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2321 minKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2322 maxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2323 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2324 groupNames : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2325 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2326 firstKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2327 nKeys : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2328 indicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2329 nRadioGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2330 nKeyAliases : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2331 nKTLevels : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2332 pad0 : aliased xcb_xkb_get_names_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2333 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_names_reply_t); -- /usr/include/xcb/xkb.h:2316 type xcb_xkb_set_names_values_t is record keycodesName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2340 geometryName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2341 symbolsName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2342 physSymbolsName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2343 typesName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2344 compatName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2345 typeNames : access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2346 nLevelsPerType : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2347 ktLevelNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2348 indicatorNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2349 virtualModNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2350 groups : access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2351 keyNames : access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:2352 keyAliases : access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:2353 radioGroupNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2354 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_names_values_t); -- /usr/include/xcb/xkb.h:2339 type xcb_xkb_set_names_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2364 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2365 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2366 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2367 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2368 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2369 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2370 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2371 firstKTLevelt : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2372 nKTLevels : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2373 indicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2374 groupNames : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2375 nRadioGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2376 firstKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2377 nKeys : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2378 nKeyAliases : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2379 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2380 totalKTLevelNames : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2381 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_names_request_t); -- /usr/include/xcb/xkb.h:2363 type xcb_xkb_per_client_flags_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2388 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_per_client_flags_cookie_t); -- /usr/include/xcb/xkb.h:2387 type xcb_xkb_per_client_flags_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_per_client_flags_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2398 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2399 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2400 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2401 pad0 : aliased xcb_xkb_per_client_flags_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2402 change : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2403 value : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2404 ctrlsToChange : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2405 autoCtrls : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2406 autoCtrlsValues : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2407 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_per_client_flags_request_t); -- /usr/include/xcb/xkb.h:2397 type xcb_xkb_per_client_flags_reply_t_pad0_array is array (0 .. 7) of aliased Libc.Stdint.uint8_t; type xcb_xkb_per_client_flags_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2414 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2415 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2416 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2417 supported : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2418 value : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2419 autoCtrls : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2420 autoCtrlsValues : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2421 pad0 : aliased xcb_xkb_per_client_flags_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2422 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_per_client_flags_reply_t); -- /usr/include/xcb/xkb.h:2413 type xcb_xkb_list_components_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2429 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_list_components_cookie_t); -- /usr/include/xcb/xkb.h:2428 type xcb_xkb_list_components_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2439 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2440 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2441 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2442 maxNames : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2443 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_list_components_request_t); -- /usr/include/xcb/xkb.h:2438 type xcb_xkb_list_components_reply_t_pad0_array is array (0 .. 9) of aliased Libc.Stdint.uint8_t; type xcb_xkb_list_components_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2450 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2451 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2452 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2453 nKeymaps : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2454 nKeycodes : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2455 nTypes : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2456 nCompatMaps : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2457 nSymbols : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2458 nGeometries : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2459 extra : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2460 pad0 : aliased xcb_xkb_list_components_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2461 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_list_components_reply_t); -- /usr/include/xcb/xkb.h:2449 type xcb_xkb_get_kbd_by_name_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2468 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_kbd_by_name_cookie_t); -- /usr/include/xcb/xkb.h:2467 type xcb_xkb_get_kbd_by_name_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2478 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2479 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2480 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2481 need : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2482 want : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2483 load : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2484 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2485 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_kbd_by_name_request_t); -- /usr/include/xcb/xkb.h:2477 type xcb_xkb_get_kbd_by_name_replies_types_map_t is record types_rtrn : access xcb_xkb_key_type_t; -- /usr/include/xcb/xkb.h:2492 syms_rtrn : access xcb_xkb_key_sym_map_t; -- /usr/include/xcb/xkb.h:2493 acts_rtrn_count : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2494 acts_rtrn_acts : access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:2495 behaviors_rtrn : access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:2496 vmods_rtrn : access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2497 explicit_rtrn : access xcb_xkb_set_explicit_t; -- /usr/include/xcb/xkb.h:2498 modmap_rtrn : access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:2499 vmodmap_rtrn : access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:2500 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_kbd_by_name_replies_types_map_t); -- /usr/include/xcb/xkb.h:2491 type xcb_xkb_get_kbd_by_name_replies_key_names_value_list_t is record keycodesName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2507 geometryName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2508 symbolsName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2509 physSymbolsName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2510 typesName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2511 compatName : aliased XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2512 typeNames : access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2513 nLevelsPerType : access Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2514 ktLevelNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2515 indicatorNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2516 virtualModNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2517 groups : access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2518 keyNames : access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:2519 keyAliases : access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:2520 radioGroupNames : access XCB.XProto .xcb_atom_t; -- /usr/include/xcb/xkb.h:2521 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_t); -- /usr/include/xcb/xkb.h:2506 type xcb_xkb_get_kbd_by_name_replies_t; type xcb_xkb_get_kbd_by_name_replies_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type u_types is record getmap_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2529 typeDeviceID : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2530 getmap_sequence : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2531 getmap_length : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2532 pad0 : aliased xcb_xkb_get_kbd_by_name_replies_t_pad0_array; -- /usr/include/xcb/xkb.h:2533 typeMinKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2534 typeMaxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2535 present : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2536 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2537 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2538 totalTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2539 firstKeySym : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2540 totalSyms : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2541 nKeySyms : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2542 firstKeyAction : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2543 totalActions : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2544 nKeyActions : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2545 firstKeyBehavior : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2546 nKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2547 totalKeyBehaviors : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2548 firstKeyExplicit : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2549 nKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2550 totalKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2551 firstModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2552 nModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2553 totalModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2554 firstVModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2555 nVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2556 totalVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2557 pad1 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2558 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2559 map : aliased xcb_xkb_get_kbd_by_name_replies_types_map_t; -- /usr/include/xcb/xkb.h:2560 end record; pragma Convention (C_Pass_By_Copy, u_types); type xcb_xkb_get_kbd_by_name_replies_t_pad1_array is array (0 .. 15) of aliased Libc.Stdint.uint8_t; type u_compat_map is record compatmap_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2563 compatDeviceID : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2564 compatmap_sequence : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2565 compatmap_length : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2566 groupsRtrn : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2567 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2568 firstSIRtrn : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2569 nSIRtrn : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2570 nTotalSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2571 pad1 : aliased xcb_xkb_get_kbd_by_name_replies_t_pad1_array; -- /usr/include/xcb/xkb.h:2572 si_rtrn : access xcb_xkb_sym_interpret_t; -- /usr/include/xcb/xkb.h:2573 group_rtrn : access xcb_xkb_mod_def_t; -- /usr/include/xcb/xkb.h:2574 end record; pragma Convention (C_Pass_By_Copy, u_compat_map); type Xcb_Xkb_Get_Kbd_By_Name_Replies_T_Pad0_Array_1 is array (0 .. 14) of aliased Libc.Stdint.uint8_t; type u_indicator_maps is record indicatormap_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2577 indicatorDeviceID : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2578 indicatormap_sequence : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2579 indicatormap_length : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2580 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2581 realIndicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2582 nIndicators : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2583 pad0 : aliased Xcb_Xkb_Get_Kbd_By_Name_Replies_T_Pad0_Array_1; -- /usr/include/xcb/xkb.h:2584 maps : access xcb_xkb_indicator_map_t; -- /usr/include/xcb/xkb.h:2585 end record; pragma Convention (C_Pass_By_Copy, u_indicator_maps); type Xcb_Xkb_Get_Kbd_By_Name_Replies_T_Pad0_Array_2 is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type u_key_names is record keyname_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2588 keyDeviceID : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2589 keyname_sequence : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2590 keyname_length : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2591 which : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2592 keyMinKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2593 keyMaxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2594 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2595 groupNames : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2596 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2597 firstKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2598 nKeys : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2599 indicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2600 nRadioGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2601 nKeyAliases : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2602 nKTLevels : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2603 pad0 : aliased Xcb_Xkb_Get_Kbd_By_Name_Replies_T_Pad0_Array_2; -- /usr/include/xcb/xkb.h:2604 valueList : aliased xcb_xkb_get_kbd_by_name_replies_key_names_value_list_t; -- /usr/include/xcb/xkb.h:2605 end record; pragma Convention (C_Pass_By_Copy, u_key_names); type u_geometry is record geometry_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2608 geometryDeviceID : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2609 geometry_sequence : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2610 geometry_length : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2611 name : aliased XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2612 geometryFound : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2613 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2614 widthMM : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2615 heightMM : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2616 nProperties : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2617 nColors : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2618 nShapes : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2619 nSections : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2620 nDoodads : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2621 nKeyAliases : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2622 baseColorNdx : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2623 labelColorNdx : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2624 labelFont : access xcb_xkb_counted_string_16_t; -- /usr/include/xcb/xkb.h:2625 end record; pragma Convention (C_Pass_By_Copy, u_geometry); type xcb_xkb_get_kbd_by_name_replies_t is record types : aliased u_types; -- /usr/include/xcb/xkb.h:2561 compat_map : aliased u_compat_map; -- /usr/include/xcb/xkb.h:2575 indicator_maps : aliased u_indicator_maps; -- /usr/include/xcb/xkb.h:2586 key_names : aliased u_key_names; -- /usr/include/xcb/xkb.h:2606 geometry : aliased u_geometry; -- /usr/include/xcb/xkb.h:2626 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_kbd_by_name_replies_t); -- /usr/include/xcb/xkb.h:2527 function xcb_xkb_get_kbd_by_name_replies_types_map (R : access xcb_xkb_get_kbd_by_name_replies_t) return access xcb_xkb_get_kbd_by_name_replies_types_map_t; -- /usr/include/xcb/xkb.h:2640 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map, "xcb_xkb_get_kbd_by_name_replies_types_map"); type xcb_xkb_get_kbd_by_name_reply_t_pad0_array is array (0 .. 15) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_kbd_by_name_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2646 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2647 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2648 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2649 minKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2650 maxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2651 loaded : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2652 newKeyboard : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2653 found : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2654 reported : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2655 pad0 : aliased xcb_xkb_get_kbd_by_name_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2656 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_kbd_by_name_reply_t); -- /usr/include/xcb/xkb.h:2645 type xcb_xkb_get_device_info_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2663 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_device_info_cookie_t); -- /usr/include/xcb/xkb.h:2662 type xcb_xkb_get_device_info_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2673 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2674 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2675 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2676 wanted : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2677 allButtons : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2678 firstButton : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2679 nButtons : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2680 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2681 ledClass : aliased xcb_xkb_led_class_spec_t; -- /usr/include/xcb/xkb.h:2682 ledID : aliased xcb_xkb_id_spec_t; -- /usr/include/xcb/xkb.h:2683 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_device_info_request_t); -- /usr/include/xcb/xkb.h:2672 type xcb_xkb_get_device_info_reply_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_get_device_info_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2690 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2691 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2692 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2693 present : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2694 supported : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2695 unsupported : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2696 nDeviceLedFBs : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2697 firstBtnWanted : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2698 nBtnsWanted : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2699 firstBtnRtrn : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2700 nBtnsRtrn : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2701 totalBtns : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2702 hasOwnState : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2703 dfltKbdFB : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2704 dfltLedFB : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2705 pad0 : aliased xcb_xkb_get_device_info_reply_t_pad0_array; -- /usr/include/xcb/xkb.h:2706 devType : aliased XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2707 nameLen : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2708 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_get_device_info_reply_t); -- /usr/include/xcb/xkb.h:2689 type xcb_xkb_set_device_info_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2718 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2719 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2720 deviceSpec : aliased xcb_xkb_device_spec_t; -- /usr/include/xcb/xkb.h:2721 firstBtn : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2722 nBtns : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2723 change : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2724 nDeviceLedFBs : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2725 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_device_info_request_t); -- /usr/include/xcb/xkb.h:2717 type xcb_xkb_set_debugging_flags_cookie_t is record sequence : aliased unsigned; -- /usr/include/xcb/xkb.h:2732 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_debugging_flags_cookie_t); -- /usr/include/xcb/xkb.h:2731 type xcb_xkb_set_debugging_flags_request_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_debugging_flags_request_t is record major_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2742 minor_opcode : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2743 length : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2744 msgLength : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2745 pad0 : aliased xcb_xkb_set_debugging_flags_request_t_pad0_array; -- /usr/include/xcb/xkb.h:2746 affectFlags : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2747 flags : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2748 affectCtrls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2749 ctrls : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2750 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_debugging_flags_request_t); -- /usr/include/xcb/xkb.h:2741 type xcb_xkb_set_debugging_flags_reply_t_pad1_array is array (0 .. 7) of aliased Libc.Stdint.uint8_t; type xcb_xkb_set_debugging_flags_reply_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2757 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2758 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2759 length : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2760 currentFlags : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2761 currentCtrls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2762 supportedFlags : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2763 supportedCtrls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2764 pad1 : aliased xcb_xkb_set_debugging_flags_reply_t_pad1_array; -- /usr/include/xcb/xkb.h:2765 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_set_debugging_flags_reply_t); -- /usr/include/xcb/xkb.h:2756 type xcb_xkb_new_keyboard_notify_event_t_pad0_array is array (0 .. 13) of aliased Libc.Stdint.uint8_t; type xcb_xkb_new_keyboard_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2775 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2776 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2777 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2778 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2779 oldDeviceID : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2780 minKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2781 maxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2782 oldMinKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2783 oldMaxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2784 requestMajor : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2785 requestMinor : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2786 changed : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2787 pad0 : aliased xcb_xkb_new_keyboard_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2788 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_new_keyboard_notify_event_t); -- /usr/include/xcb/xkb.h:2774 type xcb_xkb_map_notify_event_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_map_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2798 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2799 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2800 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2801 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2802 ptrBtnActions : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2803 changed : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2804 minKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2805 maxKeyCode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2806 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2807 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2808 firstKeySym : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2809 nKeySyms : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2810 firstKeyAct : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2811 nKeyActs : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2812 firstKeyBehavior : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2813 nKeyBehavior : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2814 firstKeyExplicit : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2815 nKeyExplicit : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2816 firstModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2817 nModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2818 firstVModMapKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2819 nVModMapKeys : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2820 virtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2821 pad0 : aliased xcb_xkb_map_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2822 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_map_notify_event_t); -- /usr/include/xcb/xkb.h:2797 type xcb_xkb_state_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2832 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2833 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2834 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2835 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2836 mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2837 baseMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2838 latchedMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2839 lockedMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2840 group : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2841 baseGroup : aliased Libc.Stdint.int16_t; -- /usr/include/xcb/xkb.h:2842 latchedGroup : aliased Libc.Stdint .int16_t; -- /usr/include/xcb/xkb.h:2843 lockedGroup : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2844 compatState : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2845 grabMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2846 compatGrabMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2847 lookupMods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2848 compatLoockupMods : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2849 ptrBtnState : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2850 changed : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2851 keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2852 eventType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2853 requestMajor : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2854 requestMinor : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2855 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_state_notify_event_t); -- /usr/include/xcb/xkb.h:2831 type xcb_xkb_controls_notify_event_t_pad0_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_controls_notify_event_t_pad1_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_controls_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2865 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2866 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2867 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2868 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2869 numGroups : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2870 pad0 : aliased xcb_xkb_controls_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2871 changedControls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2872 enabledControls : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2873 enabledControlChanges : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2874 keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2875 eventType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2876 requestMajor : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2877 requestMinor : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2878 pad1 : aliased xcb_xkb_controls_notify_event_t_pad1_array; -- /usr/include/xcb/xkb.h:2879 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_controls_notify_event_t); -- /usr/include/xcb/xkb.h:2864 type xcb_xkb_indicator_state_notify_event_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_indicator_state_notify_event_t_pad1_array is array (0 .. 11) of aliased Libc.Stdint.uint8_t; type xcb_xkb_indicator_state_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2889 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2890 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2891 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2892 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2893 pad0 : aliased xcb_xkb_indicator_state_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2894 state : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2895 stateChanged : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2896 pad1 : aliased xcb_xkb_indicator_state_notify_event_t_pad1_array; -- /usr/include/xcb/xkb.h:2897 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_indicator_state_notify_event_t); -- /usr/include/xcb/xkb.h:2888 type xcb_xkb_indicator_map_notify_event_t_pad0_array is array (0 .. 2) of aliased Libc.Stdint.uint8_t; type xcb_xkb_indicator_map_notify_event_t_pad1_array is array (0 .. 11) of aliased Libc.Stdint.uint8_t; type xcb_xkb_indicator_map_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2907 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2908 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2909 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2910 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2911 pad0 : aliased xcb_xkb_indicator_map_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2912 state : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:2913 mapChanged : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2914 pad1 : aliased xcb_xkb_indicator_map_notify_event_t_pad1_array; -- /usr/include/xcb/xkb.h:2915 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_indicator_map_notify_event_t); -- /usr/include/xcb/xkb.h:2906 type xcb_xkb_names_notify_event_t_pad2_array is array (0 .. 3) of aliased Libc.Stdint.uint8_t; type xcb_xkb_names_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2925 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2926 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2927 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2928 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2929 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2930 changed : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2931 firstType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2932 nTypes : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2933 firstLevelName : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2934 nLevelNames : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2935 pad1 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2936 nRadioGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2937 nKeyAliases : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2938 changedGroupNames : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2939 changedVirtualMods : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:2940 firstKey : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:2941 nKeys : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2942 changedIndicators : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:2943 pad2 : aliased xcb_xkb_names_notify_event_t_pad2_array; -- /usr/include/xcb/xkb.h:2944 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_names_notify_event_t); -- /usr/include/xcb/xkb.h:2924 type xcb_xkb_compat_map_notify_event_t_pad0_array is array (0 .. 15) of aliased Libc.Stdint.uint8_t; type xcb_xkb_compat_map_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2954 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2955 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2956 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2957 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2958 changedGroups : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2959 firstSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2960 nSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2961 nTotalSI : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2962 pad0 : aliased xcb_xkb_compat_map_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2963 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_compat_map_notify_event_t); -- /usr/include/xcb/xkb.h:2953 type xcb_xkb_bell_notify_event_t_pad0_array is array (0 .. 6) of aliased Libc.Stdint.uint8_t; type xcb_xkb_bell_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2973 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2974 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2975 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2976 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2977 bellClass : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2978 bellID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2979 percent : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2980 pitch : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2981 duration : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2982 name : aliased XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:2983 window : aliased XCB.XProto.xcb_window_t; -- /usr/include/xcb/xkb.h:2984 eventOnly : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2985 pad0 : aliased xcb_xkb_bell_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:2986 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_bell_notify_event_t); -- /usr/include/xcb/xkb.h:2972 type xcb_xkb_action_message_event_t_message_array is array (0 .. 7) of aliased xcb_xkb_string8_t; type xcb_xkb_action_message_event_t_pad0_array is array (0 .. 9) of aliased Libc.Stdint.uint8_t; type xcb_xkb_action_message_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:2996 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:2997 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:2998 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:2999 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3000 keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:3001 press : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3002 keyEventFollows : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:3003 mods : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3004 group : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3005 message : aliased xcb_xkb_action_message_event_t_message_array; -- /usr/include/xcb/xkb.h:3006 pad0 : aliased xcb_xkb_action_message_event_t_pad0_array; -- /usr/include/xcb/xkb.h:3007 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_action_message_event_t); -- /usr/include/xcb/xkb.h:2995 type xcb_xkb_access_x_notify_event_t_pad0_array is array (0 .. 15) of aliased Libc.Stdint.uint8_t; type xcb_xkb_access_x_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:3017 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3018 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3019 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:3020 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3021 keycode : aliased XCB.XProto .xcb_keycode_t; -- /usr/include/xcb/xkb.h:3022 detailt : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3023 slowKeysDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:3024 debounceDelay : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:3025 pad0 : aliased xcb_xkb_access_x_notify_event_t_pad0_array; -- /usr/include/xcb/xkb.h:3026 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_access_x_notify_event_t); -- /usr/include/xcb/xkb.h:3016 type xcb_xkb_extension_device_notify_event_t_pad1_array is array (0 .. 1) of aliased Libc.Stdint.uint8_t; type xcb_xkb_extension_device_notify_event_t is record response_type : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:3036 xkbType : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3037 sequence : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3038 time : aliased XCB.XProto .xcb_timestamp_t; -- /usr/include/xcb/xkb.h:3039 deviceID : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3040 pad0 : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3041 reason : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3042 ledClass : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3043 ledID : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3044 ledsDefined : aliased Libc.Stdint .uint32_t; -- /usr/include/xcb/xkb.h:3045 ledState : aliased Libc.Stdint.uint32_t; -- /usr/include/xcb/xkb.h:3046 firstButton : aliased Libc.Stdint .uint8_t; -- /usr/include/xcb/xkb.h:3047 nButtons : aliased Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:3048 supported : aliased Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:3049 unsupported : aliased Libc.Stdint .uint16_t; -- /usr/include/xcb/xkb.h:3050 pad1 : aliased xcb_xkb_extension_device_notify_event_t_pad1_array; -- /usr/include/xcb/xkb.h:3051 end record; pragma Convention (C_Pass_By_Copy, xcb_xkb_extension_device_notify_event_t); -- /usr/include/xcb/xkb.h:3035 procedure xcb_xkb_device_spec_next (i : access xcb_xkb_device_spec_iterator_t); -- /usr/include/xcb/xkb.h:3073 pragma Import (C, xcb_xkb_device_spec_next, "xcb_xkb_device_spec_next"); function xcb_xkb_device_spec_end (i : xcb_xkb_device_spec_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3095 pragma Import (C, xcb_xkb_device_spec_end, "xcb_xkb_device_spec_end"); procedure xcb_xkb_led_class_spec_next (i : access xcb_xkb_led_class_spec_iterator_t); -- /usr/include/xcb/xkb.h:3116 pragma Import (C, xcb_xkb_led_class_spec_next, "xcb_xkb_led_class_spec_next"); function xcb_xkb_led_class_spec_end (i : xcb_xkb_led_class_spec_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3138 pragma Import (C, xcb_xkb_led_class_spec_end, "xcb_xkb_led_class_spec_end"); procedure xcb_xkb_bell_class_spec_next (i : access xcb_xkb_bell_class_spec_iterator_t); -- /usr/include/xcb/xkb.h:3159 pragma Import (C, xcb_xkb_bell_class_spec_next, "xcb_xkb_bell_class_spec_next"); function xcb_xkb_bell_class_spec_end (i : xcb_xkb_bell_class_spec_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3181 pragma Import (C, xcb_xkb_bell_class_spec_end, "xcb_xkb_bell_class_spec_end"); procedure xcb_xkb_id_spec_next (i : access xcb_xkb_id_spec_iterator_t); -- /usr/include/xcb/xkb.h:3202 pragma Import (C, xcb_xkb_id_spec_next, "xcb_xkb_id_spec_next"); function xcb_xkb_id_spec_end (i : xcb_xkb_id_spec_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3224 pragma Import (C, xcb_xkb_id_spec_end, "xcb_xkb_id_spec_end"); procedure xcb_xkb_indicator_map_next (i : access xcb_xkb_indicator_map_iterator_t); -- /usr/include/xcb/xkb.h:3245 pragma Import (C, xcb_xkb_indicator_map_next, "xcb_xkb_indicator_map_next"); function xcb_xkb_indicator_map_end (i : xcb_xkb_indicator_map_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3267 pragma Import (C, xcb_xkb_indicator_map_end, "xcb_xkb_indicator_map_end"); procedure xcb_xkb_mod_def_next (i : access xcb_xkb_mod_def_iterator_t); -- /usr/include/xcb/xkb.h:3288 pragma Import (C, xcb_xkb_mod_def_next, "xcb_xkb_mod_def_next"); function xcb_xkb_mod_def_end (i : xcb_xkb_mod_def_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3310 pragma Import (C, xcb_xkb_mod_def_end, "xcb_xkb_mod_def_end"); procedure xcb_xkb_key_name_next (i : access xcb_xkb_key_name_iterator_t); -- /usr/include/xcb/xkb.h:3331 pragma Import (C, xcb_xkb_key_name_next, "xcb_xkb_key_name_next"); function xcb_xkb_key_name_end (i : xcb_xkb_key_name_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3353 pragma Import (C, xcb_xkb_key_name_end, "xcb_xkb_key_name_end"); procedure xcb_xkb_key_alias_next (i : access xcb_xkb_key_alias_iterator_t); -- /usr/include/xcb/xkb.h:3374 pragma Import (C, xcb_xkb_key_alias_next, "xcb_xkb_key_alias_next"); function xcb_xkb_key_alias_end (i : xcb_xkb_key_alias_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3396 pragma Import (C, xcb_xkb_key_alias_end, "xcb_xkb_key_alias_end"); function xcb_xkb_counted_string_16_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:3399 pragma Import (C, xcb_xkb_counted_string_16_sizeof, "xcb_xkb_counted_string_16_sizeof"); function xcb_xkb_counted_string_16_string (R : access xcb_xkb_counted_string_16_t) return Interfaces.C.Strings.chars_ptr; -- /usr/include/xcb/xkb.h:3412 pragma Import (C, xcb_xkb_counted_string_16_string, "xcb_xkb_counted_string_16_string"); function xcb_xkb_counted_string_16_string_length (R : access xcb_xkb_counted_string_16_t) return int; -- /usr/include/xcb/xkb.h:3425 pragma Import (C, xcb_xkb_counted_string_16_string_length, "xcb_xkb_counted_string_16_string_length"); function xcb_xkb_counted_string_16_string_end (R : access xcb_xkb_counted_string_16_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3438 pragma Import (C, xcb_xkb_counted_string_16_string_end, "xcb_xkb_counted_string_16_string_end"); function xcb_xkb_counted_string_16_alignment_pad (R : access xcb_xkb_counted_string_16_t) return System.Address; -- /usr/include/xcb/xkb.h:3451 pragma Import (C, xcb_xkb_counted_string_16_alignment_pad, "xcb_xkb_counted_string_16_alignment_pad"); function xcb_xkb_counted_string_16_alignment_pad_length (R : access xcb_xkb_counted_string_16_t) return int; -- /usr/include/xcb/xkb.h:3464 pragma Import (C, xcb_xkb_counted_string_16_alignment_pad_length, "xcb_xkb_counted_string_16_alignment_pad_length"); function xcb_xkb_counted_string_16_alignment_pad_end (R : access xcb_xkb_counted_string_16_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3477 pragma Import (C, xcb_xkb_counted_string_16_alignment_pad_end, "xcb_xkb_counted_string_16_alignment_pad_end"); procedure xcb_xkb_counted_string_16_next (i : access xcb_xkb_counted_string_16_iterator_t); -- /usr/include/xcb/xkb.h:3498 pragma Import (C, xcb_xkb_counted_string_16_next, "xcb_xkb_counted_string_16_next"); function xcb_xkb_counted_string_16_end (i : xcb_xkb_counted_string_16_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3520 pragma Import (C, xcb_xkb_counted_string_16_end, "xcb_xkb_counted_string_16_end"); procedure xcb_xkb_kt_map_entry_next (i : access xcb_xkb_kt_map_entry_iterator_t); -- /usr/include/xcb/xkb.h:3541 pragma Import (C, xcb_xkb_kt_map_entry_next, "xcb_xkb_kt_map_entry_next"); function xcb_xkb_kt_map_entry_end (i : xcb_xkb_kt_map_entry_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3563 pragma Import (C, xcb_xkb_kt_map_entry_end, "xcb_xkb_kt_map_entry_end"); function xcb_xkb_key_type_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:3566 pragma Import (C, xcb_xkb_key_type_sizeof, "xcb_xkb_key_type_sizeof"); function xcb_xkb_key_type_map (R : access xcb_xkb_key_type_t) return access xcb_xkb_kt_map_entry_t; -- /usr/include/xcb/xkb.h:3579 pragma Import (C, xcb_xkb_key_type_map, "xcb_xkb_key_type_map"); function xcb_xkb_key_type_map_length (R : access xcb_xkb_key_type_t) return int; -- /usr/include/xcb/xkb.h:3592 pragma Import (C, xcb_xkb_key_type_map_length, "xcb_xkb_key_type_map_length"); function xcb_xkb_key_type_map_iterator (R : access xcb_xkb_key_type_t) return xcb_xkb_kt_map_entry_iterator_t; -- /usr/include/xcb/xkb.h:3605 pragma Import (C, xcb_xkb_key_type_map_iterator, "xcb_xkb_key_type_map_iterator"); function xcb_xkb_key_type_preserve (R : access xcb_xkb_key_type_t) return access xcb_xkb_mod_def_t; -- /usr/include/xcb/xkb.h:3618 pragma Import (C, xcb_xkb_key_type_preserve, "xcb_xkb_key_type_preserve"); function xcb_xkb_key_type_preserve_length (R : access xcb_xkb_key_type_t) return int; -- /usr/include/xcb/xkb.h:3631 pragma Import (C, xcb_xkb_key_type_preserve_length, "xcb_xkb_key_type_preserve_length"); function xcb_xkb_key_type_preserve_iterator (R : access xcb_xkb_key_type_t) return xcb_xkb_mod_def_iterator_t; -- /usr/include/xcb/xkb.h:3644 pragma Import (C, xcb_xkb_key_type_preserve_iterator, "xcb_xkb_key_type_preserve_iterator"); procedure xcb_xkb_key_type_next (i : access xcb_xkb_key_type_iterator_t); -- /usr/include/xcb/xkb.h:3665 pragma Import (C, xcb_xkb_key_type_next, "xcb_xkb_key_type_next"); function xcb_xkb_key_type_end (i : xcb_xkb_key_type_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3687 pragma Import (C, xcb_xkb_key_type_end, "xcb_xkb_key_type_end"); function xcb_xkb_key_sym_map_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:3690 pragma Import (C, xcb_xkb_key_sym_map_sizeof, "xcb_xkb_key_sym_map_sizeof"); function xcb_xkb_key_sym_map_syms (R : access xcb_xkb_key_sym_map_t) return access XCB.XProto.xcb_keysym_t; -- /usr/include/xcb/xkb.h:3703 pragma Import (C, xcb_xkb_key_sym_map_syms, "xcb_xkb_key_sym_map_syms"); function xcb_xkb_key_sym_map_syms_length (R : access xcb_xkb_key_sym_map_t) return int; -- /usr/include/xcb/xkb.h:3716 pragma Import (C, xcb_xkb_key_sym_map_syms_length, "xcb_xkb_key_sym_map_syms_length"); function xcb_xkb_key_sym_map_syms_end (R : access xcb_xkb_key_sym_map_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3729 pragma Import (C, xcb_xkb_key_sym_map_syms_end, "xcb_xkb_key_sym_map_syms_end"); procedure xcb_xkb_key_sym_map_next (i : access xcb_xkb_key_sym_map_iterator_t); -- /usr/include/xcb/xkb.h:3750 pragma Import (C, xcb_xkb_key_sym_map_next, "xcb_xkb_key_sym_map_next"); function xcb_xkb_key_sym_map_end (i : xcb_xkb_key_sym_map_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3772 pragma Import (C, xcb_xkb_key_sym_map_end, "xcb_xkb_key_sym_map_end"); procedure xcb_xkb_common_behavior_next (i : access xcb_xkb_common_behavior_iterator_t); -- /usr/include/xcb/xkb.h:3793 pragma Import (C, xcb_xkb_common_behavior_next, "xcb_xkb_common_behavior_next"); function xcb_xkb_common_behavior_end (i : xcb_xkb_common_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3815 pragma Import (C, xcb_xkb_common_behavior_end, "xcb_xkb_common_behavior_end"); procedure xcb_xkb_default_behavior_next (i : access xcb_xkb_default_behavior_iterator_t); -- /usr/include/xcb/xkb.h:3836 pragma Import (C, xcb_xkb_default_behavior_next, "xcb_xkb_default_behavior_next"); function xcb_xkb_default_behavior_end (i : xcb_xkb_default_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3858 pragma Import (C, xcb_xkb_default_behavior_end, "xcb_xkb_default_behavior_end"); procedure xcb_xkb_lock_behavior_next (i : access xcb_xkb_lock_behavior_iterator_t); -- /usr/include/xcb/xkb.h:3879 pragma Import (C, xcb_xkb_lock_behavior_next, "xcb_xkb_lock_behavior_next"); function xcb_xkb_lock_behavior_end (i : xcb_xkb_lock_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3901 pragma Import (C, xcb_xkb_lock_behavior_end, "xcb_xkb_lock_behavior_end"); procedure xcb_xkb_radio_group_behavior_next (i : access xcb_xkb_radio_group_behavior_iterator_t); -- /usr/include/xcb/xkb.h:3922 pragma Import (C, xcb_xkb_radio_group_behavior_next, "xcb_xkb_radio_group_behavior_next"); function xcb_xkb_radio_group_behavior_end (i : xcb_xkb_radio_group_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3944 pragma Import (C, xcb_xkb_radio_group_behavior_end, "xcb_xkb_radio_group_behavior_end"); procedure xcb_xkb_overlay_behavior_next (i : access xcb_xkb_overlay_behavior_iterator_t); -- /usr/include/xcb/xkb.h:3965 pragma Import (C, xcb_xkb_overlay_behavior_next, "xcb_xkb_overlay_behavior_next"); function xcb_xkb_overlay_behavior_end (i : xcb_xkb_overlay_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:3987 pragma Import (C, xcb_xkb_overlay_behavior_end, "xcb_xkb_overlay_behavior_end"); procedure xcb_xkb_permament_lock_behavior_next (i : access xcb_xkb_permament_lock_behavior_iterator_t); -- /usr/include/xcb/xkb.h:4008 pragma Import (C, xcb_xkb_permament_lock_behavior_next, "xcb_xkb_permament_lock_behavior_next"); function xcb_xkb_permament_lock_behavior_end (i : xcb_xkb_permament_lock_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4030 pragma Import (C, xcb_xkb_permament_lock_behavior_end, "xcb_xkb_permament_lock_behavior_end"); procedure xcb_xkb_permament_radio_group_behavior_next (i : access xcb_xkb_permament_radio_group_behavior_iterator_t); -- /usr/include/xcb/xkb.h:4051 pragma Import (C, xcb_xkb_permament_radio_group_behavior_next, "xcb_xkb_permament_radio_group_behavior_next"); function xcb_xkb_permament_radio_group_behavior_end (i : xcb_xkb_permament_radio_group_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4073 pragma Import (C, xcb_xkb_permament_radio_group_behavior_end, "xcb_xkb_permament_radio_group_behavior_end"); procedure xcb_xkb_permament_overlay_behavior_next (i : access xcb_xkb_permament_overlay_behavior_iterator_t); -- /usr/include/xcb/xkb.h:4094 pragma Import (C, xcb_xkb_permament_overlay_behavior_next, "xcb_xkb_permament_overlay_behavior_next"); function xcb_xkb_permament_overlay_behavior_end (i : xcb_xkb_permament_overlay_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4116 pragma Import (C, xcb_xkb_permament_overlay_behavior_end, "xcb_xkb_permament_overlay_behavior_end"); procedure xcb_xkb_behavior_next (i : access xcb_xkb_behavior_iterator_t); -- /usr/include/xcb/xkb.h:4137 pragma Import (C, xcb_xkb_behavior_next, "xcb_xkb_behavior_next"); function xcb_xkb_behavior_end (i : xcb_xkb_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4159 pragma Import (C, xcb_xkb_behavior_end, "xcb_xkb_behavior_end"); procedure xcb_xkb_set_behavior_next (i : access xcb_xkb_set_behavior_iterator_t); -- /usr/include/xcb/xkb.h:4180 pragma Import (C, xcb_xkb_set_behavior_next, "xcb_xkb_set_behavior_next"); function xcb_xkb_set_behavior_end (i : xcb_xkb_set_behavior_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4202 pragma Import (C, xcb_xkb_set_behavior_end, "xcb_xkb_set_behavior_end"); procedure xcb_xkb_set_explicit_next (i : access xcb_xkb_set_explicit_iterator_t); -- /usr/include/xcb/xkb.h:4223 pragma Import (C, xcb_xkb_set_explicit_next, "xcb_xkb_set_explicit_next"); function xcb_xkb_set_explicit_end (i : xcb_xkb_set_explicit_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4245 pragma Import (C, xcb_xkb_set_explicit_end, "xcb_xkb_set_explicit_end"); procedure xcb_xkb_key_mod_map_next (i : access xcb_xkb_key_mod_map_iterator_t); -- /usr/include/xcb/xkb.h:4266 pragma Import (C, xcb_xkb_key_mod_map_next, "xcb_xkb_key_mod_map_next"); function xcb_xkb_key_mod_map_end (i : xcb_xkb_key_mod_map_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4288 pragma Import (C, xcb_xkb_key_mod_map_end, "xcb_xkb_key_mod_map_end"); procedure xcb_xkb_key_v_mod_map_next (i : access xcb_xkb_key_v_mod_map_iterator_t); -- /usr/include/xcb/xkb.h:4309 pragma Import (C, xcb_xkb_key_v_mod_map_next, "xcb_xkb_key_v_mod_map_next"); function xcb_xkb_key_v_mod_map_end (i : xcb_xkb_key_v_mod_map_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4331 pragma Import (C, xcb_xkb_key_v_mod_map_end, "xcb_xkb_key_v_mod_map_end"); procedure xcb_xkb_kt_set_map_entry_next (i : access xcb_xkb_kt_set_map_entry_iterator_t); -- /usr/include/xcb/xkb.h:4352 pragma Import (C, xcb_xkb_kt_set_map_entry_next, "xcb_xkb_kt_set_map_entry_next"); function xcb_xkb_kt_set_map_entry_end (i : xcb_xkb_kt_set_map_entry_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4374 pragma Import (C, xcb_xkb_kt_set_map_entry_end, "xcb_xkb_kt_set_map_entry_end"); function xcb_xkb_set_key_type_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:4377 pragma Import (C, xcb_xkb_set_key_type_sizeof, "xcb_xkb_set_key_type_sizeof"); function xcb_xkb_set_key_type_entries (R : access xcb_xkb_set_key_type_t) return access xcb_xkb_kt_set_map_entry_t; -- /usr/include/xcb/xkb.h:4390 pragma Import (C, xcb_xkb_set_key_type_entries, "xcb_xkb_set_key_type_entries"); function xcb_xkb_set_key_type_entries_length (R : access xcb_xkb_set_key_type_t) return int; -- /usr/include/xcb/xkb.h:4403 pragma Import (C, xcb_xkb_set_key_type_entries_length, "xcb_xkb_set_key_type_entries_length"); function xcb_xkb_set_key_type_entries_iterator (R : access xcb_xkb_set_key_type_t) return xcb_xkb_kt_set_map_entry_iterator_t; -- /usr/include/xcb/xkb.h:4416 pragma Import (C, xcb_xkb_set_key_type_entries_iterator, "xcb_xkb_set_key_type_entries_iterator"); function xcb_xkb_set_key_type_preserve_entries (R : access xcb_xkb_set_key_type_t) return access xcb_xkb_kt_set_map_entry_t; -- /usr/include/xcb/xkb.h:4429 pragma Import (C, xcb_xkb_set_key_type_preserve_entries, "xcb_xkb_set_key_type_preserve_entries"); function xcb_xkb_set_key_type_preserve_entries_length (R : access xcb_xkb_set_key_type_t) return int; -- /usr/include/xcb/xkb.h:4442 pragma Import (C, xcb_xkb_set_key_type_preserve_entries_length, "xcb_xkb_set_key_type_preserve_entries_length"); function xcb_xkb_set_key_type_preserve_entries_iterator (R : access xcb_xkb_set_key_type_t) return xcb_xkb_kt_set_map_entry_iterator_t; -- /usr/include/xcb/xkb.h:4455 pragma Import (C, xcb_xkb_set_key_type_preserve_entries_iterator, "xcb_xkb_set_key_type_preserve_entries_iterator"); procedure xcb_xkb_set_key_type_next (i : access xcb_xkb_set_key_type_iterator_t); -- /usr/include/xcb/xkb.h:4476 pragma Import (C, xcb_xkb_set_key_type_next, "xcb_xkb_set_key_type_next"); function xcb_xkb_set_key_type_end (i : xcb_xkb_set_key_type_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4498 pragma Import (C, xcb_xkb_set_key_type_end, "xcb_xkb_set_key_type_end"); procedure xcb_xkb_string8_next (i : access xcb_xkb_string8_iterator_t); -- /usr/include/xcb/xkb.h:4519 pragma Import (C, xcb_xkb_string8_next, "xcb_xkb_string8_next"); function xcb_xkb_string8_end (i : xcb_xkb_string8_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4541 pragma Import (C, xcb_xkb_string8_end, "xcb_xkb_string8_end"); function xcb_xkb_outline_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:4544 pragma Import (C, xcb_xkb_outline_sizeof, "xcb_xkb_outline_sizeof"); function xcb_xkb_outline_points (R : access xcb_xkb_outline_t) return access XCB.XProto.xcb_point_t; -- /usr/include/xcb/xkb.h:4557 pragma Import (C, xcb_xkb_outline_points, "xcb_xkb_outline_points"); function xcb_xkb_outline_points_length (R : access xcb_xkb_outline_t) return int; -- /usr/include/xcb/xkb.h:4570 pragma Import (C, xcb_xkb_outline_points_length, "xcb_xkb_outline_points_length"); function xcb_xkb_outline_points_iterator (R : access xcb_xkb_outline_t) return XCB.XProto.xcb_point_iterator_t; -- /usr/include/xcb/xkb.h:4583 pragma Import (C, xcb_xkb_outline_points_iterator, "xcb_xkb_outline_points_iterator"); procedure xcb_xkb_outline_next (i : access xcb_xkb_outline_iterator_t); -- /usr/include/xcb/xkb.h:4604 pragma Import (C, xcb_xkb_outline_next, "xcb_xkb_outline_next"); function xcb_xkb_outline_end (i : xcb_xkb_outline_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4626 pragma Import (C, xcb_xkb_outline_end, "xcb_xkb_outline_end"); function xcb_xkb_shape_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:4629 pragma Import (C, xcb_xkb_shape_sizeof, "xcb_xkb_shape_sizeof"); function xcb_xkb_shape_outlines_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:4642 pragma Import (C, xcb_xkb_shape_outlines_length, "xcb_xkb_shape_outlines_length"); function xcb_xkb_shape_outlines_iterator (R : System.Address) return xcb_xkb_outline_iterator_t; -- /usr/include/xcb/xkb.h:4655 pragma Import (C, xcb_xkb_shape_outlines_iterator, "xcb_xkb_shape_outlines_iterator"); procedure xcb_xkb_shape_next (i : access xcb_xkb_shape_iterator_t); -- /usr/include/xcb/xkb.h:4676 pragma Import (C, xcb_xkb_shape_next, "xcb_xkb_shape_next"); function xcb_xkb_shape_end (i : xcb_xkb_shape_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4698 pragma Import (C, xcb_xkb_shape_end, "xcb_xkb_shape_end"); procedure xcb_xkb_key_next (i : access xcb_xkb_key_iterator_t); -- /usr/include/xcb/xkb.h:4719 pragma Import (C, xcb_xkb_key_next, "xcb_xkb_key_next"); function xcb_xkb_key_end (i : xcb_xkb_key_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4741 pragma Import (C, xcb_xkb_key_end, "xcb_xkb_key_end"); procedure xcb_xkb_overlay_key_next (i : access xcb_xkb_overlay_key_iterator_t); -- /usr/include/xcb/xkb.h:4762 pragma Import (C, xcb_xkb_overlay_key_next, "xcb_xkb_overlay_key_next"); function xcb_xkb_overlay_key_end (i : xcb_xkb_overlay_key_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4784 pragma Import (C, xcb_xkb_overlay_key_end, "xcb_xkb_overlay_key_end"); function xcb_xkb_overlay_row_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:4787 pragma Import (C, xcb_xkb_overlay_row_sizeof, "xcb_xkb_overlay_row_sizeof"); function xcb_xkb_overlay_row_keys (R : System.Address) return access xcb_xkb_overlay_key_t; -- /usr/include/xcb/xkb.h:4800 pragma Import (C, xcb_xkb_overlay_row_keys, "xcb_xkb_overlay_row_keys"); function xcb_xkb_overlay_row_keys_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:4813 pragma Import (C, xcb_xkb_overlay_row_keys_length, "xcb_xkb_overlay_row_keys_length"); function xcb_xkb_overlay_row_keys_iterator (R : System.Address) return xcb_xkb_overlay_key_iterator_t; -- /usr/include/xcb/xkb.h:4826 pragma Import (C, xcb_xkb_overlay_row_keys_iterator, "xcb_xkb_overlay_row_keys_iterator"); procedure xcb_xkb_overlay_row_next (i : access xcb_xkb_overlay_row_iterator_t); -- /usr/include/xcb/xkb.h:4847 pragma Import (C, xcb_xkb_overlay_row_next, "xcb_xkb_overlay_row_next"); function xcb_xkb_overlay_row_end (i : xcb_xkb_overlay_row_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4869 pragma Import (C, xcb_xkb_overlay_row_end, "xcb_xkb_overlay_row_end"); function xcb_xkb_overlay_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:4872 pragma Import (C, xcb_xkb_overlay_sizeof, "xcb_xkb_overlay_sizeof"); function xcb_xkb_overlay_rows_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:4885 pragma Import (C, xcb_xkb_overlay_rows_length, "xcb_xkb_overlay_rows_length"); function xcb_xkb_overlay_rows_iterator (R : System.Address) return xcb_xkb_overlay_row_iterator_t; -- /usr/include/xcb/xkb.h:4898 pragma Import (C, xcb_xkb_overlay_rows_iterator, "xcb_xkb_overlay_rows_iterator"); procedure xcb_xkb_overlay_next (i : access xcb_xkb_overlay_iterator_t); -- /usr/include/xcb/xkb.h:4919 pragma Import (C, xcb_xkb_overlay_next, "xcb_xkb_overlay_next"); function xcb_xkb_overlay_end (i : xcb_xkb_overlay_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:4941 pragma Import (C, xcb_xkb_overlay_end, "xcb_xkb_overlay_end"); function xcb_xkb_row_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:4944 pragma Import (C, xcb_xkb_row_sizeof, "xcb_xkb_row_sizeof"); function xcb_xkb_row_keys (R : System.Address) return access xcb_xkb_key_t; -- /usr/include/xcb/xkb.h:4957 pragma Import (C, xcb_xkb_row_keys, "xcb_xkb_row_keys"); function xcb_xkb_row_keys_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:4970 pragma Import (C, xcb_xkb_row_keys_length, "xcb_xkb_row_keys_length"); function xcb_xkb_row_keys_iterator (R : System.Address) return xcb_xkb_key_iterator_t; -- /usr/include/xcb/xkb.h:4983 pragma Import (C, xcb_xkb_row_keys_iterator, "xcb_xkb_row_keys_iterator"); procedure xcb_xkb_row_next (i : access xcb_xkb_row_iterator_t); -- /usr/include/xcb/xkb.h:5004 pragma Import (C, xcb_xkb_row_next, "xcb_xkb_row_next"); function xcb_xkb_row_end (i : xcb_xkb_row_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5026 pragma Import (C, xcb_xkb_row_end, "xcb_xkb_row_end"); function xcb_xkb_listing_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:5029 pragma Import (C, xcb_xkb_listing_sizeof, "xcb_xkb_listing_sizeof"); function xcb_xkb_listing_string (R : System.Address) return access xcb_xkb_string8_t; -- /usr/include/xcb/xkb.h:5042 pragma Import (C, xcb_xkb_listing_string, "xcb_xkb_listing_string"); function xcb_xkb_listing_string_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:5055 pragma Import (C, xcb_xkb_listing_string_length, "xcb_xkb_listing_string_length"); function xcb_xkb_listing_string_end (R : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5068 pragma Import (C, xcb_xkb_listing_string_end, "xcb_xkb_listing_string_end"); procedure xcb_xkb_listing_next (i : access xcb_xkb_listing_iterator_t); -- /usr/include/xcb/xkb.h:5089 pragma Import (C, xcb_xkb_listing_next, "xcb_xkb_listing_next"); function xcb_xkb_listing_end (i : xcb_xkb_listing_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5111 pragma Import (C, xcb_xkb_listing_end, "xcb_xkb_listing_end"); function xcb_xkb_device_led_info_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:5114 pragma Import (C, xcb_xkb_device_led_info_sizeof, "xcb_xkb_device_led_info_sizeof"); function xcb_xkb_device_led_info_names (R : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:5127 pragma Import (C, xcb_xkb_device_led_info_names, "xcb_xkb_device_led_info_names"); function xcb_xkb_device_led_info_names_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:5140 pragma Import (C, xcb_xkb_device_led_info_names_length, "xcb_xkb_device_led_info_names_length"); function xcb_xkb_device_led_info_names_end (R : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5153 pragma Import (C, xcb_xkb_device_led_info_names_end, "xcb_xkb_device_led_info_names_end"); function xcb_xkb_device_led_info_maps (R : System.Address) return access xcb_xkb_indicator_map_t; -- /usr/include/xcb/xkb.h:5166 pragma Import (C, xcb_xkb_device_led_info_maps, "xcb_xkb_device_led_info_maps"); function xcb_xkb_device_led_info_maps_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:5179 pragma Import (C, xcb_xkb_device_led_info_maps_length, "xcb_xkb_device_led_info_maps_length"); function xcb_xkb_device_led_info_maps_iterator (R : System.Address) return xcb_xkb_indicator_map_iterator_t; -- /usr/include/xcb/xkb.h:5192 pragma Import (C, xcb_xkb_device_led_info_maps_iterator, "xcb_xkb_device_led_info_maps_iterator"); procedure xcb_xkb_device_led_info_next (i : access xcb_xkb_device_led_info_iterator_t); -- /usr/include/xcb/xkb.h:5213 pragma Import (C, xcb_xkb_device_led_info_next, "xcb_xkb_device_led_info_next"); function xcb_xkb_device_led_info_end (i : xcb_xkb_device_led_info_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5235 pragma Import (C, xcb_xkb_device_led_info_end, "xcb_xkb_device_led_info_end"); procedure xcb_xkb_sa_no_action_next (i : access xcb_xkb_sa_no_action_iterator_t); -- /usr/include/xcb/xkb.h:5256 pragma Import (C, xcb_xkb_sa_no_action_next, "xcb_xkb_sa_no_action_next"); function xcb_xkb_sa_no_action_end (i : xcb_xkb_sa_no_action_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5278 pragma Import (C, xcb_xkb_sa_no_action_end, "xcb_xkb_sa_no_action_end"); procedure xcb_xkb_sa_set_mods_next (i : access xcb_xkb_sa_set_mods_iterator_t); -- /usr/include/xcb/xkb.h:5299 pragma Import (C, xcb_xkb_sa_set_mods_next, "xcb_xkb_sa_set_mods_next"); function xcb_xkb_sa_set_mods_end (i : xcb_xkb_sa_set_mods_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5321 pragma Import (C, xcb_xkb_sa_set_mods_end, "xcb_xkb_sa_set_mods_end"); procedure xcb_xkb_sa_latch_mods_next (i : access xcb_xkb_sa_latch_mods_iterator_t); -- /usr/include/xcb/xkb.h:5342 pragma Import (C, xcb_xkb_sa_latch_mods_next, "xcb_xkb_sa_latch_mods_next"); function xcb_xkb_sa_latch_mods_end (i : xcb_xkb_sa_latch_mods_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5364 pragma Import (C, xcb_xkb_sa_latch_mods_end, "xcb_xkb_sa_latch_mods_end"); procedure xcb_xkb_sa_lock_mods_next (i : access xcb_xkb_sa_lock_mods_iterator_t); -- /usr/include/xcb/xkb.h:5385 pragma Import (C, xcb_xkb_sa_lock_mods_next, "xcb_xkb_sa_lock_mods_next"); function xcb_xkb_sa_lock_mods_end (i : xcb_xkb_sa_lock_mods_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5407 pragma Import (C, xcb_xkb_sa_lock_mods_end, "xcb_xkb_sa_lock_mods_end"); procedure xcb_xkb_sa_set_group_next (i : access xcb_xkb_sa_set_group_iterator_t); -- /usr/include/xcb/xkb.h:5428 pragma Import (C, xcb_xkb_sa_set_group_next, "xcb_xkb_sa_set_group_next"); function xcb_xkb_sa_set_group_end (i : xcb_xkb_sa_set_group_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5450 pragma Import (C, xcb_xkb_sa_set_group_end, "xcb_xkb_sa_set_group_end"); procedure xcb_xkb_sa_latch_group_next (i : access xcb_xkb_sa_latch_group_iterator_t); -- /usr/include/xcb/xkb.h:5471 pragma Import (C, xcb_xkb_sa_latch_group_next, "xcb_xkb_sa_latch_group_next"); function xcb_xkb_sa_latch_group_end (i : xcb_xkb_sa_latch_group_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5493 pragma Import (C, xcb_xkb_sa_latch_group_end, "xcb_xkb_sa_latch_group_end"); procedure xcb_xkb_sa_lock_group_next (i : access xcb_xkb_sa_lock_group_iterator_t); -- /usr/include/xcb/xkb.h:5514 pragma Import (C, xcb_xkb_sa_lock_group_next, "xcb_xkb_sa_lock_group_next"); function xcb_xkb_sa_lock_group_end (i : xcb_xkb_sa_lock_group_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5536 pragma Import (C, xcb_xkb_sa_lock_group_end, "xcb_xkb_sa_lock_group_end"); procedure xcb_xkb_sa_move_ptr_next (i : access xcb_xkb_sa_move_ptr_iterator_t); -- /usr/include/xcb/xkb.h:5557 pragma Import (C, xcb_xkb_sa_move_ptr_next, "xcb_xkb_sa_move_ptr_next"); function xcb_xkb_sa_move_ptr_end (i : xcb_xkb_sa_move_ptr_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5579 pragma Import (C, xcb_xkb_sa_move_ptr_end, "xcb_xkb_sa_move_ptr_end"); procedure xcb_xkb_sa_ptr_btn_next (i : access xcb_xkb_sa_ptr_btn_iterator_t); -- /usr/include/xcb/xkb.h:5600 pragma Import (C, xcb_xkb_sa_ptr_btn_next, "xcb_xkb_sa_ptr_btn_next"); function xcb_xkb_sa_ptr_btn_end (i : xcb_xkb_sa_ptr_btn_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5622 pragma Import (C, xcb_xkb_sa_ptr_btn_end, "xcb_xkb_sa_ptr_btn_end"); procedure xcb_xkb_sa_lock_ptr_btn_next (i : access xcb_xkb_sa_lock_ptr_btn_iterator_t); -- /usr/include/xcb/xkb.h:5643 pragma Import (C, xcb_xkb_sa_lock_ptr_btn_next, "xcb_xkb_sa_lock_ptr_btn_next"); function xcb_xkb_sa_lock_ptr_btn_end (i : xcb_xkb_sa_lock_ptr_btn_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5665 pragma Import (C, xcb_xkb_sa_lock_ptr_btn_end, "xcb_xkb_sa_lock_ptr_btn_end"); procedure xcb_xkb_sa_set_ptr_dflt_next (i : access xcb_xkb_sa_set_ptr_dflt_iterator_t); -- /usr/include/xcb/xkb.h:5686 pragma Import (C, xcb_xkb_sa_set_ptr_dflt_next, "xcb_xkb_sa_set_ptr_dflt_next"); function xcb_xkb_sa_set_ptr_dflt_end (i : xcb_xkb_sa_set_ptr_dflt_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5708 pragma Import (C, xcb_xkb_sa_set_ptr_dflt_end, "xcb_xkb_sa_set_ptr_dflt_end"); procedure xcb_xkb_sa_iso_lock_next (i : access xcb_xkb_sa_iso_lock_iterator_t); -- /usr/include/xcb/xkb.h:5729 pragma Import (C, xcb_xkb_sa_iso_lock_next, "xcb_xkb_sa_iso_lock_next"); function xcb_xkb_sa_iso_lock_end (i : xcb_xkb_sa_iso_lock_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5751 pragma Import (C, xcb_xkb_sa_iso_lock_end, "xcb_xkb_sa_iso_lock_end"); procedure xcb_xkb_sa_terminate_next (i : access xcb_xkb_sa_terminate_iterator_t); -- /usr/include/xcb/xkb.h:5772 pragma Import (C, xcb_xkb_sa_terminate_next, "xcb_xkb_sa_terminate_next"); function xcb_xkb_sa_terminate_end (i : xcb_xkb_sa_terminate_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5794 pragma Import (C, xcb_xkb_sa_terminate_end, "xcb_xkb_sa_terminate_end"); procedure xcb_xkb_sa_switch_screen_next (i : access xcb_xkb_sa_switch_screen_iterator_t); -- /usr/include/xcb/xkb.h:5815 pragma Import (C, xcb_xkb_sa_switch_screen_next, "xcb_xkb_sa_switch_screen_next"); function xcb_xkb_sa_switch_screen_end (i : xcb_xkb_sa_switch_screen_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5837 pragma Import (C, xcb_xkb_sa_switch_screen_end, "xcb_xkb_sa_switch_screen_end"); procedure xcb_xkb_sa_set_controls_next (i : access xcb_xkb_sa_set_controls_iterator_t); -- /usr/include/xcb/xkb.h:5858 pragma Import (C, xcb_xkb_sa_set_controls_next, "xcb_xkb_sa_set_controls_next"); function xcb_xkb_sa_set_controls_end (i : xcb_xkb_sa_set_controls_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5880 pragma Import (C, xcb_xkb_sa_set_controls_end, "xcb_xkb_sa_set_controls_end"); procedure xcb_xkb_sa_lock_controls_next (i : access xcb_xkb_sa_lock_controls_iterator_t); -- /usr/include/xcb/xkb.h:5901 pragma Import (C, xcb_xkb_sa_lock_controls_next, "xcb_xkb_sa_lock_controls_next"); function xcb_xkb_sa_lock_controls_end (i : xcb_xkb_sa_lock_controls_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5923 pragma Import (C, xcb_xkb_sa_lock_controls_end, "xcb_xkb_sa_lock_controls_end"); procedure xcb_xkb_sa_action_message_next (i : access xcb_xkb_sa_action_message_iterator_t); -- /usr/include/xcb/xkb.h:5944 pragma Import (C, xcb_xkb_sa_action_message_next, "xcb_xkb_sa_action_message_next"); function xcb_xkb_sa_action_message_end (i : xcb_xkb_sa_action_message_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:5966 pragma Import (C, xcb_xkb_sa_action_message_end, "xcb_xkb_sa_action_message_end"); procedure xcb_xkb_sa_redirect_key_next (i : access xcb_xkb_sa_redirect_key_iterator_t); -- /usr/include/xcb/xkb.h:5987 pragma Import (C, xcb_xkb_sa_redirect_key_next, "xcb_xkb_sa_redirect_key_next"); function xcb_xkb_sa_redirect_key_end (i : xcb_xkb_sa_redirect_key_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6009 pragma Import (C, xcb_xkb_sa_redirect_key_end, "xcb_xkb_sa_redirect_key_end"); procedure xcb_xkb_sa_device_btn_next (i : access xcb_xkb_sa_device_btn_iterator_t); -- /usr/include/xcb/xkb.h:6030 pragma Import (C, xcb_xkb_sa_device_btn_next, "xcb_xkb_sa_device_btn_next"); function xcb_xkb_sa_device_btn_end (i : xcb_xkb_sa_device_btn_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6052 pragma Import (C, xcb_xkb_sa_device_btn_end, "xcb_xkb_sa_device_btn_end"); procedure xcb_xkb_sa_lock_device_btn_next (i : access xcb_xkb_sa_lock_device_btn_iterator_t); -- /usr/include/xcb/xkb.h:6073 pragma Import (C, xcb_xkb_sa_lock_device_btn_next, "xcb_xkb_sa_lock_device_btn_next"); function xcb_xkb_sa_lock_device_btn_end (i : xcb_xkb_sa_lock_device_btn_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6095 pragma Import (C, xcb_xkb_sa_lock_device_btn_end, "xcb_xkb_sa_lock_device_btn_end"); procedure xcb_xkb_sa_device_valuator_next (i : access xcb_xkb_sa_device_valuator_iterator_t); -- /usr/include/xcb/xkb.h:6116 pragma Import (C, xcb_xkb_sa_device_valuator_next, "xcb_xkb_sa_device_valuator_next"); function xcb_xkb_sa_device_valuator_end (i : xcb_xkb_sa_device_valuator_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6138 pragma Import (C, xcb_xkb_sa_device_valuator_end, "xcb_xkb_sa_device_valuator_end"); procedure xcb_xkb_si_action_next (i : access xcb_xkb_si_action_iterator_t); -- /usr/include/xcb/xkb.h:6159 pragma Import (C, xcb_xkb_si_action_next, "xcb_xkb_si_action_next"); function xcb_xkb_si_action_end (i : xcb_xkb_si_action_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6181 pragma Import (C, xcb_xkb_si_action_end, "xcb_xkb_si_action_end"); procedure xcb_xkb_sym_interpret_next (i : access xcb_xkb_sym_interpret_iterator_t); -- /usr/include/xcb/xkb.h:6202 pragma Import (C, xcb_xkb_sym_interpret_next, "xcb_xkb_sym_interpret_next"); function xcb_xkb_sym_interpret_end (i : xcb_xkb_sym_interpret_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6224 pragma Import (C, xcb_xkb_sym_interpret_end, "xcb_xkb_sym_interpret_end"); procedure xcb_xkb_action_next (i : access xcb_xkb_action_iterator_t); -- /usr/include/xcb/xkb.h:6245 pragma Import (C, xcb_xkb_action_next, "xcb_xkb_action_next"); function xcb_xkb_action_end (i : xcb_xkb_action_iterator_t) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:6267 pragma Import (C, xcb_xkb_action_end, "xcb_xkb_action_end"); function xcb_xkb_use_extension (c : xcb_connection_t_access; wantedMajor : Libc.Stdint.uint16_t; wantedMinor : Libc.Stdint.uint16_t) return xcb_xkb_use_extension_cookie_t; -- /usr/include/xcb/xkb.h:6290 pragma Import (C, xcb_xkb_use_extension, "xcb_xkb_use_extension"); function xcb_xkb_use_extension_unchecked (c : xcb_connection_t_access; wantedMajor : Libc.Stdint.uint16_t; wantedMinor : Libc.Stdint.uint16_t) return xcb_xkb_use_extension_cookie_t; -- /usr/include/xcb/xkb.h:6318 pragma Import (C, xcb_xkb_use_extension_unchecked, "xcb_xkb_use_extension_unchecked"); function xcb_xkb_use_extension_reply (c : xcb_connection_t_access; cookie : xcb_xkb_use_extension_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_use_extension_reply_t; -- /usr/include/xcb/xkb.h:6349 pragma Import (C, xcb_xkb_use_extension_reply, "xcb_xkb_use_extension_reply"); function xcb_xkb_select_events_details_serialize (u_buffer : System.Address; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:6354 pragma Import (C, xcb_xkb_select_events_details_serialize, "xcb_xkb_select_events_details_serialize"); function xcb_xkb_select_events_details_unpack (u_buffer : System.Address; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t; u_aux : access xcb_xkb_select_events_details_t) return int; -- /usr/include/xcb/xkb.h:6361 pragma Import (C, xcb_xkb_select_events_details_unpack, "xcb_xkb_select_events_details_unpack"); function xcb_xkb_select_events_details_sizeof (u_buffer : System.Address; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t) return int; -- /usr/include/xcb/xkb.h:6368 pragma Import (C, xcb_xkb_select_events_details_sizeof, "xcb_xkb_select_events_details_sizeof"); function xcb_xkb_select_events_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t; affectMap : Libc.Stdint.uint16_t; map : Libc.Stdint.uint16_t; details : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6402 pragma Import (C, xcb_xkb_select_events_checked, "xcb_xkb_select_events_checked"); function xcb_xkb_select_events (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t; affectMap : Libc.Stdint.uint16_t; map : Libc.Stdint.uint16_t; details : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6437 pragma Import (C, xcb_xkb_select_events, "xcb_xkb_select_events"); function xcb_xkb_select_events_aux_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t; affectMap : Libc.Stdint.uint16_t; map : Libc.Stdint.uint16_t; details : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6475 pragma Import (C, xcb_xkb_select_events_aux_checked, "xcb_xkb_select_events_aux_checked"); function xcb_xkb_select_events_aux (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectWhich : Libc.Stdint.uint16_t; clear : Libc.Stdint.uint16_t; selectAll : Libc.Stdint.uint16_t; affectMap : Libc.Stdint.uint16_t; map : Libc.Stdint.uint16_t; details : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6510 pragma Import (C, xcb_xkb_select_events_aux, "xcb_xkb_select_events_aux"); function xcb_xkb_bell_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; bellClass : xcb_xkb_bell_class_spec_t; bellID : xcb_xkb_id_spec_t; percent : Libc.Stdint.int8_t; forceSound : Libc.Stdint.uint8_t; eventOnly : Libc.Stdint.uint8_t; pitch : Libc.Stdint.int16_t; duration : Libc.Stdint.int16_t; name : XCB.XProto.xcb_atom_t; window : XCB.XProto.xcb_window_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6551 pragma Import (C, xcb_xkb_bell_checked, "xcb_xkb_bell_checked"); function xcb_xkb_bell (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; bellClass : xcb_xkb_bell_class_spec_t; bellID : xcb_xkb_id_spec_t; percent : Libc.Stdint.int8_t; forceSound : Libc.Stdint.uint8_t; eventOnly : Libc.Stdint.uint8_t; pitch : Libc.Stdint.int16_t; duration : Libc.Stdint.int16_t; name : XCB.XProto.xcb_atom_t; window : XCB.XProto.xcb_window_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6592 pragma Import (C, xcb_xkb_bell, "xcb_xkb_bell"); function xcb_xkb_get_state (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t) return xcb_xkb_get_state_cookie_t; -- /usr/include/xcb/xkb.h:6624 pragma Import (C, xcb_xkb_get_state, "xcb_xkb_get_state"); function xcb_xkb_get_state_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t) return xcb_xkb_get_state_cookie_t; -- /usr/include/xcb/xkb.h:6650 pragma Import (C, xcb_xkb_get_state_unchecked, "xcb_xkb_get_state_unchecked"); function xcb_xkb_get_state_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_state_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_state_reply_t; -- /usr/include/xcb/xkb.h:6680 pragma Import (C, xcb_xkb_get_state_reply, "xcb_xkb_get_state_reply"); function xcb_xkb_latch_lock_state_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectModLocks : Libc.Stdint.uint8_t; modLocks : Libc.Stdint.uint8_t; lockGroup : Libc.Stdint.uint8_t; groupLock : Libc.Stdint.uint8_t; affectModLatches : Libc.Stdint.uint8_t; latchGroup : Libc.Stdint.uint8_t; groupLatch : Libc.Stdint.uint16_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6714 pragma Import (C, xcb_xkb_latch_lock_state_checked, "xcb_xkb_latch_lock_state_checked"); function xcb_xkb_latch_lock_state (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectModLocks : Libc.Stdint.uint8_t; modLocks : Libc.Stdint.uint8_t; lockGroup : Libc.Stdint.uint8_t; groupLock : Libc.Stdint.uint8_t; affectModLatches : Libc.Stdint.uint8_t; latchGroup : Libc.Stdint.uint8_t; groupLatch : Libc.Stdint.uint16_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6751 pragma Import (C, xcb_xkb_latch_lock_state, "xcb_xkb_latch_lock_state"); function xcb_xkb_get_controls (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t) return xcb_xkb_get_controls_cookie_t; -- /usr/include/xcb/xkb.h:6781 pragma Import (C, xcb_xkb_get_controls, "xcb_xkb_get_controls"); function xcb_xkb_get_controls_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t) return xcb_xkb_get_controls_cookie_t; -- /usr/include/xcb/xkb.h:6807 pragma Import (C, xcb_xkb_get_controls_unchecked, "xcb_xkb_get_controls_unchecked"); function xcb_xkb_get_controls_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_controls_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_controls_reply_t; -- /usr/include/xcb/xkb.h:6837 pragma Import (C, xcb_xkb_get_controls_reply, "xcb_xkb_get_controls_reply"); function xcb_xkb_set_controls_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectInternalRealMods : Libc.Stdint.uint8_t; internalRealMods : Libc.Stdint.uint8_t; affectIgnoreLockRealMods : Libc.Stdint.uint8_t; ignoreLockRealMods : Libc.Stdint.uint8_t; affectInternalVirtualMods : Libc.Stdint.uint16_t; internalVirtualMods : Libc.Stdint.uint16_t; affectIgnoreLockVirtualMods : Libc.Stdint.uint16_t; ignoreLockVirtualMods : Libc.Stdint.uint16_t; mouseKeysDfltBtn : Libc.Stdint.uint8_t; groupsWrap : Libc.Stdint.uint8_t; accessXOptions : Libc.Stdint.uint16_t; affectEnabledControls : Libc.Stdint.uint32_t; enabledControls : Libc.Stdint.uint32_t; changeControls : Libc.Stdint.uint32_t; repeatDelay : Libc.Stdint.uint16_t; repeatInterval : Libc.Stdint.uint16_t; slowKeysDelay : Libc.Stdint.uint16_t; debounceDelay : Libc.Stdint.uint16_t; mouseKeysDelay : Libc.Stdint.uint16_t; mouseKeysInterval : Libc.Stdint.uint16_t; mouseKeysTimeToMax : Libc.Stdint.uint16_t; mouseKeysMaxSpeed : Libc.Stdint.uint16_t; mouseKeysCurve : Libc.Stdint.int16_t; accessXTimeout : Libc.Stdint.uint16_t; accessXTimeoutMask : Libc.Stdint.uint32_t; accessXTimeoutValues : Libc.Stdint.uint32_t; accessXTimeoutOptionsMask : Libc.Stdint.uint16_t; accessXTimeoutOptionsValues : Libc.Stdint.uint16_t; perKeyRepeat : access Libc.Stdint.uint8_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6893 pragma Import (C, xcb_xkb_set_controls_checked, "xcb_xkb_set_controls_checked"); function xcb_xkb_set_controls (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; affectInternalRealMods : Libc.Stdint.uint8_t; internalRealMods : Libc.Stdint.uint8_t; affectIgnoreLockRealMods : Libc.Stdint.uint8_t; ignoreLockRealMods : Libc.Stdint.uint8_t; affectInternalVirtualMods : Libc.Stdint.uint16_t; internalVirtualMods : Libc.Stdint.uint16_t; affectIgnoreLockVirtualMods : Libc.Stdint.uint16_t; ignoreLockVirtualMods : Libc.Stdint.uint16_t; mouseKeysDfltBtn : Libc.Stdint.uint8_t; groupsWrap : Libc.Stdint.uint8_t; accessXOptions : Libc.Stdint.uint16_t; affectEnabledControls : Libc.Stdint.uint32_t; enabledControls : Libc.Stdint.uint32_t; changeControls : Libc.Stdint.uint32_t; repeatDelay : Libc.Stdint.uint16_t; repeatInterval : Libc.Stdint.uint16_t; slowKeysDelay : Libc.Stdint.uint16_t; debounceDelay : Libc.Stdint.uint16_t; mouseKeysDelay : Libc.Stdint.uint16_t; mouseKeysInterval : Libc.Stdint.uint16_t; mouseKeysTimeToMax : Libc.Stdint.uint16_t; mouseKeysMaxSpeed : Libc.Stdint.uint16_t; mouseKeysCurve : Libc.Stdint.int16_t; accessXTimeout : Libc.Stdint.uint16_t; accessXTimeoutMask : Libc.Stdint.uint32_t; accessXTimeoutValues : Libc.Stdint.uint32_t; accessXTimeoutOptionsMask : Libc.Stdint.uint16_t; accessXTimeoutOptionsValues : Libc.Stdint.uint16_t; perKeyRepeat : access Libc.Stdint.uint8_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:6974 pragma Import (C, xcb_xkb_set_controls, "xcb_xkb_set_controls"); function xcb_xkb_get_map_map_types_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7017 pragma Import (C, xcb_xkb_get_map_map_types_rtrn_length, "xcb_xkb_get_map_map_types_rtrn_length"); function xcb_xkb_get_map_map_types_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_type_iterator_t; -- /usr/include/xcb/xkb.h:7031 pragma Import (C, xcb_xkb_get_map_map_types_rtrn_iterator, "xcb_xkb_get_map_map_types_rtrn_iterator"); function xcb_xkb_get_map_map_syms_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7045 pragma Import (C, xcb_xkb_get_map_map_syms_rtrn_length, "xcb_xkb_get_map_map_syms_rtrn_length"); function xcb_xkb_get_map_map_syms_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_sym_map_iterator_t; -- /usr/include/xcb/xkb.h:7059 pragma Import (C, xcb_xkb_get_map_map_syms_rtrn_iterator, "xcb_xkb_get_map_map_syms_rtrn_iterator"); function xcb_xkb_get_map_map_acts_rtrn_count (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:7073 pragma Import (C, xcb_xkb_get_map_map_acts_rtrn_count, "xcb_xkb_get_map_map_acts_rtrn_count"); function xcb_xkb_get_map_map_acts_rtrn_count_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7086 pragma Import (C, xcb_xkb_get_map_map_acts_rtrn_count_length, "xcb_xkb_get_map_map_acts_rtrn_count_length"); function xcb_xkb_get_map_map_acts_rtrn_count_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7100 pragma Import (C, xcb_xkb_get_map_map_acts_rtrn_count_end, "xcb_xkb_get_map_map_acts_rtrn_count_end"); function xcb_xkb_get_map_map_alignment_pad (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:7114 pragma Import (C, xcb_xkb_get_map_map_alignment_pad, "xcb_xkb_get_map_map_alignment_pad"); function xcb_xkb_get_map_map_alignment_pad_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7127 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_length, "xcb_xkb_get_map_map_alignment_pad_length"); function xcb_xkb_get_map_map_alignment_pad_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7141 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_end, "xcb_xkb_get_map_map_alignment_pad_end"); function xcb_xkb_get_map_map_acts_rtrn_acts (S : System.Address) return access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:7155 pragma Import (C, xcb_xkb_get_map_map_acts_rtrn_acts, "xcb_xkb_get_map_map_acts_rtrn_acts"); function xcb_xkb_get_map_map_acts_rtrn_acts_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7168 pragma Import (C, xcb_xkb_get_map_map_acts_rtrn_acts_length, "xcb_xkb_get_map_map_acts_rtrn_acts_length"); function xcb_xkb_get_map_map_acts_rtrn_acts_iterator (R : System.Address; S : System.Address) return xcb_xkb_action_iterator_t; -- /usr/include/xcb/xkb.h:7182 pragma Import (C, xcb_xkb_get_map_map_acts_rtrn_acts_iterator, "xcb_xkb_get_map_map_acts_rtrn_acts_iterator"); function xcb_xkb_get_map_map_behaviors_rtrn (S : System.Address) return access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:7196 pragma Import (C, xcb_xkb_get_map_map_behaviors_rtrn, "xcb_xkb_get_map_map_behaviors_rtrn"); function xcb_xkb_get_map_map_behaviors_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7209 pragma Import (C, xcb_xkb_get_map_map_behaviors_rtrn_length, "xcb_xkb_get_map_map_behaviors_rtrn_length"); function xcb_xkb_get_map_map_behaviors_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_behavior_iterator_t; -- /usr/include/xcb/xkb.h:7223 pragma Import (C, xcb_xkb_get_map_map_behaviors_rtrn_iterator, "xcb_xkb_get_map_map_behaviors_rtrn_iterator"); function xcb_xkb_get_map_map_vmods_rtrn (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:7237 pragma Import (C, xcb_xkb_get_map_map_vmods_rtrn, "xcb_xkb_get_map_map_vmods_rtrn"); function xcb_xkb_get_map_map_vmods_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7250 pragma Import (C, xcb_xkb_get_map_map_vmods_rtrn_length, "xcb_xkb_get_map_map_vmods_rtrn_length"); function xcb_xkb_get_map_map_vmods_rtrn_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7264 pragma Import (C, xcb_xkb_get_map_map_vmods_rtrn_end, "xcb_xkb_get_map_map_vmods_rtrn_end"); function xcb_xkb_get_map_map_alignment_pad_2 (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:7278 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_2, "xcb_xkb_get_map_map_alignment_pad_2"); function xcb_xkb_get_map_map_alignment_pad_2_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7291 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_2_length, "xcb_xkb_get_map_map_alignment_pad_2_length"); function xcb_xkb_get_map_map_alignment_pad_2_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7305 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_2_end, "xcb_xkb_get_map_map_alignment_pad_2_end"); function xcb_xkb_get_map_map_explicit_rtrn (S : System.Address) return access xcb_xkb_set_explicit_t; -- /usr/include/xcb/xkb.h:7319 pragma Import (C, xcb_xkb_get_map_map_explicit_rtrn, "xcb_xkb_get_map_map_explicit_rtrn"); function xcb_xkb_get_map_map_explicit_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7332 pragma Import (C, xcb_xkb_get_map_map_explicit_rtrn_length, "xcb_xkb_get_map_map_explicit_rtrn_length"); function xcb_xkb_get_map_map_explicit_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_explicit_iterator_t; -- /usr/include/xcb/xkb.h:7346 pragma Import (C, xcb_xkb_get_map_map_explicit_rtrn_iterator, "xcb_xkb_get_map_map_explicit_rtrn_iterator"); function xcb_xkb_get_map_map_alignment_pad_3 (S : System.Address) return access Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:7360 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_3, "xcb_xkb_get_map_map_alignment_pad_3"); function xcb_xkb_get_map_map_alignment_pad_3_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7373 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_3_length, "xcb_xkb_get_map_map_alignment_pad_3_length"); function xcb_xkb_get_map_map_alignment_pad_3_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7387 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_3_end, "xcb_xkb_get_map_map_alignment_pad_3_end"); function xcb_xkb_get_map_map_modmap_rtrn (S : System.Address) return access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:7401 pragma Import (C, xcb_xkb_get_map_map_modmap_rtrn, "xcb_xkb_get_map_map_modmap_rtrn"); function xcb_xkb_get_map_map_modmap_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7414 pragma Import (C, xcb_xkb_get_map_map_modmap_rtrn_length, "xcb_xkb_get_map_map_modmap_rtrn_length"); function xcb_xkb_get_map_map_modmap_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_mod_map_iterator_t; -- /usr/include/xcb/xkb.h:7428 pragma Import (C, xcb_xkb_get_map_map_modmap_rtrn_iterator, "xcb_xkb_get_map_map_modmap_rtrn_iterator"); function xcb_xkb_get_map_map_alignment_pad_4 (S : System.Address) return access Libc.Stdint.uint16_t; -- /usr/include/xcb/xkb.h:7442 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_4, "xcb_xkb_get_map_map_alignment_pad_4"); function xcb_xkb_get_map_map_alignment_pad_4_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7455 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_4_length, "xcb_xkb_get_map_map_alignment_pad_4_length"); function xcb_xkb_get_map_map_alignment_pad_4_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7469 pragma Import (C, xcb_xkb_get_map_map_alignment_pad_4_end, "xcb_xkb_get_map_map_alignment_pad_4_end"); function xcb_xkb_get_map_map_vmodmap_rtrn (S : System.Address) return access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:7483 pragma Import (C, xcb_xkb_get_map_map_vmodmap_rtrn, "xcb_xkb_get_map_map_vmodmap_rtrn"); function xcb_xkb_get_map_map_vmodmap_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7496 pragma Import (C, xcb_xkb_get_map_map_vmodmap_rtrn_length, "xcb_xkb_get_map_map_vmodmap_rtrn_length"); function xcb_xkb_get_map_map_vmodmap_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_v_mod_map_iterator_t; -- /usr/include/xcb/xkb.h:7510 pragma Import (C, xcb_xkb_get_map_map_vmodmap_rtrn_iterator, "xcb_xkb_get_map_map_vmodmap_rtrn_iterator"); function xcb_xkb_get_map_map_serialize (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:7514 pragma Import (C, xcb_xkb_get_map_map_serialize, "xcb_xkb_get_map_map_serialize"); function xcb_xkb_get_map_map_unpack (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t; u_aux : access xcb_xkb_get_map_map_t) return int; -- /usr/include/xcb/xkb.h:7528 pragma Import (C, xcb_xkb_get_map_map_unpack, "xcb_xkb_get_map_map_unpack"); function xcb_xkb_get_map_map_sizeof (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t) return int; -- /usr/include/xcb/xkb.h:7542 pragma Import (C, xcb_xkb_get_map_map_sizeof, "xcb_xkb_get_map_map_sizeof"); function xcb_xkb_get_map (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; full : Libc.Stdint.uint16_t; partial : Libc.Stdint.uint16_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKeySym : XCB.XProto.xcb_keycode_t; nKeySyms : Libc.Stdint.uint8_t; firstKeyAction : XCB.XProto.xcb_keycode_t; nKeyActions : Libc.Stdint.uint8_t; firstKeyBehavior : XCB.XProto.xcb_keycode_t; nKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; firstKeyExplicit : XCB.XProto.xcb_keycode_t; nKeyExplicit : Libc.Stdint.uint8_t; firstModMapKey : XCB.XProto.xcb_keycode_t; nModMapKeys : Libc.Stdint.uint8_t; firstVModMapKey : XCB.XProto.xcb_keycode_t; nVModMapKeys : Libc.Stdint.uint8_t) return xcb_xkb_get_map_cookie_t; -- /usr/include/xcb/xkb.h:7591 pragma Import (C, xcb_xkb_get_map, "xcb_xkb_get_map"); function xcb_xkb_get_map_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; full : Libc.Stdint.uint16_t; partial : Libc.Stdint.uint16_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKeySym : XCB.XProto.xcb_keycode_t; nKeySyms : Libc.Stdint.uint8_t; firstKeyAction : XCB.XProto.xcb_keycode_t; nKeyActions : Libc.Stdint.uint8_t; firstKeyBehavior : XCB.XProto.xcb_keycode_t; nKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; firstKeyExplicit : XCB.XProto.xcb_keycode_t; nKeyExplicit : Libc.Stdint.uint8_t; firstModMapKey : XCB.XProto.xcb_keycode_t; nModMapKeys : Libc.Stdint.uint8_t; firstVModMapKey : XCB.XProto.xcb_keycode_t; nVModMapKeys : Libc.Stdint.uint8_t) return xcb_xkb_get_map_cookie_t; -- /usr/include/xcb/xkb.h:7651 pragma Import (C, xcb_xkb_get_map_unchecked, "xcb_xkb_get_map_unchecked"); function xcb_xkb_get_map_map (R : System.Address) return System.Address; -- /usr/include/xcb/xkb.h:7682 pragma Import (C, xcb_xkb_get_map_map, "xcb_xkb_get_map_map"); function xcb_xkb_get_map_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_map_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_map_reply_t; -- /usr/include/xcb/xkb.h:7711 pragma Import (C, xcb_xkb_get_map_reply, "xcb_xkb_get_map_reply"); function xcb_xkb_set_map_values_types_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7726 pragma Import (C, xcb_xkb_set_map_values_types_length, "xcb_xkb_set_map_values_types_length"); function xcb_xkb_set_map_values_types_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_key_type_iterator_t; -- /usr/include/xcb/xkb.h:7740 pragma Import (C, xcb_xkb_set_map_values_types_iterator, "xcb_xkb_set_map_values_types_iterator"); function xcb_xkb_set_map_values_syms_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7754 pragma Import (C, xcb_xkb_set_map_values_syms_length, "xcb_xkb_set_map_values_syms_length"); function xcb_xkb_set_map_values_syms_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_sym_map_iterator_t; -- /usr/include/xcb/xkb.h:7768 pragma Import (C, xcb_xkb_set_map_values_syms_iterator, "xcb_xkb_set_map_values_syms_iterator"); function xcb_xkb_set_map_values_actions_count (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:7782 pragma Import (C, xcb_xkb_set_map_values_actions_count, "xcb_xkb_set_map_values_actions_count"); function xcb_xkb_set_map_values_actions_count_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7795 pragma Import (C, xcb_xkb_set_map_values_actions_count_length, "xcb_xkb_set_map_values_actions_count_length"); function xcb_xkb_set_map_values_actions_count_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7809 pragma Import (C, xcb_xkb_set_map_values_actions_count_end, "xcb_xkb_set_map_values_actions_count_end"); function xcb_xkb_set_map_values_actions (S : System.Address) return access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:7823 pragma Import (C, xcb_xkb_set_map_values_actions, "xcb_xkb_set_map_values_actions"); function xcb_xkb_set_map_values_actions_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7836 pragma Import (C, xcb_xkb_set_map_values_actions_length, "xcb_xkb_set_map_values_actions_length"); function xcb_xkb_set_map_values_actions_iterator (R : System.Address; S : System.Address) return xcb_xkb_action_iterator_t; -- /usr/include/xcb/xkb.h:7850 pragma Import (C, xcb_xkb_set_map_values_actions_iterator, "xcb_xkb_set_map_values_actions_iterator"); function xcb_xkb_set_map_values_behaviors (S : System.Address) return access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:7864 pragma Import (C, xcb_xkb_set_map_values_behaviors, "xcb_xkb_set_map_values_behaviors"); function xcb_xkb_set_map_values_behaviors_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7877 pragma Import (C, xcb_xkb_set_map_values_behaviors_length, "xcb_xkb_set_map_values_behaviors_length"); function xcb_xkb_set_map_values_behaviors_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_behavior_iterator_t; -- /usr/include/xcb/xkb.h:7891 pragma Import (C, xcb_xkb_set_map_values_behaviors_iterator, "xcb_xkb_set_map_values_behaviors_iterator"); function xcb_xkb_set_map_values_vmods (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:7905 pragma Import (C, xcb_xkb_set_map_values_vmods, "xcb_xkb_set_map_values_vmods"); function xcb_xkb_set_map_values_vmods_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7918 pragma Import (C, xcb_xkb_set_map_values_vmods_length, "xcb_xkb_set_map_values_vmods_length"); function xcb_xkb_set_map_values_vmods_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:7932 pragma Import (C, xcb_xkb_set_map_values_vmods_end, "xcb_xkb_set_map_values_vmods_end"); function xcb_xkb_set_map_values_explicit (S : System.Address) return access xcb_xkb_set_explicit_t; -- /usr/include/xcb/xkb.h:7946 pragma Import (C, xcb_xkb_set_map_values_explicit, "xcb_xkb_set_map_values_explicit"); function xcb_xkb_set_map_values_explicit_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:7959 pragma Import (C, xcb_xkb_set_map_values_explicit_length, "xcb_xkb_set_map_values_explicit_length"); function xcb_xkb_set_map_values_explicit_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_explicit_iterator_t; -- /usr/include/xcb/xkb.h:7973 pragma Import (C, xcb_xkb_set_map_values_explicit_iterator, "xcb_xkb_set_map_values_explicit_iterator"); function xcb_xkb_set_map_values_modmap (S : System.Address) return access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:7987 pragma Import (C, xcb_xkb_set_map_values_modmap, "xcb_xkb_set_map_values_modmap"); function xcb_xkb_set_map_values_modmap_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:8000 pragma Import (C, xcb_xkb_set_map_values_modmap_length, "xcb_xkb_set_map_values_modmap_length"); function xcb_xkb_set_map_values_modmap_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_mod_map_iterator_t; -- /usr/include/xcb/xkb.h:8014 pragma Import (C, xcb_xkb_set_map_values_modmap_iterator, "xcb_xkb_set_map_values_modmap_iterator"); function xcb_xkb_set_map_values_vmodmap (S : System.Address) return access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:8028 pragma Import (C, xcb_xkb_set_map_values_vmodmap, "xcb_xkb_set_map_values_vmodmap"); function xcb_xkb_set_map_values_vmodmap_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:8041 pragma Import (C, xcb_xkb_set_map_values_vmodmap_length, "xcb_xkb_set_map_values_vmodmap_length"); function xcb_xkb_set_map_values_vmodmap_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_v_mod_map_iterator_t; -- /usr/include/xcb/xkb.h:8055 pragma Import (C, xcb_xkb_set_map_values_vmodmap_iterator, "xcb_xkb_set_map_values_vmodmap_iterator"); function xcb_xkb_set_map_values_serialize (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:8059 pragma Import (C, xcb_xkb_set_map_values_serialize, "xcb_xkb_set_map_values_serialize"); function xcb_xkb_set_map_values_unpack (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t; u_aux : access xcb_xkb_set_map_values_t) return int; -- /usr/include/xcb/xkb.h:8073 pragma Import (C, xcb_xkb_set_map_values_unpack, "xcb_xkb_set_map_values_unpack"); function xcb_xkb_set_map_values_sizeof (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t) return int; -- /usr/include/xcb/xkb.h:8087 pragma Import (C, xcb_xkb_set_map_values_sizeof, "xcb_xkb_set_map_values_sizeof"); function xcb_xkb_set_map_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; present : Libc.Stdint.uint16_t; flags : Libc.Stdint.uint16_t; minKeyCode : XCB.XProto.xcb_keycode_t; maxKeyCode : XCB.XProto.xcb_keycode_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKeySym : XCB.XProto.xcb_keycode_t; nKeySyms : Libc.Stdint.uint8_t; totalSyms : Libc.Stdint.uint16_t; firstKeyAction : XCB.XProto.xcb_keycode_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; firstKeyBehavior : XCB.XProto.xcb_keycode_t; nKeyBehaviors : Libc.Stdint.uint8_t; totalKeyBehaviors : Libc.Stdint.uint8_t; firstKeyExplicit : XCB.XProto.xcb_keycode_t; nKeyExplicit : Libc.Stdint.uint8_t; totalKeyExplicit : Libc.Stdint.uint8_t; firstModMapKey : XCB.XProto.xcb_keycode_t; nModMapKeys : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; firstVModMapKey : XCB.XProto.xcb_keycode_t; nVModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8148 pragma Import (C, xcb_xkb_set_map_checked, "xcb_xkb_set_map_checked"); function xcb_xkb_set_map (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; present : Libc.Stdint.uint16_t; flags : Libc.Stdint.uint16_t; minKeyCode : XCB.XProto.xcb_keycode_t; maxKeyCode : XCB.XProto.xcb_keycode_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKeySym : XCB.XProto.xcb_keycode_t; nKeySyms : Libc.Stdint.uint8_t; totalSyms : Libc.Stdint.uint16_t; firstKeyAction : XCB.XProto.xcb_keycode_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; firstKeyBehavior : XCB.XProto.xcb_keycode_t; nKeyBehaviors : Libc.Stdint.uint8_t; totalKeyBehaviors : Libc.Stdint.uint8_t; firstKeyExplicit : XCB.XProto.xcb_keycode_t; nKeyExplicit : Libc.Stdint.uint8_t; totalKeyExplicit : Libc.Stdint.uint8_t; firstModMapKey : XCB.XProto.xcb_keycode_t; nModMapKeys : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; firstVModMapKey : XCB.XProto.xcb_keycode_t; nVModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8223 pragma Import (C, xcb_xkb_set_map, "xcb_xkb_set_map"); function xcb_xkb_set_map_aux_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; present : Libc.Stdint.uint16_t; flags : Libc.Stdint.uint16_t; minKeyCode : XCB.XProto.xcb_keycode_t; maxKeyCode : XCB.XProto.xcb_keycode_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKeySym : XCB.XProto.xcb_keycode_t; nKeySyms : Libc.Stdint.uint8_t; totalSyms : Libc.Stdint.uint16_t; firstKeyAction : XCB.XProto.xcb_keycode_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; firstKeyBehavior : XCB.XProto.xcb_keycode_t; nKeyBehaviors : Libc.Stdint.uint8_t; totalKeyBehaviors : Libc.Stdint.uint8_t; firstKeyExplicit : XCB.XProto.xcb_keycode_t; nKeyExplicit : Libc.Stdint.uint8_t; totalKeyExplicit : Libc.Stdint.uint8_t; firstModMapKey : XCB.XProto.xcb_keycode_t; nModMapKeys : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; firstVModMapKey : XCB.XProto.xcb_keycode_t; nVModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8301 pragma Import (C, xcb_xkb_set_map_aux_checked, "xcb_xkb_set_map_aux_checked"); function xcb_xkb_set_map_aux (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; present : Libc.Stdint.uint16_t; flags : Libc.Stdint.uint16_t; minKeyCode : XCB.XProto.xcb_keycode_t; maxKeyCode : XCB.XProto.xcb_keycode_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKeySym : XCB.XProto.xcb_keycode_t; nKeySyms : Libc.Stdint.uint8_t; totalSyms : Libc.Stdint.uint16_t; firstKeyAction : XCB.XProto.xcb_keycode_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; firstKeyBehavior : XCB.XProto.xcb_keycode_t; nKeyBehaviors : Libc.Stdint.uint8_t; totalKeyBehaviors : Libc.Stdint.uint8_t; firstKeyExplicit : XCB.XProto.xcb_keycode_t; nKeyExplicit : Libc.Stdint.uint8_t; totalKeyExplicit : Libc.Stdint.uint8_t; firstModMapKey : XCB.XProto.xcb_keycode_t; nModMapKeys : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; firstVModMapKey : XCB.XProto.xcb_keycode_t; nVModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8376 pragma Import (C, xcb_xkb_set_map_aux, "xcb_xkb_set_map_aux"); function xcb_xkb_get_compat_map_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:8406 pragma Import (C, xcb_xkb_get_compat_map_sizeof, "xcb_xkb_get_compat_map_sizeof"); function xcb_xkb_get_compat_map (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; groups : Libc.Stdint.uint8_t; getAllSI : Libc.Stdint.uint8_t; firstSI : Libc.Stdint.uint16_t; nSI : Libc.Stdint.uint16_t) return xcb_xkb_get_compat_map_cookie_t; -- /usr/include/xcb/xkb.h:8432 pragma Import (C, xcb_xkb_get_compat_map, "xcb_xkb_get_compat_map"); function xcb_xkb_get_compat_map_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; groups : Libc.Stdint.uint8_t; getAllSI : Libc.Stdint.uint8_t; firstSI : Libc.Stdint.uint16_t; nSI : Libc.Stdint.uint16_t) return xcb_xkb_get_compat_map_cookie_t; -- /usr/include/xcb/xkb.h:8466 pragma Import (C, xcb_xkb_get_compat_map_unchecked, "xcb_xkb_get_compat_map_unchecked"); function xcb_xkb_get_compat_map_si_rtrn (R : System.Address) return access xcb_xkb_sym_interpret_t; -- /usr/include/xcb/xkb.h:8484 pragma Import (C, xcb_xkb_get_compat_map_si_rtrn, "xcb_xkb_get_compat_map_si_rtrn"); function xcb_xkb_get_compat_map_si_rtrn_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:8497 pragma Import (C, xcb_xkb_get_compat_map_si_rtrn_length, "xcb_xkb_get_compat_map_si_rtrn_length"); function xcb_xkb_get_compat_map_si_rtrn_iterator (R : System.Address) return xcb_xkb_sym_interpret_iterator_t; -- /usr/include/xcb/xkb.h:8510 pragma Import (C, xcb_xkb_get_compat_map_si_rtrn_iterator, "xcb_xkb_get_compat_map_si_rtrn_iterator"); function xcb_xkb_get_compat_map_group_rtrn (R : System.Address) return access xcb_xkb_mod_def_t; -- /usr/include/xcb/xkb.h:8523 pragma Import (C, xcb_xkb_get_compat_map_group_rtrn, "xcb_xkb_get_compat_map_group_rtrn"); function xcb_xkb_get_compat_map_group_rtrn_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:8536 pragma Import (C, xcb_xkb_get_compat_map_group_rtrn_length, "xcb_xkb_get_compat_map_group_rtrn_length"); function xcb_xkb_get_compat_map_group_rtrn_iterator (R : System.Address) return xcb_xkb_mod_def_iterator_t; -- /usr/include/xcb/xkb.h:8549 pragma Import (C, xcb_xkb_get_compat_map_group_rtrn_iterator, "xcb_xkb_get_compat_map_group_rtrn_iterator"); function xcb_xkb_get_compat_map_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_compat_map_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_compat_map_reply_t; -- /usr/include/xcb/xkb.h:8578 pragma Import (C, xcb_xkb_get_compat_map_reply, "xcb_xkb_get_compat_map_reply"); function xcb_xkb_set_compat_map_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:8583 pragma Import (C, xcb_xkb_set_compat_map_sizeof, "xcb_xkb_set_compat_map_sizeof"); function xcb_xkb_set_compat_map_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; recomputeActions : Libc.Stdint.uint8_t; truncateSI : Libc.Stdint.uint8_t; groups : Libc.Stdint.uint8_t; firstSI : Libc.Stdint.uint16_t; nSI : Libc.Stdint.uint16_t; si : System.Address; groupMaps : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8615 pragma Import (C, xcb_xkb_set_compat_map_checked, "xcb_xkb_set_compat_map_checked"); function xcb_xkb_set_compat_map (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; recomputeActions : Libc.Stdint.uint8_t; truncateSI : Libc.Stdint.uint8_t; groups : Libc.Stdint.uint8_t; firstSI : Libc.Stdint.uint16_t; nSI : Libc.Stdint.uint16_t; si : System.Address; groupMaps : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8652 pragma Import (C, xcb_xkb_set_compat_map, "xcb_xkb_set_compat_map"); function xcb_xkb_get_indicator_state (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t) return xcb_xkb_get_indicator_state_cookie_t; -- /usr/include/xcb/xkb.h:8682 pragma Import (C, xcb_xkb_get_indicator_state, "xcb_xkb_get_indicator_state"); function xcb_xkb_get_indicator_state_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t) return xcb_xkb_get_indicator_state_cookie_t; -- /usr/include/xcb/xkb.h:8708 pragma Import (C, xcb_xkb_get_indicator_state_unchecked, "xcb_xkb_get_indicator_state_unchecked"); function xcb_xkb_get_indicator_state_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_indicator_state_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_indicator_state_reply_t; -- /usr/include/xcb/xkb.h:8738 pragma Import (C, xcb_xkb_get_indicator_state_reply, "xcb_xkb_get_indicator_state_reply"); function xcb_xkb_get_indicator_map_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:8743 pragma Import (C, xcb_xkb_get_indicator_map_sizeof, "xcb_xkb_get_indicator_map_sizeof"); function xcb_xkb_get_indicator_map (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; which : Libc.Stdint.uint32_t) return xcb_xkb_get_indicator_map_cookie_t; -- /usr/include/xcb/xkb.h:8766 pragma Import (C, xcb_xkb_get_indicator_map, "xcb_xkb_get_indicator_map"); function xcb_xkb_get_indicator_map_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; which : Libc.Stdint.uint32_t) return xcb_xkb_get_indicator_map_cookie_t; -- /usr/include/xcb/xkb.h:8794 pragma Import (C, xcb_xkb_get_indicator_map_unchecked, "xcb_xkb_get_indicator_map_unchecked"); function xcb_xkb_get_indicator_map_maps (R : System.Address) return access xcb_xkb_indicator_map_t; -- /usr/include/xcb/xkb.h:8809 pragma Import (C, xcb_xkb_get_indicator_map_maps, "xcb_xkb_get_indicator_map_maps"); function xcb_xkb_get_indicator_map_maps_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:8822 pragma Import (C, xcb_xkb_get_indicator_map_maps_length, "xcb_xkb_get_indicator_map_maps_length"); function xcb_xkb_get_indicator_map_maps_iterator (R : System.Address) return xcb_xkb_indicator_map_iterator_t; -- /usr/include/xcb/xkb.h:8835 pragma Import (C, xcb_xkb_get_indicator_map_maps_iterator, "xcb_xkb_get_indicator_map_maps_iterator"); function xcb_xkb_get_indicator_map_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_indicator_map_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_indicator_map_reply_t; -- /usr/include/xcb/xkb.h:8864 pragma Import (C, xcb_xkb_get_indicator_map_reply, "xcb_xkb_get_indicator_map_reply"); function xcb_xkb_set_indicator_map_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:8869 pragma Import (C, xcb_xkb_set_indicator_map_sizeof, "xcb_xkb_set_indicator_map_sizeof"); function xcb_xkb_set_indicator_map_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; which : Libc.Stdint.uint32_t; maps : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8896 pragma Import (C, xcb_xkb_set_indicator_map_checked, "xcb_xkb_set_indicator_map_checked"); function xcb_xkb_set_indicator_map (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; which : Libc.Stdint.uint32_t; maps : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:8923 pragma Import (C, xcb_xkb_set_indicator_map, "xcb_xkb_set_indicator_map"); function xcb_xkb_get_named_indicator (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; ledClass : xcb_xkb_led_class_spec_t; ledID : xcb_xkb_id_spec_t; indicator : XCB.XProto.xcb_atom_t) return xcb_xkb_get_named_indicator_cookie_t; -- /usr/include/xcb/xkb.h:8951 pragma Import (C, xcb_xkb_get_named_indicator, "xcb_xkb_get_named_indicator"); function xcb_xkb_get_named_indicator_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; ledClass : xcb_xkb_led_class_spec_t; ledID : xcb_xkb_id_spec_t; indicator : XCB.XProto.xcb_atom_t) return xcb_xkb_get_named_indicator_cookie_t; -- /usr/include/xcb/xkb.h:8983 pragma Import (C, xcb_xkb_get_named_indicator_unchecked, "xcb_xkb_get_named_indicator_unchecked"); function xcb_xkb_get_named_indicator_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_named_indicator_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_named_indicator_reply_t; -- /usr/include/xcb/xkb.h:9016 pragma Import (C, xcb_xkb_get_named_indicator_reply, "xcb_xkb_get_named_indicator_reply"); function xcb_xkb_set_named_indicator_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; ledClass : xcb_xkb_led_class_spec_t; ledID : xcb_xkb_id_spec_t; indicator : XCB.XProto.xcb_atom_t; setState : Libc.Stdint.uint8_t; on : Libc.Stdint.uint8_t; setMap : Libc.Stdint.uint8_t; createMap : Libc.Stdint.uint8_t; map_flags : Libc.Stdint.uint8_t; map_whichGroups : Libc.Stdint.uint8_t; map_groups : Libc.Stdint.uint8_t; map_whichMods : Libc.Stdint.uint8_t; map_realMods : Libc.Stdint.uint8_t; map_vmods : Libc.Stdint.uint16_t; map_ctrls : Libc.Stdint.uint32_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:9057 pragma Import (C, xcb_xkb_set_named_indicator_checked, "xcb_xkb_set_named_indicator_checked"); function xcb_xkb_set_named_indicator (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; ledClass : xcb_xkb_led_class_spec_t; ledID : xcb_xkb_id_spec_t; indicator : XCB.XProto.xcb_atom_t; setState : Libc.Stdint.uint8_t; on : Libc.Stdint.uint8_t; setMap : Libc.Stdint.uint8_t; createMap : Libc.Stdint.uint8_t; map_flags : Libc.Stdint.uint8_t; map_whichGroups : Libc.Stdint.uint8_t; map_groups : Libc.Stdint.uint8_t; map_whichMods : Libc.Stdint.uint8_t; map_realMods : Libc.Stdint.uint8_t; map_vmods : Libc.Stdint.uint16_t; map_ctrls : Libc.Stdint.uint32_t) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:9108 pragma Import (C, xcb_xkb_set_named_indicator, "xcb_xkb_set_named_indicator"); function xcb_xkb_get_names_value_list_type_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9136 pragma Import (C, xcb_xkb_get_names_value_list_type_names, "xcb_xkb_get_names_value_list_type_names"); function xcb_xkb_get_names_value_list_type_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9149 pragma Import (C, xcb_xkb_get_names_value_list_type_names_length, "xcb_xkb_get_names_value_list_type_names_length"); function xcb_xkb_get_names_value_list_type_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9163 pragma Import (C, xcb_xkb_get_names_value_list_type_names_end, "xcb_xkb_get_names_value_list_type_names_end"); function xcb_xkb_get_names_value_list_n_levels_per_type (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:9177 pragma Import (C, xcb_xkb_get_names_value_list_n_levels_per_type, "xcb_xkb_get_names_value_list_n_levels_per_type"); function xcb_xkb_get_names_value_list_n_levels_per_type_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9190 pragma Import (C, xcb_xkb_get_names_value_list_n_levels_per_type_length, "xcb_xkb_get_names_value_list_n_levels_per_type_length"); function xcb_xkb_get_names_value_list_n_levels_per_type_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9204 pragma Import (C, xcb_xkb_get_names_value_list_n_levels_per_type_end, "xcb_xkb_get_names_value_list_n_levels_per_type_end"); function xcb_xkb_get_names_value_list_alignment_pad (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:9218 pragma Import (C, xcb_xkb_get_names_value_list_alignment_pad, "xcb_xkb_get_names_value_list_alignment_pad"); function xcb_xkb_get_names_value_list_alignment_pad_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9231 pragma Import (C, xcb_xkb_get_names_value_list_alignment_pad_length, "xcb_xkb_get_names_value_list_alignment_pad_length"); function xcb_xkb_get_names_value_list_alignment_pad_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9245 pragma Import (C, xcb_xkb_get_names_value_list_alignment_pad_end, "xcb_xkb_get_names_value_list_alignment_pad_end"); function xcb_xkb_get_names_value_list_kt_level_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9259 pragma Import (C, xcb_xkb_get_names_value_list_kt_level_names, "xcb_xkb_get_names_value_list_kt_level_names"); function xcb_xkb_get_names_value_list_kt_level_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9272 pragma Import (C, xcb_xkb_get_names_value_list_kt_level_names_length, "xcb_xkb_get_names_value_list_kt_level_names_length"); function xcb_xkb_get_names_value_list_kt_level_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9286 pragma Import (C, xcb_xkb_get_names_value_list_kt_level_names_end, "xcb_xkb_get_names_value_list_kt_level_names_end"); function xcb_xkb_get_names_value_list_indicator_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9300 pragma Import (C, xcb_xkb_get_names_value_list_indicator_names, "xcb_xkb_get_names_value_list_indicator_names"); function xcb_xkb_get_names_value_list_indicator_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9313 pragma Import (C, xcb_xkb_get_names_value_list_indicator_names_length, "xcb_xkb_get_names_value_list_indicator_names_length"); function xcb_xkb_get_names_value_list_indicator_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9327 pragma Import (C, xcb_xkb_get_names_value_list_indicator_names_end, "xcb_xkb_get_names_value_list_indicator_names_end"); function xcb_xkb_get_names_value_list_virtual_mod_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9341 pragma Import (C, xcb_xkb_get_names_value_list_virtual_mod_names, "xcb_xkb_get_names_value_list_virtual_mod_names"); function xcb_xkb_get_names_value_list_virtual_mod_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9354 pragma Import (C, xcb_xkb_get_names_value_list_virtual_mod_names_length, "xcb_xkb_get_names_value_list_virtual_mod_names_length"); function xcb_xkb_get_names_value_list_virtual_mod_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9368 pragma Import (C, xcb_xkb_get_names_value_list_virtual_mod_names_end, "xcb_xkb_get_names_value_list_virtual_mod_names_end"); function xcb_xkb_get_names_value_list_groups (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9382 pragma Import (C, xcb_xkb_get_names_value_list_groups, "xcb_xkb_get_names_value_list_groups"); function xcb_xkb_get_names_value_list_groups_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9395 pragma Import (C, xcb_xkb_get_names_value_list_groups_length, "xcb_xkb_get_names_value_list_groups_length"); function xcb_xkb_get_names_value_list_groups_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9409 pragma Import (C, xcb_xkb_get_names_value_list_groups_end, "xcb_xkb_get_names_value_list_groups_end"); function xcb_xkb_get_names_value_list_key_names (S : System.Address) return access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:9423 pragma Import (C, xcb_xkb_get_names_value_list_key_names, "xcb_xkb_get_names_value_list_key_names"); function xcb_xkb_get_names_value_list_key_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9436 pragma Import (C, xcb_xkb_get_names_value_list_key_names_length, "xcb_xkb_get_names_value_list_key_names_length"); function xcb_xkb_get_names_value_list_key_names_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_name_iterator_t; -- /usr/include/xcb/xkb.h:9450 pragma Import (C, xcb_xkb_get_names_value_list_key_names_iterator, "xcb_xkb_get_names_value_list_key_names_iterator"); function xcb_xkb_get_names_value_list_key_aliases (S : System.Address) return access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:9464 pragma Import (C, xcb_xkb_get_names_value_list_key_aliases, "xcb_xkb_get_names_value_list_key_aliases"); function xcb_xkb_get_names_value_list_key_aliases_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9477 pragma Import (C, xcb_xkb_get_names_value_list_key_aliases_length, "xcb_xkb_get_names_value_list_key_aliases_length"); function xcb_xkb_get_names_value_list_key_aliases_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_alias_iterator_t; -- /usr/include/xcb/xkb.h:9491 pragma Import (C, xcb_xkb_get_names_value_list_key_aliases_iterator, "xcb_xkb_get_names_value_list_key_aliases_iterator"); function xcb_xkb_get_names_value_list_radio_group_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9505 pragma Import (C, xcb_xkb_get_names_value_list_radio_group_names, "xcb_xkb_get_names_value_list_radio_group_names"); function xcb_xkb_get_names_value_list_radio_group_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9518 pragma Import (C, xcb_xkb_get_names_value_list_radio_group_names_length, "xcb_xkb_get_names_value_list_radio_group_names_length"); function xcb_xkb_get_names_value_list_radio_group_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9532 pragma Import (C, xcb_xkb_get_names_value_list_radio_group_names_end, "xcb_xkb_get_names_value_list_radio_group_names_end"); function xcb_xkb_get_names_value_list_serialize (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:9536 pragma Import (C, xcb_xkb_get_names_value_list_serialize, "xcb_xkb_get_names_value_list_serialize"); function xcb_xkb_get_names_value_list_unpack (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t; u_aux : access xcb_xkb_get_names_value_list_t) return int; -- /usr/include/xcb/xkb.h:9548 pragma Import (C, xcb_xkb_get_names_value_list_unpack, "xcb_xkb_get_names_value_list_unpack"); function xcb_xkb_get_names_value_list_sizeof (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t) return int; -- /usr/include/xcb/xkb.h:9560 pragma Import (C, xcb_xkb_get_names_value_list_sizeof, "xcb_xkb_get_names_value_list_sizeof"); function xcb_xkb_get_names (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; which : Libc.Stdint.uint32_t) return xcb_xkb_get_names_cookie_t; -- /usr/include/xcb/xkb.h:9591 pragma Import (C, xcb_xkb_get_names, "xcb_xkb_get_names"); function xcb_xkb_get_names_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; which : Libc.Stdint.uint32_t) return xcb_xkb_get_names_cookie_t; -- /usr/include/xcb/xkb.h:9619 pragma Import (C, xcb_xkb_get_names_unchecked, "xcb_xkb_get_names_unchecked"); function xcb_xkb_get_names_value_list (R : System.Address) return System.Address; -- /usr/include/xcb/xkb.h:9634 pragma Import (C, xcb_xkb_get_names_value_list, "xcb_xkb_get_names_value_list"); function xcb_xkb_get_names_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_names_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_names_reply_t; -- /usr/include/xcb/xkb.h:9663 pragma Import (C, xcb_xkb_get_names_reply, "xcb_xkb_get_names_reply"); function xcb_xkb_set_names_values_type_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9678 pragma Import (C, xcb_xkb_set_names_values_type_names, "xcb_xkb_set_names_values_type_names"); function xcb_xkb_set_names_values_type_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9691 pragma Import (C, xcb_xkb_set_names_values_type_names_length, "xcb_xkb_set_names_values_type_names_length"); function xcb_xkb_set_names_values_type_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9705 pragma Import (C, xcb_xkb_set_names_values_type_names_end, "xcb_xkb_set_names_values_type_names_end"); function xcb_xkb_set_names_values_n_levels_per_type (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:9719 pragma Import (C, xcb_xkb_set_names_values_n_levels_per_type, "xcb_xkb_set_names_values_n_levels_per_type"); function xcb_xkb_set_names_values_n_levels_per_type_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9732 pragma Import (C, xcb_xkb_set_names_values_n_levels_per_type_length, "xcb_xkb_set_names_values_n_levels_per_type_length"); function xcb_xkb_set_names_values_n_levels_per_type_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9746 pragma Import (C, xcb_xkb_set_names_values_n_levels_per_type_end, "xcb_xkb_set_names_values_n_levels_per_type_end"); function xcb_xkb_set_names_values_kt_level_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9760 pragma Import (C, xcb_xkb_set_names_values_kt_level_names, "xcb_xkb_set_names_values_kt_level_names"); function xcb_xkb_set_names_values_kt_level_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9773 pragma Import (C, xcb_xkb_set_names_values_kt_level_names_length, "xcb_xkb_set_names_values_kt_level_names_length"); function xcb_xkb_set_names_values_kt_level_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9787 pragma Import (C, xcb_xkb_set_names_values_kt_level_names_end, "xcb_xkb_set_names_values_kt_level_names_end"); function xcb_xkb_set_names_values_indicator_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9801 pragma Import (C, xcb_xkb_set_names_values_indicator_names, "xcb_xkb_set_names_values_indicator_names"); function xcb_xkb_set_names_values_indicator_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9814 pragma Import (C, xcb_xkb_set_names_values_indicator_names_length, "xcb_xkb_set_names_values_indicator_names_length"); function xcb_xkb_set_names_values_indicator_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9828 pragma Import (C, xcb_xkb_set_names_values_indicator_names_end, "xcb_xkb_set_names_values_indicator_names_end"); function xcb_xkb_set_names_values_virtual_mod_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9842 pragma Import (C, xcb_xkb_set_names_values_virtual_mod_names, "xcb_xkb_set_names_values_virtual_mod_names"); function xcb_xkb_set_names_values_virtual_mod_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9855 pragma Import (C, xcb_xkb_set_names_values_virtual_mod_names_length, "xcb_xkb_set_names_values_virtual_mod_names_length"); function xcb_xkb_set_names_values_virtual_mod_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9869 pragma Import (C, xcb_xkb_set_names_values_virtual_mod_names_end, "xcb_xkb_set_names_values_virtual_mod_names_end"); function xcb_xkb_set_names_values_groups (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:9883 pragma Import (C, xcb_xkb_set_names_values_groups, "xcb_xkb_set_names_values_groups"); function xcb_xkb_set_names_values_groups_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9896 pragma Import (C, xcb_xkb_set_names_values_groups_length, "xcb_xkb_set_names_values_groups_length"); function xcb_xkb_set_names_values_groups_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:9910 pragma Import (C, xcb_xkb_set_names_values_groups_end, "xcb_xkb_set_names_values_groups_end"); function xcb_xkb_set_names_values_key_names (S : System.Address) return access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:9924 pragma Import (C, xcb_xkb_set_names_values_key_names, "xcb_xkb_set_names_values_key_names"); function xcb_xkb_set_names_values_key_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9937 pragma Import (C, xcb_xkb_set_names_values_key_names_length, "xcb_xkb_set_names_values_key_names_length"); function xcb_xkb_set_names_values_key_names_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_name_iterator_t; -- /usr/include/xcb/xkb.h:9951 pragma Import (C, xcb_xkb_set_names_values_key_names_iterator, "xcb_xkb_set_names_values_key_names_iterator"); function xcb_xkb_set_names_values_key_aliases (S : System.Address) return access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:9965 pragma Import (C, xcb_xkb_set_names_values_key_aliases, "xcb_xkb_set_names_values_key_aliases"); function xcb_xkb_set_names_values_key_aliases_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:9978 pragma Import (C, xcb_xkb_set_names_values_key_aliases_length, "xcb_xkb_set_names_values_key_aliases_length"); function xcb_xkb_set_names_values_key_aliases_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_alias_iterator_t; -- /usr/include/xcb/xkb.h:9992 pragma Import (C, xcb_xkb_set_names_values_key_aliases_iterator, "xcb_xkb_set_names_values_key_aliases_iterator"); function xcb_xkb_set_names_values_radio_group_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:10006 pragma Import (C, xcb_xkb_set_names_values_radio_group_names, "xcb_xkb_set_names_values_radio_group_names"); function xcb_xkb_set_names_values_radio_group_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10019 pragma Import (C, xcb_xkb_set_names_values_radio_group_names_length, "xcb_xkb_set_names_values_radio_group_names_length"); function xcb_xkb_set_names_values_radio_group_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:10033 pragma Import (C, xcb_xkb_set_names_values_radio_group_names_end, "xcb_xkb_set_names_values_radio_group_names_end"); function xcb_xkb_set_names_values_serialize (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:10037 pragma Import (C, xcb_xkb_set_names_values_serialize, "xcb_xkb_set_names_values_serialize"); function xcb_xkb_set_names_values_unpack (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t; u_aux : access xcb_xkb_set_names_values_t) return int; -- /usr/include/xcb/xkb.h:10050 pragma Import (C, xcb_xkb_set_names_values_unpack, "xcb_xkb_set_names_values_unpack"); function xcb_xkb_set_names_values_sizeof (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t) return int; -- /usr/include/xcb/xkb.h:10063 pragma Import (C, xcb_xkb_set_names_values_sizeof, "xcb_xkb_set_names_values_sizeof"); function xcb_xkb_set_names_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; virtualMods : Libc.Stdint.uint16_t; which : Libc.Stdint.uint32_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKTLevelt : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; groupNames : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; firstKey : XCB.XProto.xcb_keycode_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; totalKTLevelNames : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:10111 pragma Import (C, xcb_xkb_set_names_checked, "xcb_xkb_set_names_checked"); function xcb_xkb_set_names (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; virtualMods : Libc.Stdint.uint16_t; which : Libc.Stdint.uint32_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKTLevelt : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; groupNames : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; firstKey : XCB.XProto.xcb_keycode_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; totalKTLevelNames : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:10162 pragma Import (C, xcb_xkb_set_names, "xcb_xkb_set_names"); function xcb_xkb_set_names_aux_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; virtualMods : Libc.Stdint.uint16_t; which : Libc.Stdint.uint32_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKTLevelt : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; groupNames : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; firstKey : XCB.XProto.xcb_keycode_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; totalKTLevelNames : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:10216 pragma Import (C, xcb_xkb_set_names_aux_checked, "xcb_xkb_set_names_aux_checked"); function xcb_xkb_set_names_aux (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; virtualMods : Libc.Stdint.uint16_t; which : Libc.Stdint.uint32_t; firstType : Libc.Stdint.uint8_t; nTypes : Libc.Stdint.uint8_t; firstKTLevelt : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint8_t; indicators : Libc.Stdint.uint32_t; groupNames : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; firstKey : XCB.XProto.xcb_keycode_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; totalKTLevelNames : Libc.Stdint.uint16_t; values : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:10267 pragma Import (C, xcb_xkb_set_names_aux, "xcb_xkb_set_names_aux"); function xcb_xkb_per_client_flags (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; change : Libc.Stdint.uint32_t; value : Libc.Stdint.uint32_t; ctrlsToChange : Libc.Stdint.uint32_t; autoCtrls : Libc.Stdint.uint32_t; autoCtrlsValues : Libc.Stdint.uint32_t) return xcb_xkb_per_client_flags_cookie_t; -- /usr/include/xcb/xkb.h:10309 pragma Import (C, xcb_xkb_per_client_flags, "xcb_xkb_per_client_flags"); function xcb_xkb_per_client_flags_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; change : Libc.Stdint.uint32_t; value : Libc.Stdint.uint32_t; ctrlsToChange : Libc.Stdint.uint32_t; autoCtrls : Libc.Stdint.uint32_t; autoCtrlsValues : Libc.Stdint.uint32_t) return xcb_xkb_per_client_flags_cookie_t; -- /usr/include/xcb/xkb.h:10345 pragma Import (C, xcb_xkb_per_client_flags_unchecked, "xcb_xkb_per_client_flags_unchecked"); function xcb_xkb_per_client_flags_reply (c : xcb_connection_t_access; cookie : xcb_xkb_per_client_flags_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_per_client_flags_reply_t; -- /usr/include/xcb/xkb.h:10380 pragma Import (C, xcb_xkb_per_client_flags_reply, "xcb_xkb_per_client_flags_reply"); function xcb_xkb_list_components_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:10385 pragma Import (C, xcb_xkb_list_components_sizeof, "xcb_xkb_list_components_sizeof"); function xcb_xkb_list_components (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; maxNames : Libc.Stdint.uint16_t) return xcb_xkb_list_components_cookie_t; -- /usr/include/xcb/xkb.h:10408 pragma Import (C, xcb_xkb_list_components, "xcb_xkb_list_components"); function xcb_xkb_list_components_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; maxNames : Libc.Stdint.uint16_t) return xcb_xkb_list_components_cookie_t; -- /usr/include/xcb/xkb.h:10436 pragma Import (C, xcb_xkb_list_components_unchecked, "xcb_xkb_list_components_unchecked"); function xcb_xkb_list_components_keymaps_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:10451 pragma Import (C, xcb_xkb_list_components_keymaps_length, "xcb_xkb_list_components_keymaps_length"); function xcb_xkb_list_components_keymaps_iterator (R : System.Address) return xcb_xkb_listing_iterator_t; -- /usr/include/xcb/xkb.h:10464 pragma Import (C, xcb_xkb_list_components_keymaps_iterator, "xcb_xkb_list_components_keymaps_iterator"); function xcb_xkb_list_components_keycodes_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:10477 pragma Import (C, xcb_xkb_list_components_keycodes_length, "xcb_xkb_list_components_keycodes_length"); function xcb_xkb_list_components_keycodes_iterator (R : System.Address) return xcb_xkb_listing_iterator_t; -- /usr/include/xcb/xkb.h:10490 pragma Import (C, xcb_xkb_list_components_keycodes_iterator, "xcb_xkb_list_components_keycodes_iterator"); function xcb_xkb_list_components_types_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:10503 pragma Import (C, xcb_xkb_list_components_types_length, "xcb_xkb_list_components_types_length"); function xcb_xkb_list_components_types_iterator (R : System.Address) return xcb_xkb_listing_iterator_t; -- /usr/include/xcb/xkb.h:10516 pragma Import (C, xcb_xkb_list_components_types_iterator, "xcb_xkb_list_components_types_iterator"); function xcb_xkb_list_components_compat_maps_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:10529 pragma Import (C, xcb_xkb_list_components_compat_maps_length, "xcb_xkb_list_components_compat_maps_length"); function xcb_xkb_list_components_compat_maps_iterator (R : System.Address) return xcb_xkb_listing_iterator_t; -- /usr/include/xcb/xkb.h:10542 pragma Import (C, xcb_xkb_list_components_compat_maps_iterator, "xcb_xkb_list_components_compat_maps_iterator"); function xcb_xkb_list_components_symbols_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:10555 pragma Import (C, xcb_xkb_list_components_symbols_length, "xcb_xkb_list_components_symbols_length"); function xcb_xkb_list_components_symbols_iterator (R : System.Address) return xcb_xkb_listing_iterator_t; -- /usr/include/xcb/xkb.h:10568 pragma Import (C, xcb_xkb_list_components_symbols_iterator, "xcb_xkb_list_components_symbols_iterator"); function xcb_xkb_list_components_geometries_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:10581 pragma Import (C, xcb_xkb_list_components_geometries_length, "xcb_xkb_list_components_geometries_length"); function xcb_xkb_list_components_geometries_iterator (R : System.Address) return xcb_xkb_listing_iterator_t; -- /usr/include/xcb/xkb.h:10594 pragma Import (C, xcb_xkb_list_components_geometries_iterator, "xcb_xkb_list_components_geometries_iterator"); function xcb_xkb_list_components_reply (c : xcb_connection_t_access; cookie : xcb_xkb_list_components_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_list_components_reply_t; -- /usr/include/xcb/xkb.h:10623 pragma Import (C, xcb_xkb_list_components_reply, "xcb_xkb_list_components_reply"); function xcb_xkb_get_kbd_by_name_replies_types_map_types_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10638 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_types_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_types_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_types_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_type_iterator_t; -- /usr/include/xcb/xkb.h:10652 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_types_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_types_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_syms_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10666 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_syms_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_syms_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_syms_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_sym_map_iterator_t; -- /usr/include/xcb/xkb.h:10680 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_syms_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_syms_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:10694 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count, "xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count"); function xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10707 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count_length, "xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:10721 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count_end, "xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_count_end"); function xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts (S : System.Address) return access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:10735 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts, "xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts"); function xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10748 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts_length, "xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts_iterator (R : System.Address; S : System.Address) return xcb_xkb_action_iterator_t; -- /usr/include/xcb/xkb.h:10762 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_acts_rtrn_acts_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn (S : System.Address) return access xcb_xkb_set_behavior_t; -- /usr/include/xcb/xkb.h:10776 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn, "xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn"); function xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10789 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_behavior_iterator_t; -- /usr/include/xcb/xkb.h:10803 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_behaviors_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:10817 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn, "xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn"); function xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10830 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:10844 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn_end, "xcb_xkb_get_kbd_by_name_replies_types_map_vmods_rtrn_end"); function xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn (S : System.Address) return access xcb_xkb_set_explicit_t; -- /usr/include/xcb/xkb.h:10858 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn, "xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn"); function xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10871 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_set_explicit_iterator_t; -- /usr/include/xcb/xkb.h:10885 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_explicit_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn (S : System.Address) return access xcb_xkb_key_mod_map_t; -- /usr/include/xcb/xkb.h:10899 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn, "xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn"); function xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10912 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_mod_map_iterator_t; -- /usr/include/xcb/xkb.h:10926 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_modmap_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn (S : System.Address) return access xcb_xkb_key_v_mod_map_t; -- /usr/include/xcb/xkb.h:10940 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn, "xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn"); function xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:10953 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_v_mod_map_iterator_t; -- /usr/include/xcb/xkb.h:10967 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_types_map_vmodmap_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_types_map_serialize (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:10971 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_serialize, "xcb_xkb_get_kbd_by_name_replies_types_map_serialize"); function xcb_xkb_get_kbd_by_name_replies_types_map_unpack (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t; u_aux : access xcb_xkb_get_kbd_by_name_replies_types_map_t) return int; -- /usr/include/xcb/xkb.h:10985 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_unpack, "xcb_xkb_get_kbd_by_name_replies_types_map_unpack"); function xcb_xkb_get_kbd_by_name_replies_types_map_sizeof (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKeySyms : Libc.Stdint.uint8_t; nKeyActions : Libc.Stdint.uint8_t; totalActions : Libc.Stdint.uint16_t; totalKeyBehaviors : Libc.Stdint.uint8_t; virtualMods : Libc.Stdint.uint16_t; totalKeyExplicit : Libc.Stdint.uint8_t; totalModMapKeys : Libc.Stdint.uint8_t; totalVModMapKeys : Libc.Stdint.uint8_t; present : Libc.Stdint.uint16_t) return int; -- /usr/include/xcb/xkb.h:10999 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_types_map_sizeof, "xcb_xkb_get_kbd_by_name_replies_types_map_sizeof"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:11022 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11035 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11049 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_type_names_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type (S : System.Address) return access Libc.Stdint.uint8_t; -- /usr/include/xcb/xkb.h:11063 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11076 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11090 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_n_levels_per_type_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:11104 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11117 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11131 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_kt_level_names_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:11145 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11158 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11172 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_indicator_names_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:11186 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11199 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11213 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_virtual_mod_names_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:11227 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11240 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11254 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_groups_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names (S : System.Address) return access xcb_xkb_key_name_t; -- /usr/include/xcb/xkb.h:11268 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11281 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_name_iterator_t; -- /usr/include/xcb/xkb.h:11295 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names_iterator, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_names_iterator"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases (S : System.Address) return access xcb_xkb_key_alias_t; -- /usr/include/xcb/xkb.h:11309 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11322 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases_iterator (R : System.Address; S : System.Address) return xcb_xkb_key_alias_iterator_t; -- /usr/include/xcb/xkb.h:11336 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases_iterator, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_key_aliases_iterator"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names (S : System.Address) return access XCB.XProto.xcb_atom_t; -- /usr/include/xcb/xkb.h:11350 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11363 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names_length, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names_length"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names_end (R : System.Address; S : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11377 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names_end, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_radio_group_names_end"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_serialize (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint16_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:11381 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_serialize, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_serialize"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_unpack (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint16_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t; u_aux : access xcb_xkb_get_kbd_by_name_replies_key_names_value_list_t) return int; -- /usr/include/xcb/xkb.h:11394 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_unpack, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_unpack"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list_sizeof (u_buffer : System.Address; nTypes : Libc.Stdint.uint8_t; nKTLevels : Libc.Stdint.uint16_t; indicators : Libc.Stdint.uint32_t; virtualMods : Libc.Stdint.uint16_t; groupNames : Libc.Stdint.uint8_t; nKeys : Libc.Stdint.uint8_t; nKeyAliases : Libc.Stdint.uint8_t; nRadioGroups : Libc.Stdint.uint8_t; which : Libc.Stdint.uint32_t) return int; -- /usr/include/xcb/xkb.h:11407 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list_sizeof, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list_sizeof"); function xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn (S : System.Address) return access xcb_xkb_sym_interpret_t; -- /usr/include/xcb/xkb.h:11429 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn, "xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn"); function xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11442 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_sym_interpret_iterator_t; -- /usr/include/xcb/xkb.h:11456 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_compat_map_si_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn (S : System.Address) return access xcb_xkb_mod_def_t; -- /usr/include/xcb/xkb.h:11470 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn, "xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn"); function xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11483 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn_length, "xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn_length"); function xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn_iterator (R : System.Address; S : System.Address) return xcb_xkb_mod_def_iterator_t; -- /usr/include/xcb/xkb.h:11497 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn_iterator, "xcb_xkb_get_kbd_by_name_replies_compat_map_group_rtrn_iterator"); function xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps (S : System.Address) return access xcb_xkb_indicator_map_t; -- /usr/include/xcb/xkb.h:11511 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps, "xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps"); function xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps_length (R : System.Address; S : System.Address) return int; -- /usr/include/xcb/xkb.h:11524 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps_length, "xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps_length"); function xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps_iterator (R : System.Address; S : System.Address) return xcb_xkb_indicator_map_iterator_t; -- /usr/include/xcb/xkb.h:11538 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps_iterator, "xcb_xkb_get_kbd_by_name_replies_indicator_maps_maps_iterator"); function xcb_xkb_get_kbd_by_name_replies_key_names_value_list (R : System.Address) return access xcb_xkb_get_kbd_by_name_replies_key_names_value_list_t; -- /usr/include/xcb/xkb.h:11552 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_key_names_value_list, "xcb_xkb_get_kbd_by_name_replies_key_names_value_list"); function xcb_xkb_get_kbd_by_name_replies_geometry_label_font (R : System.Address) return access xcb_xkb_counted_string_16_t; -- /usr/include/xcb/xkb.h:11565 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_geometry_label_font, "xcb_xkb_get_kbd_by_name_replies_geometry_label_font"); function xcb_xkb_get_kbd_by_name_replies_serialize (u_buffer : System.Address; reported : Libc.Stdint.uint16_t; u_aux : System.Address) return int; -- /usr/include/xcb/xkb.h:11568 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_serialize, "xcb_xkb_get_kbd_by_name_replies_serialize"); function xcb_xkb_get_kbd_by_name_replies_unpack (u_buffer : System.Address; reported : Libc.Stdint.uint16_t; u_aux : access xcb_xkb_get_kbd_by_name_replies_t) return int; -- /usr/include/xcb/xkb.h:11573 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_unpack, "xcb_xkb_get_kbd_by_name_replies_unpack"); function xcb_xkb_get_kbd_by_name_replies_sizeof (u_buffer : System.Address; reported : Libc.Stdint.uint16_t) return int; -- /usr/include/xcb/xkb.h:11578 pragma Import (C, xcb_xkb_get_kbd_by_name_replies_sizeof, "xcb_xkb_get_kbd_by_name_replies_sizeof"); function xcb_xkb_get_kbd_by_name (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; need : Libc.Stdint.uint16_t; want : Libc.Stdint.uint16_t; load : Libc.Stdint.uint8_t) return xcb_xkb_get_kbd_by_name_cookie_t; -- /usr/include/xcb/xkb.h:11604 pragma Import (C, xcb_xkb_get_kbd_by_name, "xcb_xkb_get_kbd_by_name"); function xcb_xkb_get_kbd_by_name_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; need : Libc.Stdint.uint16_t; want : Libc.Stdint.uint16_t; load : Libc.Stdint.uint8_t) return xcb_xkb_get_kbd_by_name_cookie_t; -- /usr/include/xcb/xkb.h:11636 pragma Import (C, xcb_xkb_get_kbd_by_name_unchecked, "xcb_xkb_get_kbd_by_name_unchecked"); function xcb_xkb_get_kbd_by_name_replies (R : System.Address) return System.Address; -- /usr/include/xcb/xkb.h:11653 pragma Import (C, xcb_xkb_get_kbd_by_name_replies, "xcb_xkb_get_kbd_by_name_replies"); function xcb_xkb_get_kbd_by_name_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_kbd_by_name_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_kbd_by_name_reply_t; -- /usr/include/xcb/xkb.h:11682 pragma Import (C, xcb_xkb_get_kbd_by_name_reply, "xcb_xkb_get_kbd_by_name_reply"); function xcb_xkb_get_device_info_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:11687 pragma Import (C, xcb_xkb_get_device_info_sizeof, "xcb_xkb_get_device_info_sizeof"); function xcb_xkb_get_device_info (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; wanted : Libc.Stdint.uint16_t; allButtons : Libc.Stdint.uint8_t; firstButton : Libc.Stdint.uint8_t; nButtons : Libc.Stdint.uint8_t; ledClass : xcb_xkb_led_class_spec_t; ledID : xcb_xkb_id_spec_t) return xcb_xkb_get_device_info_cookie_t; -- /usr/include/xcb/xkb.h:11715 pragma Import (C, xcb_xkb_get_device_info, "xcb_xkb_get_device_info"); function xcb_xkb_get_device_info_unchecked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; wanted : Libc.Stdint.uint16_t; allButtons : Libc.Stdint.uint8_t; firstButton : Libc.Stdint.uint8_t; nButtons : Libc.Stdint.uint8_t; ledClass : xcb_xkb_led_class_spec_t; ledID : xcb_xkb_id_spec_t) return xcb_xkb_get_device_info_cookie_t; -- /usr/include/xcb/xkb.h:11753 pragma Import (C, xcb_xkb_get_device_info_unchecked, "xcb_xkb_get_device_info_unchecked"); function xcb_xkb_get_device_info_name (R : System.Address) return access xcb_xkb_string8_t; -- /usr/include/xcb/xkb.h:11773 pragma Import (C, xcb_xkb_get_device_info_name, "xcb_xkb_get_device_info_name"); function xcb_xkb_get_device_info_name_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:11786 pragma Import (C, xcb_xkb_get_device_info_name_length, "xcb_xkb_get_device_info_name_length"); function xcb_xkb_get_device_info_name_end (R : System.Address) return XCB.xcb_generic_iterator_t; -- /usr/include/xcb/xkb.h:11799 pragma Import (C, xcb_xkb_get_device_info_name_end, "xcb_xkb_get_device_info_name_end"); function xcb_xkb_get_device_info_btn_actions (R : System.Address) return access xcb_xkb_action_t; -- /usr/include/xcb/xkb.h:11812 pragma Import (C, xcb_xkb_get_device_info_btn_actions, "xcb_xkb_get_device_info_btn_actions"); function xcb_xkb_get_device_info_btn_actions_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:11825 pragma Import (C, xcb_xkb_get_device_info_btn_actions_length, "xcb_xkb_get_device_info_btn_actions_length"); function xcb_xkb_get_device_info_btn_actions_iterator (R : System.Address) return xcb_xkb_action_iterator_t; -- /usr/include/xcb/xkb.h:11838 pragma Import (C, xcb_xkb_get_device_info_btn_actions_iterator, "xcb_xkb_get_device_info_btn_actions_iterator"); function xcb_xkb_get_device_info_leds_length (R : System.Address) return int; -- /usr/include/xcb/xkb.h:11851 pragma Import (C, xcb_xkb_get_device_info_leds_length, "xcb_xkb_get_device_info_leds_length"); function xcb_xkb_get_device_info_leds_iterator (R : System.Address) return xcb_xkb_device_led_info_iterator_t; -- /usr/include/xcb/xkb.h:11864 pragma Import (C, xcb_xkb_get_device_info_leds_iterator, "xcb_xkb_get_device_info_leds_iterator"); function xcb_xkb_get_device_info_reply (c : xcb_connection_t_access; cookie : xcb_xkb_get_device_info_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_get_device_info_reply_t; -- /usr/include/xcb/xkb.h:11893 pragma Import (C, xcb_xkb_get_device_info_reply, "xcb_xkb_get_device_info_reply"); function xcb_xkb_set_device_info_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:11898 pragma Import (C, xcb_xkb_set_device_info_sizeof, "xcb_xkb_set_device_info_sizeof"); function xcb_xkb_set_device_info_checked (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; firstBtn : Libc.Stdint.uint8_t; nBtns : Libc.Stdint.uint8_t; change : Libc.Stdint.uint16_t; nDeviceLedFBs : Libc.Stdint.uint16_t; btnActions : System.Address; leds : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:11929 pragma Import (C, xcb_xkb_set_device_info_checked, "xcb_xkb_set_device_info_checked"); function xcb_xkb_set_device_info (c : xcb_connection_t_access; deviceSpec : xcb_xkb_device_spec_t; firstBtn : Libc.Stdint.uint8_t; nBtns : Libc.Stdint.uint8_t; change : Libc.Stdint.uint16_t; nDeviceLedFBs : Libc.Stdint.uint16_t; btnActions : System.Address; leds : System.Address) return XCB.xcb_void_cookie_t; -- /usr/include/xcb/xkb.h:11964 pragma Import (C, xcb_xkb_set_device_info, "xcb_xkb_set_device_info"); function xcb_xkb_set_debugging_flags_sizeof (u_buffer : System.Address) return int; -- /usr/include/xcb/xkb.h:11974 pragma Import (C, xcb_xkb_set_debugging_flags_sizeof, "xcb_xkb_set_debugging_flags_sizeof"); function xcb_xkb_set_debugging_flags (c : xcb_connection_t_access; msgLength : Libc.Stdint.uint16_t; affectFlags : Libc.Stdint.uint32_t; flags : Libc.Stdint.uint32_t; affectCtrls : Libc.Stdint.uint32_t; ctrls : Libc.Stdint.uint32_t; message : access xcb_xkb_string8_t) return xcb_xkb_set_debugging_flags_cookie_t; -- /usr/include/xcb/xkb.h:12001 pragma Import (C, xcb_xkb_set_debugging_flags, "xcb_xkb_set_debugging_flags"); function xcb_xkb_set_debugging_flags_unchecked (c : xcb_connection_t_access; msgLength : Libc.Stdint.uint16_t; affectFlags : Libc.Stdint.uint32_t; flags : Libc.Stdint.uint32_t; affectCtrls : Libc.Stdint.uint32_t; ctrls : Libc.Stdint.uint32_t; message : access xcb_xkb_string8_t) return xcb_xkb_set_debugging_flags_cookie_t; -- /usr/include/xcb/xkb.h:12037 pragma Import (C, xcb_xkb_set_debugging_flags_unchecked, "xcb_xkb_set_debugging_flags_unchecked"); function xcb_xkb_set_debugging_flags_reply (c : xcb_connection_t_access; cookie : xcb_xkb_set_debugging_flags_cookie_t; e : access xcb_generic_error_t_access) return access xcb_xkb_set_debugging_flags_reply_t; -- /usr/include/xcb/xkb.h:12072 pragma Import (C, xcb_xkb_set_debugging_flags_reply, "xcb_xkb_set_debugging_flags_reply"); end XCB.XKB;
42.939432
114
0.718166
4a0aa22fa841cbf9640683a5770a876352e11560
3,348
ads
Ada
gcc-gcc-7_3_0-release/gcc/ada/s-gloloc.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/ada/s-gloloc.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/ada/s-gloloc.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . G L O B A L _ L O C K S -- -- -- -- S p e c -- -- -- -- Copyright (C) 1999-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. -- -- -- -- 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 necessary routines to provide -- reliable system wide locking capability. package System.Global_Locks is Lock_Error : exception; -- Exception raised if a request cannot be executed on a lock type Lock_Type is private; -- Such a lock is a global lock between partitions. This lock is -- uniquely defined between the partitions because of its name. Null_Lock : constant Lock_Type; -- This needs comments ??? procedure Create_Lock (Lock : out Lock_Type; Name : String); -- Create or retrieve a global lock for the current partition using -- its Name. procedure Acquire_Lock (Lock : in out Lock_Type); -- If the lock cannot be acquired because someone already owns it, this -- procedure is supposed to wait and retry forever. procedure Release_Lock (Lock : in out Lock_Type); private type Lock_Type is new Natural; Null_Lock : constant Lock_Type := 0; end System.Global_Locks;
52.3125
78
0.469833
1807d91288d59132817e520dec21381024178f73
6,531
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3305a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3305a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/ce/ce3305a.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- CE3305A.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 THE LINE AND PAGE LENGTHS MAY BE ALTERED DYNAMICALLY -- SEVERAL TIMES. CHECK THAT WHEN RESET TO ZERO, THE LENGTHS ARE -- UNBOUNDED. -- APPLICABILITY CRITERIA: -- THIS TEST IS APPLICABLE ONLY TO IMPLEMENTATIONS WHICH SUPPORT -- TEXT FILES WITH UNBOUNDED LINE LENGTH. -- HISTORY: -- SPS 09/28/82 -- EG 05/22/85 -- DWC 08/18/87 ADDED CHECK_FILE WITHOUT A'S. WITH REPORT; USE REPORT; WITH TEXT_IO; USE TEXT_IO; WITH CHECK_FILE; PROCEDURE CE3305A IS INCOMPLETE : EXCEPTION; BEGIN TEST ("CE3305A", "CHECK THAT LINE AND PAGE LENGTHS MAY BE " & "ALTERED DYNAMICALLY"); DECLARE FT : FILE_TYPE; PROCEDURE PUT_CHARS (CNT: INTEGER; CH: CHARACTER) IS BEGIN FOR I IN 1 .. CNT LOOP PUT (FT, CH); END LOOP; END PUT_CHARS; BEGIN BEGIN CREATE(FT, OUT_FILE, LEGAL_FILE_NAME); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("USE_ERROR RAISED ON CREATE " & "WITH OUT_FILE MODE"); RAISE INCOMPLETE; WHEN NAME_ERROR => NOT_APPLICABLE ("NAME_ERROR RAISED ON CREATE " & "WITH OUT_FILE MODE"); RAISE INCOMPLETE; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED ON CREATE"); RAISE INCOMPLETE; END; SET_LINE_LENGTH (FT, 10); SET_PAGE_LENGTH (FT, 5); PUT_CHARS (150, 'X'); -- 15 LINES BEGIN SET_LINE_LENGTH (FT, 5); SET_PAGE_LENGTH (FT, 10); EXCEPTION WHEN OTHERS => FAILED ("UNABLE TO CHANGE LINE OR PAGE LENGTH"); END; PUT_CHARS (50, 'B'); -- 10 LINES BEGIN SET_LINE_LENGTH (FT, 25); SET_PAGE_LENGTH (FT,4); EXCEPTION WHEN OTHERS => FAILED ("UNABLE TO CHANGE LINE OR PAGE LENGTH - 2"); END; PUT_CHARS (310, 'K'); -- 12 LINES, 10 CHARACTERS -- THIS CAN RAISE USE_ERROR IF AN IMPLEMENTATION REQUIRES A BOUNDED -- LINE LENGTH FOR AN EXTERNAL FILE. BEGIN BEGIN SET_LINE_LENGTH (FT, UNBOUNDED); SET_PAGE_LENGTH (FT, UNBOUNDED); EXCEPTION WHEN USE_ERROR => NOT_APPLICABLE ("BOUNDED LINE LENGTH " & "REQUIRED"); RAISE INCOMPLETE; END; PUT_CHARS (100, 'A'); -- ONE LINE CHECK_FILE (FT,"XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#@" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#@" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "XXXXXXXXXX#" & "BBBBB#" & "BBBBB#" & "BBBBB#" & "BBBBB#" & "BBBBB#@" & "BBBBB#" & "BBBBB#" & "BBBBB#" & "BBBBB#" & "BBBBBKKKKKKKKKKKKKKKKKKKK#@" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#@" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#@" & "KKKKKKKKKKKKKKKKKKKKKKKKK#" & "KKKKKKKKKKKKKKKKKKKKKKKKK#"& "KKKKKKKKKKKKKKKKKKKKKKKKK#"& "KKKKKKKKKKKKKKKAAAAAAAAAAA" & "AAAAAAAAAAAAAAAAAAAAAAAAAA" & "AAAAAAAAAAAAAAAAAAAAAAAAAA" & "AAAAAAAAAAAAAAAAAAAAAAAAAA" & "AAAAAAAAAAA#@%"); EXCEPTION WHEN INCOMPLETE => NULL; END; BEGIN DELETE (FT); EXCEPTION WHEN USE_ERROR => NULL; END; EXCEPTION WHEN INCOMPLETE => NULL; END; RESULT; END CE3305A;
35.688525
79
0.454754
dc999bce4c3939870fed0cd890b642f3152e9253
119,334
adb
Ada
tools-src/gnu/gcc/gcc/ada/sem_eval.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
80
2015-01-02T10:14:04.000Z
2021-06-07T06:29:49.000Z
tools-src/gnu/gcc/gcc/ada/sem_eval.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
9
2015-05-14T11:03:12.000Z
2018-01-04T07:12:58.000Z
tools-src/gnu/gcc/gcc/ada/sem_eval.adb
modern-tomato/tomato
96f09fab4929c6ddde5c9113f1b2476ad37133c4
[ "FSFAP" ]
69
2015-01-02T10:45:56.000Z
2021-09-06T07:52:13.000Z
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ E V A L -- -- -- -- B o d y -- -- -- -- $Revision$ -- -- -- Copyright (C) 1992-2001 Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, -- -- MA 02111-1307, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Checks; use Checks; with Debug; use Debug; with Einfo; use Einfo; with Elists; use Elists; with Errout; use Errout; with Eval_Fat; use Eval_Fat; with Nmake; use Nmake; with Nlists; use Nlists; with Opt; use Opt; with Sem; use Sem; with Sem_Cat; use Sem_Cat; with Sem_Ch8; use Sem_Ch8; with Sem_Res; use Sem_Res; with Sem_Util; use Sem_Util; with Sem_Type; use Sem_Type; with Sem_Warn; use Sem_Warn; with Sinfo; use Sinfo; with Snames; use Snames; with Stand; use Stand; with Stringt; use Stringt; package body Sem_Eval is ----------------------------------------- -- Handling of Compile Time Evaluation -- ----------------------------------------- -- The compile time evaluation of expressions is distributed over several -- Eval_xxx procedures. These procedures are called immediatedly after -- a subexpression is resolved and is therefore accomplished in a bottom -- up fashion. The flags are synthesized using the following approach. -- Is_Static_Expression is determined by following the detailed rules -- in RM 4.9(4-14). This involves testing the Is_Static_Expression -- flag of the operands in many cases. -- Raises_Constraint_Error is set if any of the operands have the flag -- set or if an attempt to compute the value of the current expression -- results in detection of a runtime constraint error. -- As described in the spec, the requirement is that Is_Static_Expression -- be accurately set, and in addition for nodes for which this flag is set, -- Raises_Constraint_Error must also be set. Furthermore a node which has -- Is_Static_Expression set, and Raises_Constraint_Error clear, then the -- requirement is that the expression value must be precomputed, and the -- node is either a literal, or the name of a constant entity whose value -- is a static expression. -- The general approach is as follows. First compute Is_Static_Expression. -- If the node is not static, then the flag is left off in the node and -- we are all done. Otherwise for a static node, we test if any of the -- operands will raise constraint error, and if so, propagate the flag -- Raises_Constraint_Error to the result node and we are done (since the -- error was already posted at a lower level). -- For the case of a static node whose operands do not raise constraint -- error, we attempt to evaluate the node. If this evaluation succeeds, -- then the node is replaced by the result of this computation. If the -- evaluation raises constraint error, then we rewrite the node with -- Apply_Compile_Time_Constraint_Error to raise the exception and also -- to post appropriate error messages. ---------------- -- Local Data -- ---------------- type Bits is array (Nat range <>) of Boolean; -- Used to convert unsigned (modular) values for folding logical ops ----------------------- -- Local Subprograms -- ----------------------- function OK_Bits (N : Node_Id; Bits : Uint) return Boolean; -- Bits represents the number of bits in an integer value to be computed -- (but the value has not been computed yet). If this value in Bits is -- reasonable, a result of True is returned, with the implication that -- the caller should go ahead and complete the calculation. If the value -- in Bits is unreasonably large, then an error is posted on node N, and -- False is returned (and the caller skips the proposed calculation). function From_Bits (B : Bits; T : Entity_Id) return Uint; -- Converts a bit string of length B'Length to a Uint value to be used -- for a target of type T, which is a modular type. This procedure -- includes the necessary reduction by the modulus in the case of a -- non-binary modulus (for a binary modulus, the bit string is the -- right length any way so all is well). function Get_String_Val (N : Node_Id) return Node_Id; -- Given a tree node for a folded string or character value, returns -- the corresponding string literal or character literal (one of the -- two must be available, or the operand would not have been marked -- as foldable in the earlier analysis of the operation). procedure Out_Of_Range (N : Node_Id); -- This procedure is called if it is determined that node N, which -- appears in a non-static context, is a compile time known value -- which is outside its range, i.e. the range of Etype. This is used -- in contexts where this is an illegality if N is static, and should -- generate a warning otherwise. procedure Rewrite_In_Raise_CE (N : Node_Id; Exp : Node_Id); -- N and Exp are nodes representing an expression, Exp is known -- to raise CE. N is rewritten in term of Exp in the optimal way. function String_Type_Len (Stype : Entity_Id) return Uint; -- Given a string type, determines the length of the index type, or, -- if this index type is non-static, the length of the base type of -- this index type. Note that if the string type is itself static, -- then the index type is static, so the second case applies only -- if the string type passed is non-static. function Test (Cond : Boolean) return Uint; pragma Inline (Test); -- This function simply returns the appropriate Boolean'Pos value -- corresponding to the value of Cond as a universal integer. It is -- used for producing the result of the static evaluation of the -- logical operators procedure Test_Expression_Is_Foldable (N : Node_Id; Op1 : Node_Id; Stat : out Boolean; Fold : out Boolean); -- Tests to see if expression N whose single operand is Op1 is foldable, -- i.e. the operand value is known at compile time. If the operation is -- foldable, then Fold is True on return, and Stat indicates whether -- the result is static (i.e. both operands were static). Note that it -- is quite possible for Fold to be True, and Stat to be False, since -- there are cases in which we know the value of an operand even though -- it is not technically static (e.g. the static lower bound of a range -- whose upper bound is non-static). -- -- If Stat is set False on return, then Expression_Is_Foldable makes a -- call to Check_Non_Static_Context on the operand. If Fold is False on -- return, then all processing is complete, and the caller should -- return, since there is nothing else to do. procedure Test_Expression_Is_Foldable (N : Node_Id; Op1 : Node_Id; Op2 : Node_Id; Stat : out Boolean; Fold : out Boolean); -- Same processing, except applies to an expression N with two operands -- Op1 and Op2. procedure To_Bits (U : Uint; B : out Bits); -- Converts a Uint value to a bit string of length B'Length ------------------------------ -- Check_Non_Static_Context -- ------------------------------ procedure Check_Non_Static_Context (N : Node_Id) is T : Entity_Id := Etype (N); Checks_On : constant Boolean := not Index_Checks_Suppressed (T) and not Range_Checks_Suppressed (T); begin -- We need the check only for static expressions not raising CE -- We can also ignore cases in which the type is Any_Type if not Is_OK_Static_Expression (N) or else Etype (N) = Any_Type then return; -- Skip this check for non-scalar expressions elsif not Is_Scalar_Type (T) then return; end if; -- Here we have the case of outer level static expression of -- scalar type, where the processing of this procedure is needed. -- For real types, this is where we convert the value to a machine -- number (see RM 4.9(38)). Also see ACVC test C490001. We should -- only need to do this if the parent is a constant declaration, -- since in other cases, gigi should do the necessary conversion -- correctly, but experimentation shows that this is not the case -- on all machines, in particular if we do not convert all literals -- to machine values in non-static contexts, then ACVC test C490001 -- fails on Sparc/Solaris and SGI/Irix. if Nkind (N) = N_Real_Literal and then not Is_Machine_Number (N) and then not Is_Generic_Type (Etype (N)) and then Etype (N) /= Universal_Real and then not Debug_Flag_S and then (not Debug_Flag_T or else (Nkind (Parent (N)) = N_Object_Declaration and then Constant_Present (Parent (N)))) then -- Check that value is in bounds before converting to machine -- number, so as not to lose case where value overflows in the -- least significant bit or less. See B490001. if Is_Out_Of_Range (N, Base_Type (T)) then Out_Of_Range (N); return; end if; -- Note: we have to copy the node, to avoid problems with conformance -- of very similar numbers (see ACVC tests B4A010C and B63103A). Rewrite (N, New_Copy (N)); if not Is_Floating_Point_Type (T) then Set_Realval (N, Corresponding_Integer_Value (N) * Small_Value (T)); elsif not UR_Is_Zero (Realval (N)) then declare RT : constant Entity_Id := Base_Type (T); X : constant Ureal := Machine (RT, Realval (N), Round); begin -- Warn if result of static rounding actually differs from -- runtime evaluation, which uses round to even. if Warn_On_Biased_Rounding and Rounding_Was_Biased then Error_Msg_N ("static expression does not round to even" & " ('R'M 4.9(38))?", N); end if; Set_Realval (N, X); end; end if; Set_Is_Machine_Number (N); end if; -- Check for out of range universal integer. This is a non-static -- context, so the integer value must be in range of the runtime -- representation of universal integers. -- We do this only within an expression, because that is the only -- case in which non-static universal integer values can occur, and -- furthermore, Check_Non_Static_Context is currently (incorrectly???) -- called in contexts like the expression of a number declaration where -- we certainly want to allow out of range values. if Etype (N) = Universal_Integer and then Nkind (N) = N_Integer_Literal and then Nkind (Parent (N)) in N_Subexpr and then (Intval (N) < Expr_Value (Type_Low_Bound (Universal_Integer)) or else Intval (N) > Expr_Value (Type_High_Bound (Universal_Integer))) then Apply_Compile_Time_Constraint_Error (N, "non-static universal integer value out of range?"); -- Check out of range of base type elsif Is_Out_Of_Range (N, Base_Type (T)) then Out_Of_Range (N); -- Give warning if outside subtype (where one or both of the -- bounds of the subtype is static). This warning is omitted -- if the expression appears in a range that could be null -- (warnings are handled elsewhere for this case). elsif T /= Base_Type (T) and then Nkind (Parent (N)) /= N_Range then if Is_In_Range (N, T) then null; elsif Is_Out_Of_Range (N, T) then Apply_Compile_Time_Constraint_Error (N, "value not in range of}?"); elsif Checks_On then Enable_Range_Check (N); else Set_Do_Range_Check (N, False); end if; end if; end Check_Non_Static_Context; --------------------------------- -- Check_String_Literal_Length -- --------------------------------- procedure Check_String_Literal_Length (N : Node_Id; Ttype : Entity_Id) is begin if not Raises_Constraint_Error (N) and then Is_Constrained (Ttype) then if UI_From_Int (String_Length (Strval (N))) /= String_Type_Len (Ttype) then Apply_Compile_Time_Constraint_Error (N, "string length wrong for}?", Ent => Ttype, Typ => Ttype); end if; end if; end Check_String_Literal_Length; -------------------------- -- Compile_Time_Compare -- -------------------------- function Compile_Time_Compare (L, R : Node_Id) return Compare_Result is Ltyp : constant Entity_Id := Etype (L); Rtyp : constant Entity_Id := Etype (R); procedure Compare_Decompose (N : Node_Id; R : out Node_Id; V : out Uint); -- This procedure decomposes the node N into an expression node -- and a signed offset, so that the value of N is equal to the -- value of R plus the value V (which may be negative). If no -- such decomposition is possible, then on return R is a copy -- of N, and V is set to zero. function Compare_Fixup (N : Node_Id) return Node_Id; -- This function deals with replacing 'Last and 'First references -- with their corresponding type bounds, which we then can compare. -- The argument is the original node, the result is the identity, -- unless we have a 'Last/'First reference in which case the value -- returned is the appropriate type bound. function Is_Same_Value (L, R : Node_Id) return Boolean; -- Returns True iff L and R represent expressions that definitely -- have identical (but not necessarily compile time known) values -- Indeed the caller is expected to have already dealt with the -- cases of compile time known values, so these are not tested here. ----------------------- -- Compare_Decompose -- ----------------------- procedure Compare_Decompose (N : Node_Id; R : out Node_Id; V : out Uint) is begin if Nkind (N) = N_Op_Add and then Nkind (Right_Opnd (N)) = N_Integer_Literal then R := Left_Opnd (N); V := Intval (Right_Opnd (N)); return; elsif Nkind (N) = N_Op_Subtract and then Nkind (Right_Opnd (N)) = N_Integer_Literal then R := Left_Opnd (N); V := UI_Negate (Intval (Right_Opnd (N))); return; elsif Nkind (N) = N_Attribute_Reference then if Attribute_Name (N) = Name_Succ then R := First (Expressions (N)); V := Uint_1; return; elsif Attribute_Name (N) = Name_Pred then R := First (Expressions (N)); V := Uint_Minus_1; return; end if; end if; R := N; V := Uint_0; end Compare_Decompose; ------------------- -- Compare_Fixup -- ------------------- function Compare_Fixup (N : Node_Id) return Node_Id is Indx : Node_Id; Xtyp : Entity_Id; Subs : Nat; begin if Nkind (N) = N_Attribute_Reference and then (Attribute_Name (N) = Name_First or else Attribute_Name (N) = Name_Last) then Xtyp := Etype (Prefix (N)); -- If we have no type, then just abandon the attempt to do -- a fixup, this is probably the result of some other error. if No (Xtyp) then return N; end if; -- Dereference an access type if Is_Access_Type (Xtyp) then Xtyp := Designated_Type (Xtyp); end if; -- If we don't have an array type at this stage, something -- is peculiar, e.g. another error, and we abandon the attempt -- at a fixup. if not Is_Array_Type (Xtyp) then return N; end if; -- Ignore unconstrained array, since bounds are not meaningful if not Is_Constrained (Xtyp) then return N; end if; if Ekind (Xtyp) = E_String_Literal_Subtype then if Attribute_Name (N) = Name_First then return String_Literal_Low_Bound (Xtyp); else -- Attribute_Name (N) = Name_Last return Make_Integer_Literal (Sloc (N), Intval => Intval (String_Literal_Low_Bound (Xtyp)) + String_Literal_Length (Xtyp)); end if; end if; -- Find correct index type Indx := First_Index (Xtyp); if Present (Expressions (N)) then Subs := UI_To_Int (Expr_Value (First (Expressions (N)))); for J in 2 .. Subs loop Indx := Next_Index (Indx); end loop; end if; Xtyp := Etype (Indx); if Attribute_Name (N) = Name_First then return Type_Low_Bound (Xtyp); else -- Attribute_Name (N) = Name_Last return Type_High_Bound (Xtyp); end if; end if; return N; end Compare_Fixup; ------------------- -- Is_Same_Value -- ------------------- function Is_Same_Value (L, R : Node_Id) return Boolean is Lf : constant Node_Id := Compare_Fixup (L); Rf : constant Node_Id := Compare_Fixup (R); begin -- Values are the same if they are the same identifier and the -- identifier refers to a constant object (E_Constant) if Nkind (Lf) = N_Identifier and then Nkind (Rf) = N_Identifier and then Entity (Lf) = Entity (Rf) and then (Ekind (Entity (Lf)) = E_Constant or else Ekind (Entity (Lf)) = E_In_Parameter or else Ekind (Entity (Lf)) = E_Loop_Parameter) then return True; -- Or if they are compile time known and identical elsif Compile_Time_Known_Value (Lf) and then Compile_Time_Known_Value (Rf) and then Expr_Value (Lf) = Expr_Value (Rf) then return True; -- Or if they are both 'First or 'Last values applying to the -- same entity (first and last don't change even if value does) elsif Nkind (Lf) = N_Attribute_Reference and then Nkind (Rf) = N_Attribute_Reference and then Attribute_Name (Lf) = Attribute_Name (Rf) and then (Attribute_Name (Lf) = Name_First or else Attribute_Name (Lf) = Name_Last) and then Is_Entity_Name (Prefix (Lf)) and then Is_Entity_Name (Prefix (Rf)) and then Entity (Prefix (Lf)) = Entity (Prefix (Rf)) then return True; -- All other cases, we can't tell else return False; end if; end Is_Same_Value; -- Start of processing for Compile_Time_Compare begin if L = R then return EQ; -- If expressions have no types, then do not attempt to determine -- if they are the same, since something funny is going on. One -- case in which this happens is during generic template analysis, -- when bounds are not fully analyzed. elsif No (Ltyp) or else No (Rtyp) then return Unknown; -- We only attempt compile time analysis for scalar values elsif not Is_Scalar_Type (Ltyp) or else Is_Packed_Array_Type (Ltyp) then return Unknown; -- Case where comparison involves two compile time known values elsif Compile_Time_Known_Value (L) and then Compile_Time_Known_Value (R) then -- For the floating-point case, we have to be a little careful, since -- at compile time we are dealing with universal exact values, but at -- runtime, these will be in non-exact target form. That's why the -- returned results are LE and GE below instead of LT and GT. if Is_Floating_Point_Type (Ltyp) or else Is_Floating_Point_Type (Rtyp) then declare Lo : constant Ureal := Expr_Value_R (L); Hi : constant Ureal := Expr_Value_R (R); begin if Lo < Hi then return LE; elsif Lo = Hi then return EQ; else return GE; end if; end; -- For the integer case we know exactly (note that this includes the -- fixed-point case, where we know the run time integer values now) else declare Lo : constant Uint := Expr_Value (L); Hi : constant Uint := Expr_Value (R); begin if Lo < Hi then return LT; elsif Lo = Hi then return EQ; else return GT; end if; end; end if; -- Cases where at least one operand is not known at compile time else -- Here is where we check for comparisons against maximum bounds of -- types, where we know that no value can be outside the bounds of -- the subtype. Note that this routine is allowed to assume that all -- expressions are within their subtype bounds. Callers wishing to -- deal with possibly invalid values must in any case take special -- steps (e.g. conversions to larger types) to avoid this kind of -- optimization, which is always considered to be valid. We do not -- attempt this optimization with generic types, since the type -- bounds may not be meaningful in this case. if Is_Discrete_Type (Ltyp) and then not Is_Generic_Type (Ltyp) and then not Is_Generic_Type (Rtyp) then if Is_Same_Value (R, Type_High_Bound (Ltyp)) then return LE; elsif Is_Same_Value (R, Type_Low_Bound (Ltyp)) then return GE; elsif Is_Same_Value (L, Type_High_Bound (Rtyp)) then return GE; elsif Is_Same_Value (L, Type_Low_Bound (Ltyp)) then return LE; end if; end if; -- Next attempt is to decompose the expressions to extract -- a constant offset resulting from the use of any of the forms: -- expr + literal -- expr - literal -- typ'Succ (expr) -- typ'Pred (expr) -- Then we see if the two expressions are the same value, and if so -- the result is obtained by comparing the offsets. declare Lnode : Node_Id; Loffs : Uint; Rnode : Node_Id; Roffs : Uint; begin Compare_Decompose (L, Lnode, Loffs); Compare_Decompose (R, Rnode, Roffs); if Is_Same_Value (Lnode, Rnode) then if Loffs = Roffs then return EQ; elsif Loffs < Roffs then return LT; else return GT; end if; -- If the expressions are different, we cannot say at compile -- time how they compare, so we return the Unknown indication. else return Unknown; end if; end; end if; end Compile_Time_Compare; ------------------------------ -- Compile_Time_Known_Value -- ------------------------------ function Compile_Time_Known_Value (Op : Node_Id) return Boolean is K : constant Node_Kind := Nkind (Op); begin -- Never known at compile time if bad type or raises constraint error -- or empty (latter case occurs only as a result of a previous error) if No (Op) or else Op = Error or else Etype (Op) = Any_Type or else Raises_Constraint_Error (Op) then return False; end if; -- If we have an entity name, then see if it is the name of a constant -- and if so, test the corresponding constant value, or the name of -- an enumeration literal, which is always a constant. if Present (Etype (Op)) and then Is_Entity_Name (Op) then declare E : constant Entity_Id := Entity (Op); V : Node_Id; begin -- Never known at compile time if it is a packed array value. -- We might want to try to evaluate these at compile time one -- day, but we do not make that attempt now. if Is_Packed_Array_Type (Etype (Op)) then return False; end if; if Ekind (E) = E_Enumeration_Literal then return True; elsif Ekind (E) /= E_Constant then return False; else V := Constant_Value (E); return Present (V) and then Compile_Time_Known_Value (V); end if; end; -- We have a value, see if it is compile time known else -- Literals and NULL are known at compile time if K = N_Integer_Literal or else K = N_Character_Literal or else K = N_Real_Literal or else K = N_String_Literal or else K = N_Null then return True; -- Any reference to Null_Parameter is known at compile time. No -- other attribute references (that have not already been folded) -- are known at compile time. elsif K = N_Attribute_Reference then return Attribute_Name (Op) = Name_Null_Parameter; -- All other types of values are not known at compile time else return False; end if; end if; end Compile_Time_Known_Value; -------------------------------------- -- Compile_Time_Known_Value_Or_Aggr -- -------------------------------------- function Compile_Time_Known_Value_Or_Aggr (Op : Node_Id) return Boolean is begin -- If we have an entity name, then see if it is the name of a constant -- and if so, test the corresponding constant value, or the name of -- an enumeration literal, which is always a constant. if Is_Entity_Name (Op) then declare E : constant Entity_Id := Entity (Op); V : Node_Id; begin if Ekind (E) = E_Enumeration_Literal then return True; elsif Ekind (E) /= E_Constant then return False; else V := Constant_Value (E); return Present (V) and then Compile_Time_Known_Value_Or_Aggr (V); end if; end; -- We have a value, see if it is compile time known else if Compile_Time_Known_Value (Op) then return True; elsif Nkind (Op) = N_Aggregate then if Present (Expressions (Op)) then declare Expr : Node_Id; begin Expr := First (Expressions (Op)); while Present (Expr) loop if not Compile_Time_Known_Value_Or_Aggr (Expr) then return False; end if; Next (Expr); end loop; end; end if; if Present (Component_Associations (Op)) then declare Cass : Node_Id; begin Cass := First (Component_Associations (Op)); while Present (Cass) loop if not Compile_Time_Known_Value_Or_Aggr (Expression (Cass)) then return False; end if; Next (Cass); end loop; end; end if; return True; -- All other types of values are not known at compile time else return False; end if; end if; end Compile_Time_Known_Value_Or_Aggr; ----------------- -- Eval_Actual -- ----------------- -- This is only called for actuals of functions that are not predefined -- operators (which have already been rewritten as operators at this -- stage), so the call can never be folded, and all that needs doing for -- the actual is to do the check for a non-static context. procedure Eval_Actual (N : Node_Id) is begin Check_Non_Static_Context (N); end Eval_Actual; -------------------- -- Eval_Allocator -- -------------------- -- Allocators are never static, so all we have to do is to do the -- check for a non-static context if an expression is present. procedure Eval_Allocator (N : Node_Id) is Expr : constant Node_Id := Expression (N); begin if Nkind (Expr) = N_Qualified_Expression then Check_Non_Static_Context (Expression (Expr)); end if; end Eval_Allocator; ------------------------ -- Eval_Arithmetic_Op -- ------------------------ -- Arithmetic operations are static functions, so the result is static -- if both operands are static (RM 4.9(7), 4.9(20)). procedure Eval_Arithmetic_Op (N : Node_Id) is Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); Ltype : constant Entity_Id := Etype (Left); Rtype : constant Entity_Id := Etype (Right); Stat : Boolean; Fold : Boolean; begin -- If not foldable we are done Test_Expression_Is_Foldable (N, Left, Right, Stat, Fold); if not Fold then return; end if; -- Fold for cases where both operands are of integer type if Is_Integer_Type (Ltype) and then Is_Integer_Type (Rtype) then declare Left_Int : constant Uint := Expr_Value (Left); Right_Int : constant Uint := Expr_Value (Right); Result : Uint; begin case Nkind (N) is when N_Op_Add => Result := Left_Int + Right_Int; when N_Op_Subtract => Result := Left_Int - Right_Int; when N_Op_Multiply => if OK_Bits (N, UI_From_Int (Num_Bits (Left_Int) + Num_Bits (Right_Int))) then Result := Left_Int * Right_Int; else Result := Left_Int; end if; when N_Op_Divide => -- The exception Constraint_Error is raised by integer -- division, rem and mod if the right operand is zero. if Right_Int = 0 then Apply_Compile_Time_Constraint_Error (N, "division by zero"); return; else Result := Left_Int / Right_Int; end if; when N_Op_Mod => -- The exception Constraint_Error is raised by integer -- division, rem and mod if the right operand is zero. if Right_Int = 0 then Apply_Compile_Time_Constraint_Error (N, "mod with zero divisor"); return; else Result := Left_Int mod Right_Int; end if; when N_Op_Rem => -- The exception Constraint_Error is raised by integer -- division, rem and mod if the right operand is zero. if Right_Int = 0 then Apply_Compile_Time_Constraint_Error (N, "rem with zero divisor"); return; else Result := Left_Int rem Right_Int; end if; when others => raise Program_Error; end case; -- Adjust the result by the modulus if the type is a modular type if Is_Modular_Integer_Type (Ltype) then Result := Result mod Modulus (Ltype); end if; Fold_Uint (N, Result); end; -- Cases where at least one operand is a real. We handle the cases -- of both reals, or mixed/real integer cases (the latter happen -- only for divide and multiply, and the result is always real). elsif Is_Real_Type (Ltype) or else Is_Real_Type (Rtype) then declare Left_Real : Ureal; Right_Real : Ureal; Result : Ureal; begin if Is_Real_Type (Ltype) then Left_Real := Expr_Value_R (Left); else Left_Real := UR_From_Uint (Expr_Value (Left)); end if; if Is_Real_Type (Rtype) then Right_Real := Expr_Value_R (Right); else Right_Real := UR_From_Uint (Expr_Value (Right)); end if; if Nkind (N) = N_Op_Add then Result := Left_Real + Right_Real; elsif Nkind (N) = N_Op_Subtract then Result := Left_Real - Right_Real; elsif Nkind (N) = N_Op_Multiply then Result := Left_Real * Right_Real; else pragma Assert (Nkind (N) = N_Op_Divide); if UR_Is_Zero (Right_Real) then Apply_Compile_Time_Constraint_Error (N, "division by zero"); return; end if; Result := Left_Real / Right_Real; end if; Fold_Ureal (N, Result); end; end if; Set_Is_Static_Expression (N, Stat); end Eval_Arithmetic_Op; ---------------------------- -- Eval_Character_Literal -- ---------------------------- -- Nothing to be done! procedure Eval_Character_Literal (N : Node_Id) is begin null; end Eval_Character_Literal; ------------------------ -- Eval_Concatenation -- ------------------------ -- Concatenation is a static function, so the result is static if -- both operands are static (RM 4.9(7), 4.9(21)). procedure Eval_Concatenation (N : Node_Id) is Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); C_Typ : constant Entity_Id := Root_Type (Component_Type (Etype (N))); Stat : Boolean; Fold : Boolean; begin -- Concatenation is never static in Ada 83, so if Ada 83 -- check operand non-static context if Ada_83 and then Comes_From_Source (N) then Check_Non_Static_Context (Left); Check_Non_Static_Context (Right); return; end if; -- If not foldable we are done. In principle concatenation that yields -- any string type is static (i.e. an array type of character types). -- However, character types can include enumeration literals, and -- concatenation in that case cannot be described by a literal, so we -- only consider the operation static if the result is an array of -- (a descendant of) a predefined character type. Test_Expression_Is_Foldable (N, Left, Right, Stat, Fold); if (C_Typ = Standard_Character or else C_Typ = Standard_Wide_Character) and then Fold then null; else Set_Is_Static_Expression (N, False); return; end if; -- Compile time string concatenation. -- ??? Note that operands that are aggregates can be marked as -- static, so we should attempt at a later stage to fold -- concatenations with such aggregates. declare Left_Str : constant Node_Id := Get_String_Val (Left); Left_Len : Nat; Right_Str : constant Node_Id := Get_String_Val (Right); begin -- Establish new string literal, and store left operand. We make -- sure to use the special Start_String that takes an operand if -- the left operand is a string literal. Since this is optimized -- in the case where that is the most recently created string -- literal, we ensure efficient time/space behavior for the -- case of a concatenation of a series of string literals. if Nkind (Left_Str) = N_String_Literal then Left_Len := String_Length (Strval (Left_Str)); Start_String (Strval (Left_Str)); else Start_String; Store_String_Char (Char_Literal_Value (Left_Str)); Left_Len := 1; end if; -- Now append the characters of the right operand if Nkind (Right_Str) = N_String_Literal then declare S : constant String_Id := Strval (Right_Str); begin for J in 1 .. String_Length (S) loop Store_String_Char (Get_String_Char (S, J)); end loop; end; else Store_String_Char (Char_Literal_Value (Right_Str)); end if; Set_Is_Static_Expression (N, Stat); if Stat then -- If left operand is the empty string, the result is the -- right operand, including its bounds if anomalous. if Left_Len = 0 and then Is_Array_Type (Etype (Right)) and then Etype (Right) /= Any_String then Set_Etype (N, Etype (Right)); end if; Fold_Str (N, End_String); end if; end; end Eval_Concatenation; --------------------------------- -- Eval_Conditional_Expression -- --------------------------------- -- This GNAT internal construct can never be statically folded, so the -- only required processing is to do the check for non-static context -- for the two expression operands. procedure Eval_Conditional_Expression (N : Node_Id) is Condition : constant Node_Id := First (Expressions (N)); Then_Expr : constant Node_Id := Next (Condition); Else_Expr : constant Node_Id := Next (Then_Expr); begin Check_Non_Static_Context (Then_Expr); Check_Non_Static_Context (Else_Expr); end Eval_Conditional_Expression; ---------------------- -- Eval_Entity_Name -- ---------------------- -- This procedure is used for identifiers and expanded names other than -- named numbers (see Eval_Named_Integer, Eval_Named_Real. These are -- static if they denote a static constant (RM 4.9(6)) or if the name -- denotes an enumeration literal (RM 4.9(22)). procedure Eval_Entity_Name (N : Node_Id) is Def_Id : constant Entity_Id := Entity (N); Val : Node_Id; begin -- Enumeration literals are always considered to be constants -- and cannot raise constraint error (RM 4.9(22)). if Ekind (Def_Id) = E_Enumeration_Literal then Set_Is_Static_Expression (N); return; -- A name is static if it denotes a static constant (RM 4.9(5)), and -- we also copy Raise_Constraint_Error. Notice that even if non-static, -- it does not violate 10.2.1(8) here, since this is not a variable. elsif Ekind (Def_Id) = E_Constant then -- Deferred constants must always be treated as nonstatic -- outside the scope of their full view. if Present (Full_View (Def_Id)) and then not In_Open_Scopes (Scope (Def_Id)) then Val := Empty; else Val := Constant_Value (Def_Id); end if; if Present (Val) then Set_Is_Static_Expression (N, Is_Static_Expression (Val) and then Is_Static_Subtype (Etype (Def_Id))); Set_Raises_Constraint_Error (N, Raises_Constraint_Error (Val)); if not Is_Static_Expression (N) and then not Is_Generic_Type (Etype (N)) then Validate_Static_Object_Name (N); end if; return; end if; end if; -- Fall through if the name is not static. Validate_Static_Object_Name (N); end Eval_Entity_Name; ---------------------------- -- Eval_Indexed_Component -- ---------------------------- -- Indexed components are never static, so the only required processing -- is to perform the check for non-static context on the index values. procedure Eval_Indexed_Component (N : Node_Id) is Expr : Node_Id; begin Expr := First (Expressions (N)); while Present (Expr) loop Check_Non_Static_Context (Expr); Next (Expr); end loop; end Eval_Indexed_Component; -------------------------- -- Eval_Integer_Literal -- -------------------------- -- Numeric literals are static (RM 4.9(1)), and have already been marked -- as static by the analyzer. The reason we did it that early is to allow -- the possibility of turning off the Is_Static_Expression flag after -- analysis, but before resolution, when integer literals are generated -- in the expander that do not correspond to static expressions. procedure Eval_Integer_Literal (N : Node_Id) is T : constant Entity_Id := Etype (N); begin -- If the literal appears in a non-expression context, then it is -- certainly appearing in a non-static context, so check it. This -- is actually a redundant check, since Check_Non_Static_Context -- would check it, but it seems worth while avoiding the call. if Nkind (Parent (N)) not in N_Subexpr then Check_Non_Static_Context (N); end if; -- Modular integer literals must be in their base range if Is_Modular_Integer_Type (T) and then Is_Out_Of_Range (N, Base_Type (T)) then Out_Of_Range (N); end if; end Eval_Integer_Literal; --------------------- -- Eval_Logical_Op -- --------------------- -- Logical operations are static functions, so the result is potentially -- static if both operands are potentially static (RM 4.9(7), 4.9(20)). procedure Eval_Logical_Op (N : Node_Id) is Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); Stat : Boolean; Fold : Boolean; begin -- If not foldable we are done Test_Expression_Is_Foldable (N, Left, Right, Stat, Fold); if not Fold then return; end if; -- Compile time evaluation of logical operation declare Left_Int : constant Uint := Expr_Value (Left); Right_Int : constant Uint := Expr_Value (Right); begin if Is_Modular_Integer_Type (Etype (N)) then declare Left_Bits : Bits (0 .. UI_To_Int (Esize (Etype (N))) - 1); Right_Bits : Bits (0 .. UI_To_Int (Esize (Etype (N))) - 1); begin To_Bits (Left_Int, Left_Bits); To_Bits (Right_Int, Right_Bits); -- Note: should really be able to use array ops instead of -- these loops, but they weren't working at the time ??? if Nkind (N) = N_Op_And then for J in Left_Bits'Range loop Left_Bits (J) := Left_Bits (J) and Right_Bits (J); end loop; elsif Nkind (N) = N_Op_Or then for J in Left_Bits'Range loop Left_Bits (J) := Left_Bits (J) or Right_Bits (J); end loop; else pragma Assert (Nkind (N) = N_Op_Xor); for J in Left_Bits'Range loop Left_Bits (J) := Left_Bits (J) xor Right_Bits (J); end loop; end if; Fold_Uint (N, From_Bits (Left_Bits, Etype (N))); end; else pragma Assert (Is_Boolean_Type (Etype (N))); if Nkind (N) = N_Op_And then Fold_Uint (N, Test (Is_True (Left_Int) and then Is_True (Right_Int))); elsif Nkind (N) = N_Op_Or then Fold_Uint (N, Test (Is_True (Left_Int) or else Is_True (Right_Int))); else pragma Assert (Nkind (N) = N_Op_Xor); Fold_Uint (N, Test (Is_True (Left_Int) xor Is_True (Right_Int))); end if; end if; Set_Is_Static_Expression (N, Stat); end; end Eval_Logical_Op; ------------------------ -- Eval_Membership_Op -- ------------------------ -- A membership test is potentially static if the expression is static, -- and the range is a potentially static range, or is a subtype mark -- denoting a static subtype (RM 4.9(12)). procedure Eval_Membership_Op (N : Node_Id) is Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); Def_Id : Entity_Id; Lo : Node_Id; Hi : Node_Id; Result : Boolean; Stat : Boolean; Fold : Boolean; begin -- Ignore if error in either operand, except to make sure that -- Any_Type is properly propagated to avoid junk cascaded errors. if Etype (Left) = Any_Type or else Etype (Right) = Any_Type then Set_Etype (N, Any_Type); return; end if; -- Case of right operand is a subtype name if Is_Entity_Name (Right) then Def_Id := Entity (Right); if (Is_Scalar_Type (Def_Id) or else Is_String_Type (Def_Id)) and then Is_OK_Static_Subtype (Def_Id) then Test_Expression_Is_Foldable (N, Left, Stat, Fold); if not Fold or else not Stat then return; end if; else Check_Non_Static_Context (Left); return; end if; -- For string membership tests we will check the length -- further below. if not Is_String_Type (Def_Id) then Lo := Type_Low_Bound (Def_Id); Hi := Type_High_Bound (Def_Id); else Lo := Empty; Hi := Empty; end if; -- Case of right operand is a range else if Is_Static_Range (Right) then Test_Expression_Is_Foldable (N, Left, Stat, Fold); if not Fold or else not Stat then return; -- If one bound of range raises CE, then don't try to fold elsif not Is_OK_Static_Range (Right) then Check_Non_Static_Context (Left); return; end if; else Check_Non_Static_Context (Left); return; end if; -- Here we know range is an OK static range Lo := Low_Bound (Right); Hi := High_Bound (Right); end if; -- For strings we check that the length of the string expression is -- compatible with the string subtype if the subtype is constrained, -- or if unconstrained then the test is always true. if Is_String_Type (Etype (Right)) then if not Is_Constrained (Etype (Right)) then Result := True; else declare Typlen : constant Uint := String_Type_Len (Etype (Right)); Strlen : constant Uint := UI_From_Int (String_Length (Strval (Get_String_Val (Left)))); begin Result := (Typlen = Strlen); end; end if; -- Fold the membership test. We know we have a static range and Lo -- and Hi are set to the expressions for the end points of this range. elsif Is_Real_Type (Etype (Right)) then declare Leftval : constant Ureal := Expr_Value_R (Left); begin Result := Expr_Value_R (Lo) <= Leftval and then Leftval <= Expr_Value_R (Hi); end; else declare Leftval : constant Uint := Expr_Value (Left); begin Result := Expr_Value (Lo) <= Leftval and then Leftval <= Expr_Value (Hi); end; end if; if Nkind (N) = N_Not_In then Result := not Result; end if; Fold_Uint (N, Test (Result)); Warn_On_Known_Condition (N); end Eval_Membership_Op; ------------------------ -- Eval_Named_Integer -- ------------------------ procedure Eval_Named_Integer (N : Node_Id) is begin Fold_Uint (N, Expr_Value (Expression (Declaration_Node (Entity (N))))); end Eval_Named_Integer; --------------------- -- Eval_Named_Real -- --------------------- procedure Eval_Named_Real (N : Node_Id) is begin Fold_Ureal (N, Expr_Value_R (Expression (Declaration_Node (Entity (N))))); end Eval_Named_Real; ------------------- -- Eval_Op_Expon -- ------------------- -- Exponentiation is a static functions, so the result is potentially -- static if both operands are potentially static (RM 4.9(7), 4.9(20)). procedure Eval_Op_Expon (N : Node_Id) is Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); Stat : Boolean; Fold : Boolean; begin -- If not foldable we are done Test_Expression_Is_Foldable (N, Left, Right, Stat, Fold); if not Fold then return; end if; -- Fold exponentiation operation declare Right_Int : constant Uint := Expr_Value (Right); begin -- Integer case if Is_Integer_Type (Etype (Left)) then declare Left_Int : constant Uint := Expr_Value (Left); Result : Uint; begin -- Exponentiation of an integer raises the exception -- Constraint_Error for a negative exponent (RM 4.5.6) if Right_Int < 0 then Apply_Compile_Time_Constraint_Error (N, "integer exponent negative"); return; else if OK_Bits (N, Num_Bits (Left_Int) * Right_Int) then Result := Left_Int ** Right_Int; else Result := Left_Int; end if; if Is_Modular_Integer_Type (Etype (N)) then Result := Result mod Modulus (Etype (N)); end if; Fold_Uint (N, Result); end if; end; -- Real case else declare Left_Real : constant Ureal := Expr_Value_R (Left); begin -- Cannot have a zero base with a negative exponent if UR_Is_Zero (Left_Real) then if Right_Int < 0 then Apply_Compile_Time_Constraint_Error (N, "zero ** negative integer"); return; else Fold_Ureal (N, Ureal_0); end if; else Fold_Ureal (N, Left_Real ** Right_Int); end if; end; end if; Set_Is_Static_Expression (N, Stat); end; end Eval_Op_Expon; ----------------- -- Eval_Op_Not -- ----------------- -- The not operation is a static functions, so the result is potentially -- static if the operand is potentially static (RM 4.9(7), 4.9(20)). procedure Eval_Op_Not (N : Node_Id) is Right : constant Node_Id := Right_Opnd (N); Stat : Boolean; Fold : Boolean; begin -- If not foldable we are done Test_Expression_Is_Foldable (N, Right, Stat, Fold); if not Fold then return; end if; -- Fold not operation declare Rint : constant Uint := Expr_Value (Right); Typ : constant Entity_Id := Etype (N); begin -- Negation is equivalent to subtracting from the modulus minus -- one. For a binary modulus this is equivalent to the ones- -- component of the original value. For non-binary modulus this -- is an arbitrary but consistent definition. if Is_Modular_Integer_Type (Typ) then Fold_Uint (N, Modulus (Typ) - 1 - Rint); else pragma Assert (Is_Boolean_Type (Typ)); Fold_Uint (N, Test (not Is_True (Rint))); end if; Set_Is_Static_Expression (N, Stat); end; end Eval_Op_Not; ------------------------------- -- Eval_Qualified_Expression -- ------------------------------- -- A qualified expression is potentially static if its subtype mark denotes -- a static subtype and its expression is potentially static (RM 4.9 (11)). procedure Eval_Qualified_Expression (N : Node_Id) is Operand : constant Node_Id := Expression (N); Target_Type : constant Entity_Id := Entity (Subtype_Mark (N)); Stat : Boolean; Fold : Boolean; begin -- Can only fold if target is string or scalar and subtype is static -- Also, do not fold if our parent is an allocator (this is because -- the qualified expression is really part of the syntactic structure -- of an allocator, and we do not want to end up with something that -- corresponds to "new 1" where the 1 is the result of folding a -- qualified expression). if not Is_Static_Subtype (Target_Type) or else Nkind (Parent (N)) = N_Allocator then Check_Non_Static_Context (Operand); return; end if; -- If not foldable we are done Test_Expression_Is_Foldable (N, Operand, Stat, Fold); if not Fold then return; -- Don't try fold if target type has constraint error bounds elsif not Is_OK_Static_Subtype (Target_Type) then Set_Raises_Constraint_Error (N); return; end if; -- Fold the result of qualification if Is_Discrete_Type (Target_Type) then Fold_Uint (N, Expr_Value (Operand)); Set_Is_Static_Expression (N, Stat); elsif Is_Real_Type (Target_Type) then Fold_Ureal (N, Expr_Value_R (Operand)); Set_Is_Static_Expression (N, Stat); else Fold_Str (N, Strval (Get_String_Val (Operand))); if not Stat then Set_Is_Static_Expression (N, False); else Check_String_Literal_Length (N, Target_Type); end if; return; end if; if Is_Out_Of_Range (N, Etype (N)) then Out_Of_Range (N); end if; end Eval_Qualified_Expression; ----------------------- -- Eval_Real_Literal -- ----------------------- -- Numeric literals are static (RM 4.9(1)), and have already been marked -- as static by the analyzer. The reason we did it that early is to allow -- the possibility of turning off the Is_Static_Expression flag after -- analysis, but before resolution, when integer literals are generated -- in the expander that do not correspond to static expressions. procedure Eval_Real_Literal (N : Node_Id) is begin -- If the literal appears in a non-expression context, then it is -- certainly appearing in a non-static context, so check it. if Nkind (Parent (N)) not in N_Subexpr then Check_Non_Static_Context (N); end if; end Eval_Real_Literal; ------------------------ -- Eval_Relational_Op -- ------------------------ -- Relational operations are static functions, so the result is static -- if both operands are static (RM 4.9(7), 4.9(20)). procedure Eval_Relational_Op (N : Node_Id) is Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); Typ : constant Entity_Id := Etype (Left); Result : Boolean; Stat : Boolean; Fold : Boolean; begin -- One special case to deal with first. If we can tell that -- the result will be false because the lengths of one or -- more index subtypes are compile time known and different, -- then we can replace the entire result by False. We only -- do this for one dimensional arrays, because the case of -- multi-dimensional arrays is rare and too much trouble! if Is_Array_Type (Typ) and then Number_Dimensions (Typ) = 1 and then (Nkind (N) = N_Op_Eq or else Nkind (N) = N_Op_Ne) then if Raises_Constraint_Error (Left) or else Raises_Constraint_Error (Right) then return; end if; declare procedure Get_Static_Length (Op : Node_Id; Len : out Uint); -- If Op is an expression for a constrained array with a -- known at compile time length, then Len is set to this -- (non-negative length). Otherwise Len is set to minus 1. procedure Get_Static_Length (Op : Node_Id; Len : out Uint) is T : Entity_Id; begin if Nkind (Op) = N_String_Literal then Len := UI_From_Int (String_Length (Strval (Op))); elsif not Is_Constrained (Etype (Op)) then Len := Uint_Minus_1; else T := Etype (First_Index (Etype (Op))); if Is_Discrete_Type (T) and then Compile_Time_Known_Value (Type_Low_Bound (T)) and then Compile_Time_Known_Value (Type_High_Bound (T)) then Len := UI_Max (Uint_0, Expr_Value (Type_High_Bound (T)) - Expr_Value (Type_Low_Bound (T)) + 1); else Len := Uint_Minus_1; end if; end if; end Get_Static_Length; Len_L : Uint; Len_R : Uint; begin Get_Static_Length (Left, Len_L); Get_Static_Length (Right, Len_R); if Len_L /= Uint_Minus_1 and then Len_R /= Uint_Minus_1 and then Len_L /= Len_R then Fold_Uint (N, Test (Nkind (N) = N_Op_Ne)); Set_Is_Static_Expression (N, False); Warn_On_Known_Condition (N); return; end if; end; end if; -- Can only fold if type is scalar (don't fold string ops) if not Is_Scalar_Type (Typ) then Check_Non_Static_Context (Left); Check_Non_Static_Context (Right); return; end if; -- If not foldable we are done Test_Expression_Is_Foldable (N, Left, Right, Stat, Fold); if not Fold then return; end if; -- Integer and Enumeration (discrete) type cases if Is_Discrete_Type (Typ) then declare Left_Int : constant Uint := Expr_Value (Left); Right_Int : constant Uint := Expr_Value (Right); begin case Nkind (N) is when N_Op_Eq => Result := Left_Int = Right_Int; when N_Op_Ne => Result := Left_Int /= Right_Int; when N_Op_Lt => Result := Left_Int < Right_Int; when N_Op_Le => Result := Left_Int <= Right_Int; when N_Op_Gt => Result := Left_Int > Right_Int; when N_Op_Ge => Result := Left_Int >= Right_Int; when others => raise Program_Error; end case; Fold_Uint (N, Test (Result)); end; -- Real type case else pragma Assert (Is_Real_Type (Typ)); declare Left_Real : constant Ureal := Expr_Value_R (Left); Right_Real : constant Ureal := Expr_Value_R (Right); begin case Nkind (N) is when N_Op_Eq => Result := (Left_Real = Right_Real); when N_Op_Ne => Result := (Left_Real /= Right_Real); when N_Op_Lt => Result := (Left_Real < Right_Real); when N_Op_Le => Result := (Left_Real <= Right_Real); when N_Op_Gt => Result := (Left_Real > Right_Real); when N_Op_Ge => Result := (Left_Real >= Right_Real); when others => raise Program_Error; end case; Fold_Uint (N, Test (Result)); end; end if; Set_Is_Static_Expression (N, Stat); Warn_On_Known_Condition (N); end Eval_Relational_Op; ---------------- -- Eval_Shift -- ---------------- -- Shift operations are intrinsic operations that can never be static, -- so the only processing required is to perform the required check for -- a non static context for the two operands. -- Actually we could do some compile time evaluation here some time ??? procedure Eval_Shift (N : Node_Id) is begin Check_Non_Static_Context (Left_Opnd (N)); Check_Non_Static_Context (Right_Opnd (N)); end Eval_Shift; ------------------------ -- Eval_Short_Circuit -- ------------------------ -- A short circuit operation is potentially static if both operands -- are potentially static (RM 4.9 (13)) procedure Eval_Short_Circuit (N : Node_Id) is Kind : constant Node_Kind := Nkind (N); Left : constant Node_Id := Left_Opnd (N); Right : constant Node_Id := Right_Opnd (N); Left_Int : Uint; Rstat : constant Boolean := Is_Static_Expression (Left) and then Is_Static_Expression (Right); begin -- Short circuit operations are never static in Ada 83 if Ada_83 and then Comes_From_Source (N) then Check_Non_Static_Context (Left); Check_Non_Static_Context (Right); return; end if; -- Now look at the operands, we can't quite use the normal call to -- Test_Expression_Is_Foldable here because short circuit operations -- are a special case, they can still be foldable, even if the right -- operand raises constraint error. -- If either operand is Any_Type, just propagate to result and -- do not try to fold, this prevents cascaded errors. if Etype (Left) = Any_Type or else Etype (Right) = Any_Type then Set_Etype (N, Any_Type); return; -- If left operand raises constraint error, then replace node N with -- the raise constraint error node, and we are obviously not foldable. -- Is_Static_Expression is set from the two operands in the normal way, -- and we check the right operand if it is in a non-static context. elsif Raises_Constraint_Error (Left) then if not Rstat then Check_Non_Static_Context (Right); end if; Rewrite_In_Raise_CE (N, Left); Set_Is_Static_Expression (N, Rstat); return; -- If the result is not static, then we won't in any case fold elsif not Rstat then Check_Non_Static_Context (Left); Check_Non_Static_Context (Right); return; end if; -- Here the result is static, note that, unlike the normal processing -- in Test_Expression_Is_Foldable, we did *not* check above to see if -- the right operand raises constraint error, that's because it is not -- significant if the left operand is decisive. Set_Is_Static_Expression (N); -- It does not matter if the right operand raises constraint error if -- it will not be evaluated. So deal specially with the cases where -- the right operand is not evaluated. Note that we will fold these -- cases even if the right operand is non-static, which is fine, but -- of course in these cases the result is not potentially static. Left_Int := Expr_Value (Left); if (Kind = N_And_Then and then Is_False (Left_Int)) or else (Kind = N_Or_Else and Is_True (Left_Int)) then Fold_Uint (N, Left_Int); return; end if; -- If first operand not decisive, then it does matter if the right -- operand raises constraint error, since it will be evaluated, so -- we simply replace the node with the right operand. Note that this -- properly propagates Is_Static_Expression and Raises_Constraint_Error -- (both are set to True in Right). if Raises_Constraint_Error (Right) then Rewrite_In_Raise_CE (N, Right); Check_Non_Static_Context (Left); return; end if; -- Otherwise the result depends on the right operand Fold_Uint (N, Expr_Value (Right)); return; end Eval_Short_Circuit; ---------------- -- Eval_Slice -- ---------------- -- Slices can never be static, so the only processing required is to -- check for non-static context if an explicit range is given. procedure Eval_Slice (N : Node_Id) is Drange : constant Node_Id := Discrete_Range (N); begin if Nkind (Drange) = N_Range then Check_Non_Static_Context (Low_Bound (Drange)); Check_Non_Static_Context (High_Bound (Drange)); end if; end Eval_Slice; ------------------------- -- Eval_String_Literal -- ------------------------- procedure Eval_String_Literal (N : Node_Id) is T : constant Entity_Id := Etype (N); B : constant Entity_Id := Base_Type (T); I : Entity_Id; begin -- Nothing to do if error type (handles cases like default expressions -- or generics where we have not yet fully resolved the type) if B = Any_Type or else B = Any_String then return; -- String literals are static if the subtype is static (RM 4.9(2)), so -- reset the static expression flag (it was set unconditionally in -- Analyze_String_Literal) if the subtype is non-static. We tell if -- the subtype is static by looking at the lower bound. elsif not Is_OK_Static_Expression (String_Literal_Low_Bound (T)) then Set_Is_Static_Expression (N, False); elsif Nkind (Original_Node (N)) = N_Type_Conversion then Set_Is_Static_Expression (N, False); -- Test for illegal Ada 95 cases. A string literal is illegal in -- Ada 95 if its bounds are outside the index base type and this -- index type is static. This can hapen in only two ways. Either -- the string literal is too long, or it is null, and the lower -- bound is type'First. In either case it is the upper bound that -- is out of range of the index type. elsif Ada_95 then if Root_Type (B) = Standard_String or else Root_Type (B) = Standard_Wide_String then I := Standard_Positive; else I := Etype (First_Index (B)); end if; if String_Literal_Length (T) > String_Type_Len (B) then Apply_Compile_Time_Constraint_Error (N, "string literal too long for}", Ent => B, Typ => First_Subtype (B)); elsif String_Literal_Length (T) = 0 and then not Is_Generic_Type (I) and then Expr_Value (String_Literal_Low_Bound (T)) = Expr_Value (Type_Low_Bound (Base_Type (I))) then Apply_Compile_Time_Constraint_Error (N, "null string literal not allowed for}", Ent => B, Typ => First_Subtype (B)); end if; end if; end Eval_String_Literal; -------------------------- -- Eval_Type_Conversion -- -------------------------- -- A type conversion is potentially static if its subtype mark is for a -- static scalar subtype, and its operand expression is potentially static -- (RM 4.9 (10)) procedure Eval_Type_Conversion (N : Node_Id) is Operand : constant Node_Id := Expression (N); Source_Type : constant Entity_Id := Etype (Operand); Target_Type : constant Entity_Id := Etype (N); Stat : Boolean; Fold : Boolean; function To_Be_Treated_As_Integer (T : Entity_Id) return Boolean; -- Returns true if type T is an integer type, or if it is a -- fixed-point type to be treated as an integer (i.e. the flag -- Conversion_OK is set on the conversion node). function To_Be_Treated_As_Real (T : Entity_Id) return Boolean; -- Returns true if type T is a floating-point type, or if it is a -- fixed-point type that is not to be treated as an integer (i.e. the -- flag Conversion_OK is not set on the conversion node). function To_Be_Treated_As_Integer (T : Entity_Id) return Boolean is begin return Is_Integer_Type (T) or else (Is_Fixed_Point_Type (T) and then Conversion_OK (N)); end To_Be_Treated_As_Integer; function To_Be_Treated_As_Real (T : Entity_Id) return Boolean is begin return Is_Floating_Point_Type (T) or else (Is_Fixed_Point_Type (T) and then not Conversion_OK (N)); end To_Be_Treated_As_Real; -- Start of processing for Eval_Type_Conversion begin -- Cannot fold if target type is non-static or if semantic error. if not Is_Static_Subtype (Target_Type) then Check_Non_Static_Context (Operand); return; elsif Error_Posted (N) then return; end if; -- If not foldable we are done Test_Expression_Is_Foldable (N, Operand, Stat, Fold); if not Fold then return; -- Don't try fold if target type has constraint error bounds elsif not Is_OK_Static_Subtype (Target_Type) then Set_Raises_Constraint_Error (N); return; end if; -- Remaining processing depends on operand types. Note that in the -- following type test, fixed-point counts as real unless the flag -- Conversion_OK is set, in which case it counts as integer. -- Fold conversion, case of string type. The result is not static. if Is_String_Type (Target_Type) then Fold_Str (N, Strval (Get_String_Val (Operand))); Set_Is_Static_Expression (N, False); return; -- Fold conversion, case of integer target type elsif To_Be_Treated_As_Integer (Target_Type) then declare Result : Uint; begin -- Integer to integer conversion if To_Be_Treated_As_Integer (Source_Type) then Result := Expr_Value (Operand); -- Real to integer conversion else Result := UR_To_Uint (Expr_Value_R (Operand)); end if; -- If fixed-point type (Conversion_OK must be set), then the -- result is logically an integer, but we must replace the -- conversion with the corresponding real literal, since the -- type from a semantic point of view is still fixed-point. if Is_Fixed_Point_Type (Target_Type) then Fold_Ureal (N, UR_From_Uint (Result) * Small_Value (Target_Type)); -- Otherwise result is integer literal else Fold_Uint (N, Result); end if; end; -- Fold conversion, case of real target type elsif To_Be_Treated_As_Real (Target_Type) then declare Result : Ureal; begin if To_Be_Treated_As_Real (Source_Type) then Result := Expr_Value_R (Operand); else Result := UR_From_Uint (Expr_Value (Operand)); end if; Fold_Ureal (N, Result); end; -- Enumeration types else Fold_Uint (N, Expr_Value (Operand)); end if; Set_Is_Static_Expression (N, Stat); if Is_Out_Of_Range (N, Etype (N)) then Out_Of_Range (N); end if; end Eval_Type_Conversion; ------------------- -- Eval_Unary_Op -- ------------------- -- Predefined unary operators are static functions (RM 4.9(20)) and thus -- are potentially static if the operand is potentially static (RM 4.9(7)) procedure Eval_Unary_Op (N : Node_Id) is Right : constant Node_Id := Right_Opnd (N); Stat : Boolean; Fold : Boolean; begin -- If not foldable we are done Test_Expression_Is_Foldable (N, Right, Stat, Fold); if not Fold then return; end if; -- Fold for integer case if Is_Integer_Type (Etype (N)) then declare Rint : constant Uint := Expr_Value (Right); Result : Uint; begin -- In the case of modular unary plus and abs there is no need -- to adjust the result of the operation since if the original -- operand was in bounds the result will be in the bounds of the -- modular type. However, in the case of modular unary minus the -- result may go out of the bounds of the modular type and needs -- adjustment. if Nkind (N) = N_Op_Plus then Result := Rint; elsif Nkind (N) = N_Op_Minus then if Is_Modular_Integer_Type (Etype (N)) then Result := (-Rint) mod Modulus (Etype (N)); else Result := (-Rint); end if; else pragma Assert (Nkind (N) = N_Op_Abs); Result := abs Rint; end if; Fold_Uint (N, Result); end; -- Fold for real case elsif Is_Real_Type (Etype (N)) then declare Rreal : constant Ureal := Expr_Value_R (Right); Result : Ureal; begin if Nkind (N) = N_Op_Plus then Result := Rreal; elsif Nkind (N) = N_Op_Minus then Result := UR_Negate (Rreal); else pragma Assert (Nkind (N) = N_Op_Abs); Result := abs Rreal; end if; Fold_Ureal (N, Result); end; end if; Set_Is_Static_Expression (N, Stat); end Eval_Unary_Op; ------------------------------- -- Eval_Unchecked_Conversion -- ------------------------------- -- Unchecked conversions can never be static, so the only required -- processing is to check for a non-static context for the operand. procedure Eval_Unchecked_Conversion (N : Node_Id) is begin Check_Non_Static_Context (Expression (N)); end Eval_Unchecked_Conversion; -------------------- -- Expr_Rep_Value -- -------------------- function Expr_Rep_Value (N : Node_Id) return Uint is Kind : constant Node_Kind := Nkind (N); Ent : Entity_Id; begin if Is_Entity_Name (N) then Ent := Entity (N); -- An enumeration literal that was either in the source or -- created as a result of static evaluation. if Ekind (Ent) = E_Enumeration_Literal then return Enumeration_Rep (Ent); -- A user defined static constant else pragma Assert (Ekind (Ent) = E_Constant); return Expr_Rep_Value (Constant_Value (Ent)); end if; -- An integer literal that was either in the source or created -- as a result of static evaluation. elsif Kind = N_Integer_Literal then return Intval (N); -- A real literal for a fixed-point type. This must be the fixed-point -- case, either the literal is of a fixed-point type, or it is a bound -- of a fixed-point type, with type universal real. In either case we -- obtain the desired value from Corresponding_Integer_Value. elsif Kind = N_Real_Literal then -- Apply the assertion to the Underlying_Type of the literal for -- the benefit of calls to this function in the JGNAT back end, -- where literal types can reflect private views. pragma Assert (Is_Fixed_Point_Type (Underlying_Type (Etype (N)))); return Corresponding_Integer_Value (N); else pragma Assert (Kind = N_Character_Literal); Ent := Entity (N); -- Since Character literals of type Standard.Character don't -- have any defining character literals built for them, they -- do not have their Entity set, so just use their Char -- code. Otherwise for user-defined character literals use -- their Pos value as usual which is the same as the Rep value. if No (Ent) then return UI_From_Int (Int (Char_Literal_Value (N))); else return Enumeration_Rep (Ent); end if; end if; end Expr_Rep_Value; ---------------- -- Expr_Value -- ---------------- function Expr_Value (N : Node_Id) return Uint is Kind : constant Node_Kind := Nkind (N); Ent : Entity_Id; begin if Is_Entity_Name (N) then Ent := Entity (N); -- An enumeration literal that was either in the source or -- created as a result of static evaluation. if Ekind (Ent) = E_Enumeration_Literal then return Enumeration_Pos (Ent); -- A user defined static constant else pragma Assert (Ekind (Ent) = E_Constant); return Expr_Value (Constant_Value (Ent)); end if; -- An integer literal that was either in the source or created -- as a result of static evaluation. elsif Kind = N_Integer_Literal then return Intval (N); -- A real literal for a fixed-point type. This must be the fixed-point -- case, either the literal is of a fixed-point type, or it is a bound -- of a fixed-point type, with type universal real. In either case we -- obtain the desired value from Corresponding_Integer_Value. elsif Kind = N_Real_Literal then -- Apply the assertion to the Underlying_Type of the literal for -- the benefit of calls to this function in the JGNAT back end, -- where literal types can reflect private views. pragma Assert (Is_Fixed_Point_Type (Underlying_Type (Etype (N)))); return Corresponding_Integer_Value (N); -- Peculiar VMS case, if we have xxx'Null_Parameter, return zero elsif Kind = N_Attribute_Reference and then Attribute_Name (N) = Name_Null_Parameter then return Uint_0; -- Otherwise must be character literal else pragma Assert (Kind = N_Character_Literal); Ent := Entity (N); -- Since Character literals of type Standard.Character don't -- have any defining character literals built for them, they -- do not have their Entity set, so just use their Char -- code. Otherwise for user-defined character literals use -- their Pos value as usual. if No (Ent) then return UI_From_Int (Int (Char_Literal_Value (N))); else return Enumeration_Pos (Ent); end if; end if; end Expr_Value; ------------------ -- Expr_Value_E -- ------------------ function Expr_Value_E (N : Node_Id) return Entity_Id is Ent : constant Entity_Id := Entity (N); begin if Ekind (Ent) = E_Enumeration_Literal then return Ent; else pragma Assert (Ekind (Ent) = E_Constant); return Expr_Value_E (Constant_Value (Ent)); end if; end Expr_Value_E; ------------------ -- Expr_Value_R -- ------------------ function Expr_Value_R (N : Node_Id) return Ureal is Kind : constant Node_Kind := Nkind (N); Ent : Entity_Id; Expr : Node_Id; begin if Kind = N_Real_Literal then return Realval (N); elsif Kind = N_Identifier or else Kind = N_Expanded_Name then Ent := Entity (N); pragma Assert (Ekind (Ent) = E_Constant); return Expr_Value_R (Constant_Value (Ent)); elsif Kind = N_Integer_Literal then return UR_From_Uint (Expr_Value (N)); -- Strange case of VAX literals, which are at this stage transformed -- into Vax_Type!x_To_y(IEEE_Literal). See Expand_N_Real_Literal in -- Exp_Vfpt for further details. elsif Vax_Float (Etype (N)) and then Nkind (N) = N_Unchecked_Type_Conversion then Expr := Expression (N); if Nkind (Expr) = N_Function_Call and then Present (Parameter_Associations (Expr)) then Expr := First (Parameter_Associations (Expr)); if Nkind (Expr) = N_Real_Literal then return Realval (Expr); end if; end if; -- Peculiar VMS case, if we have xxx'Null_Parameter, return 0.0 elsif Kind = N_Attribute_Reference and then Attribute_Name (N) = Name_Null_Parameter then return Ureal_0; end if; -- If we fall through, we have a node that cannot be interepreted -- as a compile time constant. That is definitely an error. raise Program_Error; end Expr_Value_R; ------------------ -- Expr_Value_S -- ------------------ function Expr_Value_S (N : Node_Id) return Node_Id is begin if Nkind (N) = N_String_Literal then return N; else pragma Assert (Ekind (Entity (N)) = E_Constant); return Expr_Value_S (Constant_Value (Entity (N))); end if; end Expr_Value_S; -------------- -- Fold_Str -- -------------- procedure Fold_Str (N : Node_Id; Val : String_Id) is Loc : constant Source_Ptr := Sloc (N); Typ : constant Entity_Id := Etype (N); begin Rewrite (N, Make_String_Literal (Loc, Strval => Val)); Analyze_And_Resolve (N, Typ); end Fold_Str; --------------- -- Fold_Uint -- --------------- procedure Fold_Uint (N : Node_Id; Val : Uint) is Loc : constant Source_Ptr := Sloc (N); Typ : constant Entity_Id := Etype (N); begin -- For a result of type integer, subsitute an N_Integer_Literal node -- for the result of the compile time evaluation of the expression. if Is_Integer_Type (Etype (N)) then Rewrite (N, Make_Integer_Literal (Loc, Val)); -- Otherwise we have an enumeration type, and we substitute either -- an N_Identifier or N_Character_Literal to represent the enumeration -- literal corresponding to the given value, which must always be in -- range, because appropriate tests have already been made for this. else pragma Assert (Is_Enumeration_Type (Etype (N))); Rewrite (N, Get_Enum_Lit_From_Pos (Etype (N), Val, Loc)); end if; -- We now have the literal with the right value, both the actual type -- and the expected type of this literal are taken from the expression -- that was evaluated. Analyze (N); Set_Etype (N, Typ); Resolve (N, Typ); end Fold_Uint; ---------------- -- Fold_Ureal -- ---------------- procedure Fold_Ureal (N : Node_Id; Val : Ureal) is Loc : constant Source_Ptr := Sloc (N); Typ : constant Entity_Id := Etype (N); begin Rewrite (N, Make_Real_Literal (Loc, Realval => Val)); Analyze (N); -- Both the actual and expected type comes from the original expression Set_Etype (N, Typ); Resolve (N, Typ); end Fold_Ureal; --------------- -- From_Bits -- --------------- function From_Bits (B : Bits; T : Entity_Id) return Uint is V : Uint := Uint_0; begin for J in 0 .. B'Last loop if B (J) then V := V + 2 ** J; end if; end loop; if Non_Binary_Modulus (T) then V := V mod Modulus (T); end if; return V; end From_Bits; -------------------- -- Get_String_Val -- -------------------- function Get_String_Val (N : Node_Id) return Node_Id is begin if Nkind (N) = N_String_Literal then return N; elsif Nkind (N) = N_Character_Literal then return N; else pragma Assert (Is_Entity_Name (N)); return Get_String_Val (Constant_Value (Entity (N))); end if; end Get_String_Val; -------------------- -- In_Subrange_Of -- -------------------- function In_Subrange_Of (T1 : Entity_Id; T2 : Entity_Id; Fixed_Int : Boolean := False) return Boolean is L1 : Node_Id; H1 : Node_Id; L2 : Node_Id; H2 : Node_Id; begin if T1 = T2 or else Is_Subtype_Of (T1, T2) then return True; -- Never in range if both types are not scalar. Don't know if this can -- actually happen, but just in case. elsif not Is_Scalar_Type (T1) or else not Is_Scalar_Type (T1) then return False; else L1 := Type_Low_Bound (T1); H1 := Type_High_Bound (T1); L2 := Type_Low_Bound (T2); H2 := Type_High_Bound (T2); -- Check bounds to see if comparison possible at compile time if Compile_Time_Compare (L1, L2) in Compare_GE and then Compile_Time_Compare (H1, H2) in Compare_LE then return True; end if; -- If bounds not comparable at compile time, then the bounds of T2 -- must be compile time known or we cannot answer the query. if not Compile_Time_Known_Value (L2) or else not Compile_Time_Known_Value (H2) then return False; end if; -- If the bounds of T1 are know at compile time then use these -- ones, otherwise use the bounds of the base type (which are of -- course always static). if not Compile_Time_Known_Value (L1) then L1 := Type_Low_Bound (Base_Type (T1)); end if; if not Compile_Time_Known_Value (H1) then H1 := Type_High_Bound (Base_Type (T1)); end if; -- Fixed point types should be considered as such only if -- flag Fixed_Int is set to False. if Is_Floating_Point_Type (T1) or else Is_Floating_Point_Type (T2) or else (Is_Fixed_Point_Type (T1) and then not Fixed_Int) or else (Is_Fixed_Point_Type (T2) and then not Fixed_Int) then return Expr_Value_R (L2) <= Expr_Value_R (L1) and then Expr_Value_R (H2) >= Expr_Value_R (H1); else return Expr_Value (L2) <= Expr_Value (L1) and then Expr_Value (H2) >= Expr_Value (H1); end if; end if; -- If any exception occurs, it means that we have some bug in the compiler -- possibly triggered by a previous error, or by some unforseen peculiar -- occurrence. However, this is only an optimization attempt, so there is -- really no point in crashing the compiler. Instead we just decide, too -- bad, we can't figure out the answer in this case after all. exception when others => -- Debug flag K disables this behavior (useful for debugging) if Debug_Flag_K then raise; else return False; end if; end In_Subrange_Of; ----------------- -- Is_In_Range -- ----------------- function Is_In_Range (N : Node_Id; Typ : Entity_Id; Fixed_Int : Boolean := False; Int_Real : Boolean := False) return Boolean is Val : Uint; Valr : Ureal; begin -- Universal types have no range limits, so always in range. if Typ = Universal_Integer or else Typ = Universal_Real then return True; -- Never in range if not scalar type. Don't know if this can -- actually happen, but our spec allows it, so we must check! elsif not Is_Scalar_Type (Typ) then return False; -- Never in range unless we have a compile time known value. elsif not Compile_Time_Known_Value (N) then return False; else declare Lo : constant Node_Id := Type_Low_Bound (Typ); Hi : constant Node_Id := Type_High_Bound (Typ); LB_Known : constant Boolean := Compile_Time_Known_Value (Lo); UB_Known : constant Boolean := Compile_Time_Known_Value (Hi); begin -- Fixed point types should be considered as such only in -- flag Fixed_Int is set to False. if Is_Floating_Point_Type (Typ) or else (Is_Fixed_Point_Type (Typ) and then not Fixed_Int) or else Int_Real then Valr := Expr_Value_R (N); if LB_Known and then Valr >= Expr_Value_R (Lo) and then UB_Known and then Valr <= Expr_Value_R (Hi) then return True; else return False; end if; else Val := Expr_Value (N); if LB_Known and then Val >= Expr_Value (Lo) and then UB_Known and then Val <= Expr_Value (Hi) then return True; else return False; end if; end if; end; end if; end Is_In_Range; ------------------- -- Is_Null_Range -- ------------------- function Is_Null_Range (Lo : Node_Id; Hi : Node_Id) return Boolean is Typ : constant Entity_Id := Etype (Lo); begin if not Compile_Time_Known_Value (Lo) or else not Compile_Time_Known_Value (Hi) then return False; end if; if Is_Discrete_Type (Typ) then return Expr_Value (Lo) > Expr_Value (Hi); else pragma Assert (Is_Real_Type (Typ)); return Expr_Value_R (Lo) > Expr_Value_R (Hi); end if; end Is_Null_Range; ----------------------------- -- Is_OK_Static_Expression -- ----------------------------- function Is_OK_Static_Expression (N : Node_Id) return Boolean is begin return Is_Static_Expression (N) and then not Raises_Constraint_Error (N); end Is_OK_Static_Expression; ------------------------ -- Is_OK_Static_Range -- ------------------------ -- A static range is a range whose bounds are static expressions, or a -- Range_Attribute_Reference equivalent to such a range (RM 4.9(26)). -- We have already converted range attribute references, so we get the -- "or" part of this rule without needing a special test. function Is_OK_Static_Range (N : Node_Id) return Boolean is begin return Is_OK_Static_Expression (Low_Bound (N)) and then Is_OK_Static_Expression (High_Bound (N)); end Is_OK_Static_Range; -------------------------- -- Is_OK_Static_Subtype -- -------------------------- -- Determines if Typ is a static subtype as defined in (RM 4.9(26)) -- where neither bound raises constraint error when evaluated. function Is_OK_Static_Subtype (Typ : Entity_Id) return Boolean is Base_T : constant Entity_Id := Base_Type (Typ); Anc_Subt : Entity_Id; begin -- First a quick check on the non static subtype flag. As described -- in further detail in Einfo, this flag is not decisive in all cases, -- but if it is set, then the subtype is definitely non-static. if Is_Non_Static_Subtype (Typ) then return False; end if; Anc_Subt := Ancestor_Subtype (Typ); if Anc_Subt = Empty then Anc_Subt := Base_T; end if; if Is_Generic_Type (Root_Type (Base_T)) or else Is_Generic_Actual_Type (Base_T) then return False; -- String types elsif Is_String_Type (Typ) then return Ekind (Typ) = E_String_Literal_Subtype or else (Is_OK_Static_Subtype (Component_Type (Typ)) and then Is_OK_Static_Subtype (Etype (First_Index (Typ)))); -- Scalar types elsif Is_Scalar_Type (Typ) then if Base_T = Typ then return True; else -- Scalar_Range (Typ) might be an N_Subtype_Indication, so -- use Get_Type_Low,High_Bound. return Is_OK_Static_Subtype (Anc_Subt) and then Is_OK_Static_Expression (Type_Low_Bound (Typ)) and then Is_OK_Static_Expression (Type_High_Bound (Typ)); end if; -- Types other than string and scalar types are never static else return False; end if; end Is_OK_Static_Subtype; --------------------- -- Is_Out_Of_Range -- --------------------- function Is_Out_Of_Range (N : Node_Id; Typ : Entity_Id; Fixed_Int : Boolean := False; Int_Real : Boolean := False) return Boolean is Val : Uint; Valr : Ureal; begin -- Universal types have no range limits, so always in range. if Typ = Universal_Integer or else Typ = Universal_Real then return False; -- Never out of range if not scalar type. Don't know if this can -- actually happen, but our spec allows it, so we must check! elsif not Is_Scalar_Type (Typ) then return False; -- Never out of range if this is a generic type, since the bounds -- of generic types are junk. Note that if we only checked for -- static expressions (instead of compile time known values) below, -- we would not need this check, because values of a generic type -- can never be static, but they can be known at compile time. elsif Is_Generic_Type (Typ) then return False; -- Never out of range unless we have a compile time known value. elsif not Compile_Time_Known_Value (N) then return False; else declare Lo : constant Node_Id := Type_Low_Bound (Typ); Hi : constant Node_Id := Type_High_Bound (Typ); LB_Known : constant Boolean := Compile_Time_Known_Value (Lo); UB_Known : constant Boolean := Compile_Time_Known_Value (Hi); begin -- Real types (note that fixed-point types are not treated -- as being of a real type if the flag Fixed_Int is set, -- since in that case they are regarded as integer types). if Is_Floating_Point_Type (Typ) or else (Is_Fixed_Point_Type (Typ) and then not Fixed_Int) or else Int_Real then Valr := Expr_Value_R (N); if LB_Known and then Valr < Expr_Value_R (Lo) then return True; elsif UB_Known and then Expr_Value_R (Hi) < Valr then return True; else return False; end if; else Val := Expr_Value (N); if LB_Known and then Val < Expr_Value (Lo) then return True; elsif UB_Known and then Expr_Value (Hi) < Val then return True; else return False; end if; end if; end; end if; end Is_Out_Of_Range; --------------------- -- Is_Static_Range -- --------------------- -- A static range is a range whose bounds are static expressions, or a -- Range_Attribute_Reference equivalent to such a range (RM 4.9(26)). -- We have already converted range attribute references, so we get the -- "or" part of this rule without needing a special test. function Is_Static_Range (N : Node_Id) return Boolean is begin return Is_Static_Expression (Low_Bound (N)) and then Is_Static_Expression (High_Bound (N)); end Is_Static_Range; ----------------------- -- Is_Static_Subtype -- ----------------------- -- Determines if Typ is a static subtype as defined in (RM 4.9(26)). function Is_Static_Subtype (Typ : Entity_Id) return Boolean is Base_T : constant Entity_Id := Base_Type (Typ); Anc_Subt : Entity_Id; begin -- First a quick check on the non static subtype flag. As described -- in further detail in Einfo, this flag is not decisive in all cases, -- but if it is set, then the subtype is definitely non-static. if Is_Non_Static_Subtype (Typ) then return False; end if; Anc_Subt := Ancestor_Subtype (Typ); if Anc_Subt = Empty then Anc_Subt := Base_T; end if; if Is_Generic_Type (Root_Type (Base_T)) or else Is_Generic_Actual_Type (Base_T) then return False; -- String types elsif Is_String_Type (Typ) then return Ekind (Typ) = E_String_Literal_Subtype or else (Is_Static_Subtype (Component_Type (Typ)) and then Is_Static_Subtype (Etype (First_Index (Typ)))); -- Scalar types elsif Is_Scalar_Type (Typ) then if Base_T = Typ then return True; else return Is_Static_Subtype (Anc_Subt) and then Is_Static_Expression (Type_Low_Bound (Typ)) and then Is_Static_Expression (Type_High_Bound (Typ)); end if; -- Types other than string and scalar types are never static else return False; end if; end Is_Static_Subtype; -------------------- -- Not_Null_Range -- -------------------- function Not_Null_Range (Lo : Node_Id; Hi : Node_Id) return Boolean is Typ : constant Entity_Id := Etype (Lo); begin if not Compile_Time_Known_Value (Lo) or else not Compile_Time_Known_Value (Hi) then return False; end if; if Is_Discrete_Type (Typ) then return Expr_Value (Lo) <= Expr_Value (Hi); else pragma Assert (Is_Real_Type (Typ)); return Expr_Value_R (Lo) <= Expr_Value_R (Hi); end if; end Not_Null_Range; ------------- -- OK_Bits -- ------------- function OK_Bits (N : Node_Id; Bits : Uint) return Boolean is begin -- We allow a maximum of 500,000 bits which seems a reasonable limit if Bits < 500_000 then return True; else Error_Msg_N ("static value too large, capacity exceeded", N); return False; end if; end OK_Bits; ------------------ -- Out_Of_Range -- ------------------ procedure Out_Of_Range (N : Node_Id) is begin -- If we have the static expression case, then this is an illegality -- in Ada 95 mode, except that in an instance, we never generate an -- error (if the error is legitimate, it was already diagnosed in -- the template). The expression to compute the length of a packed -- array is attached to the array type itself, and deserves a separate -- message. if Is_Static_Expression (N) and then not In_Instance and then Ada_95 then if Nkind (Parent (N)) = N_Defining_Identifier and then Is_Array_Type (Parent (N)) and then Present (Packed_Array_Type (Parent (N))) and then Present (First_Rep_Item (Parent (N))) then Error_Msg_N ("length of packed array must not exceed Integer''Last", First_Rep_Item (Parent (N))); Rewrite (N, Make_Integer_Literal (Sloc (N), Uint_1)); else Apply_Compile_Time_Constraint_Error (N, "value not in range of}"); end if; -- Here we generate a warning for the Ada 83 case, or when we are -- in an instance, or when we have a non-static expression case. else Warn_On_Instance := True; Apply_Compile_Time_Constraint_Error (N, "value not in range of}?"); Warn_On_Instance := False; end if; end Out_Of_Range; ------------------------- -- Rewrite_In_Raise_CE -- ------------------------- procedure Rewrite_In_Raise_CE (N : Node_Id; Exp : Node_Id) is Typ : constant Entity_Id := Etype (N); begin -- If we want to raise CE in the condition of a raise_CE node -- we may as well get rid of the condition if Present (Parent (N)) and then Nkind (Parent (N)) = N_Raise_Constraint_Error then Set_Condition (Parent (N), Empty); -- If the expression raising CE is a N_Raise_CE node, we can use -- that one. We just preserve the type of the context elsif Nkind (Exp) = N_Raise_Constraint_Error then Rewrite (N, Exp); Set_Etype (N, Typ); -- We have to build an explicit raise_ce node else Rewrite (N, Make_Raise_Constraint_Error (Sloc (Exp))); Set_Raises_Constraint_Error (N); Set_Etype (N, Typ); end if; end Rewrite_In_Raise_CE; --------------------- -- String_Type_Len -- --------------------- function String_Type_Len (Stype : Entity_Id) return Uint is NT : constant Entity_Id := Etype (First_Index (Stype)); T : Entity_Id; begin if Is_OK_Static_Subtype (NT) then T := NT; else T := Base_Type (NT); end if; return Expr_Value (Type_High_Bound (T)) - Expr_Value (Type_Low_Bound (T)) + 1; end String_Type_Len; ------------------------------------ -- Subtypes_Statically_Compatible -- ------------------------------------ function Subtypes_Statically_Compatible (T1 : Entity_Id; T2 : Entity_Id) return Boolean is begin if Is_Scalar_Type (T1) then -- Definitely compatible if we match if Subtypes_Statically_Match (T1, T2) then return True; -- If either subtype is nonstatic then they're not compatible elsif not Is_Static_Subtype (T1) or else not Is_Static_Subtype (T2) then return False; -- If either type has constraint error bounds, then consider that -- they match to avoid junk cascaded errors here. elsif not Is_OK_Static_Subtype (T1) or else not Is_OK_Static_Subtype (T2) then return True; -- Base types must match, but we don't check that (should -- we???) but we do at least check that both types are -- real, or both types are not real. elsif (Is_Real_Type (T1) /= Is_Real_Type (T2)) then return False; -- Here we check the bounds else declare LB1 : constant Node_Id := Type_Low_Bound (T1); HB1 : constant Node_Id := Type_High_Bound (T1); LB2 : constant Node_Id := Type_Low_Bound (T2); HB2 : constant Node_Id := Type_High_Bound (T2); begin if Is_Real_Type (T1) then return (Expr_Value_R (LB1) > Expr_Value_R (HB1)) or else (Expr_Value_R (LB2) <= Expr_Value_R (LB1) and then Expr_Value_R (HB1) <= Expr_Value_R (HB2)); else return (Expr_Value (LB1) > Expr_Value (HB1)) or else (Expr_Value (LB2) <= Expr_Value (LB1) and then Expr_Value (HB1) <= Expr_Value (HB2)); end if; end; end if; elsif Is_Access_Type (T1) then return not Is_Constrained (T2) or else Subtypes_Statically_Match (Designated_Type (T1), Designated_Type (T2)); else return (Is_Composite_Type (T1) and then not Is_Constrained (T2)) or else Subtypes_Statically_Match (T1, T2); end if; end Subtypes_Statically_Compatible; ------------------------------- -- Subtypes_Statically_Match -- ------------------------------- -- Subtypes statically match if they have statically matching constraints -- (RM 4.9.1(2)). Constraints statically match if there are none, or if -- they are the same identical constraint, or if they are static and the -- values match (RM 4.9.1(1)). function Subtypes_Statically_Match (T1, T2 : Entity_Id) return Boolean is begin -- A type always statically matches itself if T1 = T2 then return True; -- Scalar types elsif Is_Scalar_Type (T1) then -- Base types must be the same if Base_Type (T1) /= Base_Type (T2) then return False; end if; -- A constrained numeric subtype never matches an unconstrained -- subtype, i.e. both types must be constrained or unconstrained. -- To understand the requirement for this test, see RM 4.9.1(1). -- As is made clear in RM 3.5.4(11), type Integer, for example -- is a constrained subtype with constraint bounds matching the -- bounds of its corresponding uncontrained base type. In this -- situation, Integer and Integer'Base do not statically match, -- even though they have the same bounds. -- We only apply this test to types in Standard and types that -- appear in user programs. That way, we do not have to be -- too careful about setting Is_Constrained right for itypes. if Is_Numeric_Type (T1) and then (Is_Constrained (T1) /= Is_Constrained (T2)) and then (Scope (T1) = Standard_Standard or else Comes_From_Source (T1)) and then (Scope (T2) = Standard_Standard or else Comes_From_Source (T2)) then return False; end if; -- If there was an error in either range, then just assume -- the types statically match to avoid further junk errors if Error_Posted (Scalar_Range (T1)) or else Error_Posted (Scalar_Range (T2)) then return True; end if; -- Otherwise both types have bound that can be compared declare LB1 : constant Node_Id := Type_Low_Bound (T1); HB1 : constant Node_Id := Type_High_Bound (T1); LB2 : constant Node_Id := Type_Low_Bound (T2); HB2 : constant Node_Id := Type_High_Bound (T2); begin -- If the bounds are the same tree node, then match if LB1 = LB2 and then HB1 = HB2 then return True; -- Otherwise bounds must be static and identical value else if not Is_Static_Subtype (T1) or else not Is_Static_Subtype (T2) then return False; -- If either type has constraint error bounds, then say -- that they match to avoid junk cascaded errors here. elsif not Is_OK_Static_Subtype (T1) or else not Is_OK_Static_Subtype (T2) then return True; elsif Is_Real_Type (T1) then return (Expr_Value_R (LB1) = Expr_Value_R (LB2)) and then (Expr_Value_R (HB1) = Expr_Value_R (HB2)); else return Expr_Value (LB1) = Expr_Value (LB2) and then Expr_Value (HB1) = Expr_Value (HB2); end if; end if; end; -- Type with discriminants elsif Has_Discriminants (T1) or else Has_Discriminants (T2) then if Has_Discriminants (T1) /= Has_Discriminants (T2) then return False; end if; declare DL1 : constant Elist_Id := Discriminant_Constraint (T1); DL2 : constant Elist_Id := Discriminant_Constraint (T2); DA1 : Elmt_Id := First_Elmt (DL1); DA2 : Elmt_Id := First_Elmt (DL2); begin if DL1 = DL2 then return True; elsif Is_Constrained (T1) /= Is_Constrained (T2) then return False; end if; while Present (DA1) loop declare Expr1 : constant Node_Id := Node (DA1); Expr2 : constant Node_Id := Node (DA2); begin if not Is_Static_Expression (Expr1) or else not Is_Static_Expression (Expr2) then return False; -- If either expression raised a constraint error, -- consider the expressions as matching, since this -- helps to prevent cascading errors. elsif Raises_Constraint_Error (Expr1) or else Raises_Constraint_Error (Expr2) then null; elsif Expr_Value (Expr1) /= Expr_Value (Expr2) then return False; end if; end; Next_Elmt (DA1); Next_Elmt (DA2); end loop; end; return True; -- A definite type does not match an indefinite or classwide type. elsif Has_Unknown_Discriminants (T1) /= Has_Unknown_Discriminants (T2) then return False; -- Array type elsif Is_Array_Type (T1) then -- If either subtype is unconstrained then both must be, -- and if both are unconstrained then no further checking -- is needed. if not Is_Constrained (T1) or else not Is_Constrained (T2) then return not (Is_Constrained (T1) or else Is_Constrained (T2)); end if; -- Both subtypes are constrained, so check that the index -- subtypes statically match. declare Index1 : Node_Id := First_Index (T1); Index2 : Node_Id := First_Index (T2); begin while Present (Index1) loop if not Subtypes_Statically_Match (Etype (Index1), Etype (Index2)) then return False; end if; Next_Index (Index1); Next_Index (Index2); end loop; return True; end; elsif Is_Access_Type (T1) then return Subtypes_Statically_Match (Designated_Type (T1), Designated_Type (T2)); -- All other types definitely match else return True; end if; end Subtypes_Statically_Match; ---------- -- Test -- ---------- function Test (Cond : Boolean) return Uint is begin if Cond then return Uint_1; else return Uint_0; end if; end Test; --------------------------------- -- Test_Expression_Is_Foldable -- --------------------------------- -- One operand case procedure Test_Expression_Is_Foldable (N : Node_Id; Op1 : Node_Id; Stat : out Boolean; Fold : out Boolean) is begin Stat := False; -- If operand is Any_Type, just propagate to result and do not -- try to fold, this prevents cascaded errors. if Etype (Op1) = Any_Type then Set_Etype (N, Any_Type); Fold := False; return; -- If operand raises constraint error, then replace node N with the -- raise constraint error node, and we are obviously not foldable. -- Note that this replacement inherits the Is_Static_Expression flag -- from the operand. elsif Raises_Constraint_Error (Op1) then Rewrite_In_Raise_CE (N, Op1); Fold := False; return; -- If the operand is not static, then the result is not static, and -- all we have to do is to check the operand since it is now known -- to appear in a non-static context. elsif not Is_Static_Expression (Op1) then Check_Non_Static_Context (Op1); Fold := Compile_Time_Known_Value (Op1); return; -- An expression of a formal modular type is not foldable because -- the modulus is unknown. elsif Is_Modular_Integer_Type (Etype (Op1)) and then Is_Generic_Type (Etype (Op1)) then Check_Non_Static_Context (Op1); Fold := False; return; -- Here we have the case of an operand whose type is OK, which is -- static, and which does not raise constraint error, we can fold. else Set_Is_Static_Expression (N); Fold := True; Stat := True; end if; end Test_Expression_Is_Foldable; -- Two operand case procedure Test_Expression_Is_Foldable (N : Node_Id; Op1 : Node_Id; Op2 : Node_Id; Stat : out Boolean; Fold : out Boolean) is Rstat : constant Boolean := Is_Static_Expression (Op1) and then Is_Static_Expression (Op2); begin Stat := False; -- If either operand is Any_Type, just propagate to result and -- do not try to fold, this prevents cascaded errors. if Etype (Op1) = Any_Type or else Etype (Op2) = Any_Type then Set_Etype (N, Any_Type); Fold := False; return; -- If left operand raises constraint error, then replace node N with -- the raise constraint error node, and we are obviously not foldable. -- Is_Static_Expression is set from the two operands in the normal way, -- and we check the right operand if it is in a non-static context. elsif Raises_Constraint_Error (Op1) then if not Rstat then Check_Non_Static_Context (Op2); end if; Rewrite_In_Raise_CE (N, Op1); Set_Is_Static_Expression (N, Rstat); Fold := False; return; -- Similar processing for the case of the right operand. Note that -- we don't use this routine for the short-circuit case, so we do -- not have to worry about that special case here. elsif Raises_Constraint_Error (Op2) then if not Rstat then Check_Non_Static_Context (Op1); end if; Rewrite_In_Raise_CE (N, Op2); Set_Is_Static_Expression (N, Rstat); Fold := False; return; -- Exclude expressions of a generic modular type, as above. elsif Is_Modular_Integer_Type (Etype (Op1)) and then Is_Generic_Type (Etype (Op1)) then Check_Non_Static_Context (Op1); Fold := False; return; -- If result is not static, then check non-static contexts on operands -- since one of them may be static and the other one may not be static elsif not Rstat then Check_Non_Static_Context (Op1); Check_Non_Static_Context (Op2); Fold := Compile_Time_Known_Value (Op1) and then Compile_Time_Known_Value (Op2); return; -- Else result is static and foldable. Both operands are static, -- and neither raises constraint error, so we can definitely fold. else Set_Is_Static_Expression (N); Fold := True; Stat := True; return; end if; end Test_Expression_Is_Foldable; -------------- -- To_Bits -- -------------- procedure To_Bits (U : Uint; B : out Bits) is begin for J in 0 .. B'Last loop B (J) := (U / (2 ** J)) mod 2 /= 0; end loop; end To_Bits; end Sem_Eval;
32.348604
79
0.563435
20227efb0e3f54b6e689f296e89ba5edd15a7e4e
139
adb
Ada
src/002/father.adb
xeenta/learning-ada
bd3edf0c9e8b8eff814ffd89b040f488b80a7d5b
[ "MIT" ]
null
null
null
src/002/father.adb
xeenta/learning-ada
bd3edf0c9e8b8eff814ffd89b040f488b80a7d5b
[ "MIT" ]
null
null
null
src/002/father.adb
xeenta/learning-ada
bd3edf0c9e8b8eff814ffd89b040f488b80a7d5b
[ "MIT" ]
null
null
null
package body Father is procedure Father_What (A : in out Father_Type) is begin A := A + 1; end Father_What; end Father;
17.375
52
0.640288
18824d666a1bcd0c4e7435ac5bd43e883d04ec27
397
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/test_address_null_init.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/test_address_null_init.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/test_address_null_init.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- { dg-do run } -- { dg-options "-gnatws" } with Address_Null_Init; use Address_Null_Init; with Ada.Text_IO; use Ada.Text_IO; procedure Test_Address_Null_Init is begin if B /= null then Put_Line ("ERROR: B was not default initialized to null!"); end if; if A /= null then Put_Line ("ERROR: A was not reinitialized to null!"); end if; end Test_Address_Null_Init;
23.352941
65
0.675063
20cd8399d0f55650d7d116f391ab917e2831d184
66,238
adb
Ada
Sources/Model/spaceship_p.adb
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
1
2019-09-21T09:40:34.000Z
2019-09-21T09:40:34.000Z
Sources/Model/spaceship_p.adb
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
null
null
null
Sources/Model/spaceship_p.adb
ForYouEyesOnly/Space-Convoy
be4904f6a02695f7c4c5c3c965f4871cd3250003
[ "MIT" ]
1
2019-09-25T12:29:27.000Z
2019-09-25T12:29:27.000Z
-- -- Jan & Uwe R. Zimmer, Australia, July 2011 -- with GL, GL.Materials, GLOBE_3D.Math; package body Spaceship_P is -- Pretty output: FALSE use GL, GL.Materials, GLOBE_3D, GLOBE_3D.Math; -- begin Separator # 1 -- VRML: [# triangle mesh -- ] matos_1 : constant Material_type := (ambient => (0.0, 0.0, 0.0, 1.0), specular => (0.0, 0.0, 0.0, 1.0), diffuse => (0.501961, 0.752941, 0.454902, 1.0), emission => (0.0, 0.0, 0.0, 1.0), shininess => 128.0); coord_1 : constant Point_3D_array := ((0.0, 4.0, -6.0), -- VRML: [# coord point 0 -- ] (0.0, 3.719153, -7.840474), (0.0, 2.828427, -9.535534), (0.0, 1.472379, -10.648941), (0.0, 0.0, -11.0), (1.840474, 3.719153, -6.0), (1.711251, 3.458025, -7.840474), (1.301411, 2.629838, -9.535534), (0.677469, 1.369001, -10.648941), (0.0, 0.0, -11.0), (3.535534, 2.828427, -6.0), (3.287298, 2.629838, -7.840474), (2.5, 2.0, -9.535534), (1.301411, 1.041129, -10.648941), (0.0, 0.0, -11.0), (4.648942, 1.472379, -6.0), (4.322531, 1.369001, -7.840474), (3.287298, 1.041129, -9.535534), (1.711251, 0.541975, -10.648941), (0.0, 0.0, -11.0), (5.0, 0.0, -6.0), (4.648942, 0.0, -7.840474), (3.535534, 0.0, -9.535534), (1.840474, 0.0, -10.648941), (0.0, 0.0, -11.0), (0.0, 0.727852, -10.916527), -- VRML: [# coord point 25 -- ] (0.0, 2.188839, -10.184978), (0.0, 3.347982, -8.736049), (0.0, 3.933222, -6.909815), (4.916527, 0.0, -6.909815), (4.184978, 0.0, -8.736049), (2.736049, 0.0, -10.184978), (0.909815, 0.0, -10.916527), (0.909815, 3.933222, -6.0), (2.736049, 3.347982, -6.0), (4.184978, 2.188839, -6.0), (4.916527, 0.727852, -6.0), (5.0, 0.0, -6.0), (0.0, 0.0, -11.0), (4.682859, -0.519945, -7.523114), (3.965406, -0.440285, -8.955855), (2.823837, -0.313535, -10.093028), (1.426092, -0.158341, -10.785041), (0.0, 0.0, -11.0), (4.427992, -1.051801, -7.523114), (3.749586, -0.890656, -8.955855), (2.670148, -0.634252, -10.093028), (1.348476, -0.32031, -10.785041), (0.0, 0.0, -11.0), (3.367501, -2.020501, -7.523114), (2.851571, -1.710943, -8.955855), -- VRML: [# coord point 50 -- ] (2.030655, -1.218393, -10.093028), (1.02552, -0.615312, -10.785041), (0.0, 0.0, -11.0), (1.753002, -2.656795, -7.523114), (1.484427, -2.249752, -8.955855), (1.057087, -1.602089, -10.093028), (0.533849, -0.809085, -10.785041), (0.0, 0.0, -11.0), (0.0, -2.857419, -7.523114), (0.0, -2.419638, -8.955855), (0.0, -1.723068, -10.093028), (0.0, -0.870182, -10.785041), (0.0, 0.0, -11.0), (-1.753002, -2.656795, -7.523114), (-1.484427, -2.249752, -8.955855), (-1.057087, -1.602089, -10.093028), (-0.533849, -0.809085, -10.785041), (0.0, 0.0, -11.0), (-3.367501, -2.020501, -7.523114), (-2.851571, -1.710943, -8.955855), (-2.030655, -1.218393, -10.093028), (-1.02552, -0.615312, -10.785041), (0.0, 0.0, -11.0), (-4.648942, -1.104284, -6.0), (-4.427992, -1.051801, -7.523114), -- VRML: [# coord point 75 -- ] (-3.749586, -0.890656, -8.955855), (-2.670148, -0.634252, -10.093028), (-1.348476, -0.32031, -10.785041), (0.0, 0.0, -11.0), (-4.682859, -0.519945, -7.523114), (-3.965406, -0.440285, -8.955855), (-2.823837, -0.313535, -10.093028), (-1.426092, -0.158341, -10.785041), (0.0, 0.0, -11.0), (-5.0, -0.0, -6.0), (0.0, 0.0, -11.0), (0.909815, 0.0, -10.916527), (1.840474, 0.0, -10.648941), (2.736049, 0.0, -10.184978), (3.535534, 0.0, -9.535534), (4.184978, 0.0, -8.736049), (4.648942, 0.0, -7.840474), (4.916527, 0.0, -6.909815), (-4.916527, -0.0, -6.909815), (-4.648942, -0.0, -7.840474), (-4.184978, -0.0, -8.736049), (-3.535534, -0.0, -9.535534), (-2.736049, -0.0, -10.184978), (-1.840474, -0.0, -10.648941), (-0.909815, -0.0, -10.916527), -- VRML: [# coord point 100 -- ] (4.916527, -0.545889, -6.0), (4.648942, -1.104284, -6.0), (3.881766, -1.890894, -6.0), (3.347862, -2.22824, -6.0), (2.736049, -2.510987, -6.0), (2.070038, -2.73082, -6.0), (1.375791, -2.884197, -6.0), (0.678477, -2.972252, -6.0), (-0.0, -3.0, -6.0), (-0.678477, -2.972252, -6.0), (-1.375791, -2.884197, -6.0), (-2.070038, -2.73082, -6.0), (-2.736049, -2.510987, -6.0), (-3.347862, -2.22824, -6.0), (-3.881766, -1.890894, -6.0), (-4.916527, -0.545889, -6.0), (-5.0, -0.0, -6.0), (-4.648942, -0.0, -7.840474), (-3.535534, -0.0, -9.535534), (-1.840474, -0.0, -10.648941), (0.0, 0.0, -11.0), (-4.648942, 1.472379, -6.0), (-4.322531, 1.369001, -7.840474), (-3.287298, 1.041129, -9.535534), (-1.711251, 0.541975, -10.648941), -- VRML: [# coord point 125 -- ] (0.0, 0.0, -11.0), (-3.535534, 2.828427, -6.0), (-3.287298, 2.629838, -7.840474), (-2.5, 2.0, -9.535534), (-1.301411, 1.041129, -10.648941), (0.0, 0.0, -11.0), (-1.840474, 3.719153, -6.0), (-1.711251, 3.458025, -7.840474), (-1.301411, 2.629838, -9.535534), (-0.677469, 1.369001, -10.648941), (0.0, 0.0, -11.0), (0.0, 4.0, -6.0), (0.0, 3.719153, -7.840474), (0.0, 2.828427, -9.535534), (0.0, 1.472379, -10.648941), (0.0, 0.0, -11.0), (0.0, 3.933222, -6.909815), (0.0, 3.347982, -8.736049), (0.0, 2.188839, -10.184978), (0.0, 0.727852, -10.916527), (-0.909815, -0.0, -10.916527), (-2.736049, -0.0, -10.184978), (-4.184978, -0.0, -8.736049), (-4.916527, -0.0, -6.909815), (-4.916527, 0.727852, -6.0), -- VRML: [# coord point 150 -- ] (-4.184978, 2.188839, -6.0), (-2.736049, 3.347982, -6.0), (-0.909815, 3.933222, -6.0), (0.0, 4.0, 14.0), (0.0, 4.085809, 13.919098), (0.0, 4.165268, 13.666107), (0.0, 4.414214, 8.142136), (0.0, 4.0, -6.0), (0.0, 4.0, 14.0), (0.062856, 4.084806, 13.751678), (0.127289, 4.162986, 13.343657), (0.257494, 4.292191, 12.014576), (0.494644, 4.398617, 7.333976), (0.0, 4.0, 14.0), (0.12985, 4.081457, 13.602017), (0.262957, 4.155365, 13.055412), (0.531938, 4.273184, 11.495037), (1.021849, 4.346536, 6.611545), (0.0, 4.0, 14.0), (0.204733, 4.074604, 13.473963), (0.414602, 4.139774, 12.808778), (0.838702, 4.2343, 11.050499), (1.61114, 4.239989, 5.993404), (0.0, 4.0, 14.0), (0.28681, 4.062323, 13.393813), -- VRML: [# coord point 175 -- ] (0.580815, 4.111832, 12.65441), (1.174935, 4.16461, 10.772264), (2.257041, 4.049031, 5.606511), (0.0, 4.0, 14.0), (0.367375, 4.042528, 13.412814), (0.743966, 4.066794, 12.691007), (1.504975, 4.052287, 10.838225), (2.891043, 3.741253, 5.698233), (0.0, 4.0, 14.0), (0.419092, 4.02057, 13.541767), (0.848698, 4.016835, 12.939368), (1.71684, 3.927687, 11.285878), (3.298034, 3.399834, 6.320704), (0.0, 4.0, 14.0), (0.442092, 4.00198, 13.710477), (0.895276, 3.97454, 13.264303), (1.811061, 3.822203, 11.871547), (3.479033, 3.110795, 7.135092), (0.0, 4.0, 14.0), (0.449272, 3.98382, 13.919098), (0.909815, 3.933222, 13.666107), (3.535534, 2.828427, 8.142136), (5.0, 0.0, -6.0), (4.916527, 0.727852, -6.0), (4.648942, 1.472379, -6.0), -- VRML: [# coord point 200 -- ] (4.184978, 2.188839, -6.0), (3.535534, 2.828427, -6.0), (2.736049, 3.347982, -6.0), (1.840474, 3.719153, -6.0), (0.909815, 3.933222, -6.0), (1.840474, 3.719153, 12.595766), (2.296473, 3.553136, 11.76568), (2.736049, 3.347982, 10.73991), (3.151491, 3.105413, 9.527063), (3.881766, 2.521193, 6.605963), (4.03902, 2.357805, 5.789023), (4.184978, 2.188839, 4.944195), (4.319218, 2.015041, 4.075205), (4.44142, 1.837178, 3.185892), (4.551367, 1.656031, 2.280154), (4.648942, 1.472379, 1.361894), (4.734126, 1.286995, 0.434974), (4.806995, 1.100633, -0.496836), (4.867713, 0.914021, -1.429897), (4.916527, 0.727852, -2.360739), (4.953753, 0.542782, -3.286092), (4.979774, 0.359418, -4.202911), (4.995029, 0.178321, -5.108395), (0.0, 4.085809, -4.202911), (0.0, 4.165268, -2.360739), -- VRML: [# coord point 225 -- ] (0.0, 4.236557, -0.496836), (0.0, 4.297883, 1.361894), (0.0, 4.347579, 3.185892), (0.0, 4.384205, 4.944195), (0.0, 4.384205, 10.73991), (0.0, 4.297883, 12.595766), (0.0, 4.043586, 13.980116), (0.0, 4.02195, 13.995072), (0.0, 4.0, 14.0), (5.0, 0.0, -6.0), (0.0, 4.0, 14.0), (1.56805, 3.290549, 11.289227), (2.479204, 2.655261, 8.824897), (3.909606, 1.095049, 2.712256), (4.183534, 0.627056, 0.867121), (4.393212, 0.164683, -0.96042), (4.538618, -0.282813, -2.733472), (4.622318, -0.70772, -4.421093), (4.648942, -1.104284, -6.0), (0.0, 4.0, 14.0), (1.192507, 2.853031, 9.872027), (1.885442, 1.984331, 6.896493), (2.973267, 0.110234, 0.769444), (3.18159, -0.402075, -0.841538), (3.341051, -0.888648, -2.344026), -- VRML: [# coord point 250 -- ] (3.451632, -1.341086, -3.714049), (3.515287, -1.75322, -4.935412), (0.0, 4.0, 14.0), (0.620777, 2.565646, 8.941133), (0.981494, 1.543629, 5.629814), (1.21975, 0.764102, 3.236679), (1.404671, 0.0751, 1.213696), (1.547777, -0.536645, -0.506699), (1.656223, -1.078064, -1.963877), (1.739232, -1.580533, -3.252853), (1.796797, -2.036217, -4.358145), (1.829934, -2.439961, -5.273244), (0.0, 4.0, 14.0), (0.306873, 2.496578, 8.717412), (0.48519, 1.437715, 5.325392), (0.602968, 0.635672, 2.906274), (0.694382, -0.069342, 0.88508), (0.765124, -0.69211, -0.813395), (0.818733, -1.240524, -2.233609), (0.859768, -1.746814, -3.471272), (0.888224, -2.203278, -4.512941), (0.904605, -2.605006, -5.354435), (0.0, 4.0, 14.0), (0.0, 2.475033, 8.647622), (0.0, 1.404675, 5.230428), -- VRML: [# coord point 275 -- ] (0.0, 0.595608, 2.803204), (0.0, -0.114401, 0.782568), (0.0, -0.740607, -0.909069), (0.0, -1.291204, -2.317752), (0.0, -1.798685, -3.539407), (0.0, -2.255392, -4.561229), (0.0, -2.656491, -5.379763), (0.0, 4.0, 14.0), (-0.306873, 2.496578, 8.717412), (-0.48519, 1.437715, 5.325392), (-0.602968, 0.635672, 2.906274), (-0.694382, -0.069342, 0.88508), (-0.765124, -0.69211, -0.813395), (-0.818733, -1.240524, -2.233609), (-0.859768, -1.746814, -3.471272), (-0.888224, -2.203278, -4.512941), (-0.904605, -2.605006, -5.354435), (0.0, 4.0, 14.0), (-0.620777, 2.565646, 8.941133), (-0.981494, 1.543629, 5.629814), (-1.21975, 0.764102, 3.236679), (-1.404671, 0.0751, 1.213696), (-1.547777, -0.536645, -0.506699), (-1.656223, -1.078064, -1.963877), (-1.739232, -1.580533, -3.252853), -- VRML: [# coord point 300 -- ] (-1.796797, -2.036217, -4.358145), (-1.829934, -2.439961, -5.273244), (0.0, 4.0, 14.0), (-1.192507, 2.853031, 9.872027), (-1.885442, 1.984331, 6.896493), (-2.973267, 0.110234, 0.769444), (-3.18159, -0.402075, -0.841538), (-3.341051, -0.888648, -2.344026), (-3.451632, -1.341086, -3.714049), (-3.515287, -1.75322, -4.935412), (0.0, 4.0, 14.0), (-1.56805, 3.290549, 11.289227), (-2.479204, 2.655261, 8.824897), (-3.909606, 1.095049, 2.712256), (-4.183534, 0.627056, 0.867121), (-4.393212, 0.164683, -0.96042), (-4.538618, -0.282813, -2.733472), (-4.622318, -0.70772, -4.421093), (-4.648942, -1.104284, -6.0), (0.0, 4.0, 14.0), (-5.0, -0.0, -6.0), (4.995029, 0.178321, -5.108395), (4.979774, 0.359418, -4.202911), (4.953753, 0.542782, -3.286092), (4.916527, 0.727852, -2.360739), -- VRML: [# coord point 325 -- ] (4.867713, 0.914021, -1.429897), (4.806995, 1.100633, -0.496836), (4.734126, 1.286995, 0.434974), (4.648942, 1.472379, 1.361894), (4.551367, 1.656031, 2.280154), (4.44142, 1.837178, 3.185892), (4.319218, 2.015041, 4.075205), (4.184978, 2.188839, 4.944195), (4.03902, 2.357805, 5.789023), (3.881766, 2.521193, 6.605963), (3.535534, 2.828427, 8.142136), (3.151491, 3.105413, 9.527063), (2.736049, 3.347982, 10.73991), (2.296473, 3.553136, 11.76568), (1.840474, 3.719153, 12.595766), (0.909815, 3.933222, 13.666107), (0.449272, 3.98382, 13.919098), (-3.5, 1.512817, 4.487183), (-3.450922, 1.716545, 5.147576), (-3.274537, 1.872316, 5.799232), (-3.092764, 1.90439, 6.061034), (-3.0, 1.894876, 6.105124), (-2.944071, 1.881754, 6.10585), (-2.892884, 1.864749, 6.089044), (-2.805425, 1.823695, 6.018488), -- VRML: [# coord point 350 -- ] (-2.695005, 1.745616, 5.839203), (-2.574782, 1.601139, 5.451018), (-2.51766, 1.466542, 5.060178), (-2.5, 1.335671, 4.664329), (-2.517191, 1.209481, 4.270625), (-2.571819, 1.088564, 3.878684), (-2.696655, 0.96467, 3.445454), (-2.80792, 0.914926, 3.238492), (-2.894456, 0.90012, 3.144595), (-2.944927, 0.899618, 3.112356), (-3.0, 0.905387, 3.094613), (-3.055169, 0.917602, 3.094422), (-3.105728, 0.934692, 3.110207), (-3.192408, 0.978211, 3.175801), (-3.303747, 1.065608, 3.345745), (-3.425245, 1.228502, 3.719514), (-3.482508, 1.375839, 4.099494), (-0.449272, 3.98382, 13.919098), (-0.909815, 3.933222, 13.666107), (-1.840474, 3.719153, 12.595766), (-2.296473, 3.553136, 11.76568), (-2.736049, 3.347982, 10.73991), (-3.151491, 3.105413, 9.527063), (-3.535534, 2.828427, 8.142136), (-3.881766, 2.521193, 6.605963), -- VRML: [# coord point 375 -- ] (-4.03902, 2.357805, 5.789023), (-4.184978, 2.188839, 4.944195), (-4.319218, 2.015041, 4.075205), (-4.44142, 1.837178, 3.185892), (-4.551367, 1.656031, 2.280154), (-4.648942, 1.472379, 1.361894), (-4.734126, 1.286995, 0.434974), (-4.806995, 1.100633, -0.496836), (-4.867713, 0.914021, -1.429897), (-4.916527, 0.727852, -2.360739), (-4.953753, 0.542782, -3.286092), (-4.979774, 0.359418, -4.202911), (-4.995029, 0.178321, -5.108395), (-4.916527, -0.545889, -6.0), (-3.881766, -1.890894, -6.0), (-3.347862, -2.22824, -6.0), (-2.736049, -2.510987, -6.0), (-2.070038, -2.73082, -6.0), (-1.375791, -2.884197, -6.0), (-0.678477, -2.972252, -6.0), (-0.0, -3.0, -6.0), (0.678477, -2.972252, -6.0), (1.375791, -2.884197, -6.0), (2.070038, -2.73082, -6.0), (2.736049, -2.510987, -6.0), -- VRML: [# coord point 400 -- ] (3.347862, -2.22824, -6.0), (3.881766, -1.890894, -6.0), (4.916527, -0.545889, -6.0), (3.5, 1.512817, 4.487183), (3.482508, 1.375839, 4.099494), (3.425245, 1.228502, 3.719514), (3.303747, 1.065608, 3.345745), (3.192408, 0.978211, 3.175801), (3.105728, 0.934692, 3.110207), (3.055169, 0.917602, 3.094422), (3.0, 0.905387, 3.094613), (2.944927, 0.899618, 3.112356), (2.894456, 0.90012, 3.144595), (2.80792, 0.914926, 3.238492), (2.696655, 0.96467, 3.445454), (2.571819, 1.088564, 3.878684), (2.517191, 1.209481, 4.270625), (2.5, 1.335671, 4.664329), (2.51766, 1.466542, 5.060178), (2.574782, 1.601139, 5.451018), (2.695005, 1.745616, 5.839203), (2.805425, 1.823695, 6.018488), (2.892884, 1.864749, 6.089044), (2.944071, 1.881754, 6.10585), (3.0, 1.894876, 6.105124), -- VRML: [# coord point 425 -- ] (3.092764, 1.90439, 6.061034), (3.274537, 1.872316, 5.799232), (3.450922, 1.716545, 5.147576), (0.0, 4.0, 14.0), (-0.449272, 3.98382, 13.919098), (-0.909815, 3.933222, 13.666107), (-3.535534, 2.828427, 8.142136), (-5.0, -0.0, -6.0), (0.0, 4.0, 14.0), (-0.443503, 4.000112, 13.73001), (-0.898131, 3.97029, 13.301924), (-1.816838, 3.811604, 11.939355), (-3.49013, 3.081753, 7.229381), (0.0, 4.0, 14.0), (-0.421371, 4.019201, 13.552509), (-0.853314, 4.013721, 12.960058), (-1.726177, 3.919921, 11.323169), (-3.31597, 3.378554, 6.372559), (0.0, 4.0, 14.0), (-0.37262, 4.040799, 13.419608), (-0.754588, 4.06286, 12.704092), (-1.526463, 4.042476, 10.861811), (-2.932323, 3.714367, 5.731028), (0.0, 4.0, 14.0), (-0.292164, 4.061298, 13.391398), -- VRML: [# coord point 450 -- ] (-0.591657, 4.109501, 12.64976), (-1.196869, 4.158799, 10.763883), (-2.299174, 4.033107, 5.594858), (0.0, 4.0, 14.0), (-0.209951, 4.073988, 13.466791), (-0.425168, 4.138372, 12.794966), (-0.860077, 4.230803, 11.025603), (-1.6522, 4.230409, 5.958786), (0.0, 4.0, 14.0), (-0.1346, 4.081125, 13.592599), (-0.272577, 4.15461, 13.037271), (-0.5514, 4.2713, 11.462339), (-1.059234, 4.341372, 6.566079), (0.0, 4.0, 14.0), (-0.06635, 4.084691, 13.743122), (-0.134365, 4.162724, 13.327179), (-0.271808, 4.291537, 11.984875), (-0.522141, 4.396825, 7.292677), (0.0, 4.0, 14.0), (0.0, 4.165268, 13.666107), (0.0, 4.414214, 8.142136), (0.0, 4.0, -6.0), (-0.909815, 3.933222, -6.0), (-1.840474, 3.719153, -6.0), (-2.736049, 3.347982, -6.0), -- VRML: [# coord point 475 -- ] (-3.535534, 2.828427, -6.0), (-4.184978, 2.188839, -6.0), (-4.648942, 1.472379, -6.0), (-4.916527, 0.727852, -6.0), (0.0, 4.02195, 13.995072), (0.0, 4.043586, 13.980116), (0.0, 4.085809, 13.919098), (0.0, 4.297883, 12.595766), (0.0, 4.384205, 10.73991), (0.0, 4.384205, 4.944195), (0.0, 4.347579, 3.185892), (0.0, 4.297883, 1.361894), (0.0, 4.236557, -0.496836), (0.0, 4.165268, -2.360739), (0.0, 4.085809, -4.202911), (-4.995029, 0.178321, -5.108395), (-4.979774, 0.359418, -4.202911), (-4.953753, 0.542782, -3.286092), (-4.916527, 0.727852, -2.360739), (-4.867713, 0.914021, -1.429897), (-4.806995, 1.100633, -0.496836), (-4.734126, 1.286995, 0.434974), (-4.648942, 1.472379, 1.361894), (-4.551367, 1.656031, 2.280154), (-4.44142, 1.837178, 3.185892), -- VRML: [# coord point 500 -- ] (-4.319218, 2.015041, 4.075205), (-4.184978, 2.188839, 4.944195), (-4.03902, 2.357805, 5.789023), (-3.881766, 2.521193, 6.605963), (-3.151491, 3.105413, 9.527063), (-2.736049, 3.347982, 10.73991), (-2.296473, 3.553136, 11.76568), (-1.840474, 3.719153, 12.595766), (-3.0, 0.454284, 3.545716), (-3.5, 1.179389, 4.820611), (-3.5, 1.179389, 4.820611), (-3.5, 1.512817, 4.487183), (-3.450922, 1.716545, 5.147576), (-3.274537, 1.872316, 5.799232), (-3.092764, 1.90439, 6.061034), (-3.0, 1.894876, 6.105124), (-2.944071, 1.881754, 6.10585), (-2.892884, 1.864749, 6.089044), (-2.805425, 1.823695, 6.018488), (-2.695005, 1.745616, 5.839203), (-2.574782, 1.601139, 5.451018), (-2.51766, 1.466542, 5.060178), (-2.5, 1.335671, 4.664329), (-2.517191, 1.209481, 4.270625), (-2.571819, 1.088564, 3.878684), -- VRML: [# coord point 525 -- ] (-2.696655, 0.96467, 3.445454), (-2.80792, 0.914926, 3.238492), (-2.894456, 0.90012, 3.144595), (-2.944927, 0.899618, 3.112356), (-3.0, 0.905387, 3.094613), (-3.055169, 0.917602, 3.094422), (-3.105728, 0.934692, 3.110207), (-3.192408, 0.978211, 3.175801), (-3.303747, 1.065608, 3.345745), (-3.425245, 1.228502, 3.719514), (-3.482508, 1.375839, 4.099494), (-3.5, 1.512817, 4.487183), (-3.0, 0.980581, 7.019419), (-3.058017, 0.979611, 7.006987), (-3.110825, 0.976981, 6.973362), (-3.19986, 0.968421, 6.864568), (-3.304968, 0.949855, 6.635047), (-3.423161, 0.905427, 6.159917), (-3.481555, 0.852987, 5.685443), (-3.5, 0.791128, 5.208872), (-2.929686, 0.458799, 3.560962), (-2.868857, 0.470157, 3.599747), (-2.77872, 0.500298, 3.706224), (-2.665377, 0.562472, 3.951445), (-2.54922, 0.670223, 4.464466), -- VRML: [# coord point 550 -- ] (-2.5, 0.791128, 5.208872), (-2.518445, 0.852987, 5.685443), (-2.576839, 0.905427, 6.159917), (-2.695032, 0.949855, 6.635047), (-2.80014, 0.968421, 6.864568), (-2.889175, 0.976981, 6.973362), (-2.941983, 0.979611, 7.006987), (-3.5, 0.791128, 5.208872), (-3.45078, 0.670223, 4.464466), (-3.334623, 0.562472, 3.951445), (-3.22128, 0.500298, 3.706224), (-3.131143, 0.470157, 3.599747), (-3.070314, 0.458799, 3.560962), (-3.0, 0.0, 3.0), (-3.0, 1.0, 8.0), (-3.0, 0.973347, 9.146691), (-3.0, 0.890134, 10.278497), (-3.0, 0.730389, 11.415155), (-3.0, 0.454836, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.644456, 0.322228, 3.549331), (-4.032053, 0.516026, 4.581544), (-4.248063, 0.624031, 5.648567), (-4.374914, 0.687457, 6.829465), -- VRML: [# coord point 575 -- ] (-4.414214, 0.707107, 8.0), (-4.37652, 0.68826, 9.146691), (-4.258839, 0.62942, 10.278497), (-4.032927, 0.516463, 11.415155), (-3.643234, 0.321617, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.847408, 0.16774, 3.549331), (-4.357066, 0.268625, 4.581544), (-4.641102, 0.324849, 5.648567), (-4.8079, 0.357866, 6.829465), (-4.859577, 0.368095, 8.0), (-4.810013, 0.358284, 9.146691), (-4.655272, 0.327654, 10.278497), (-4.358215, 0.268852, 11.415155), (-3.845802, 0.167423, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.896183, 0.08292, 3.549331), (-4.435176, 0.132791, 4.581544), (-4.735561, 0.160585, 5.648567), (-4.91196, 0.176906, 6.829465), (-4.966611, 0.181963, 8.0), (-4.914194, 0.177113, 9.146691), (-4.750546, 0.161971, 10.278497), -- VRML: [# coord point 600 -- ] (-4.436391, 0.132904, 11.415155), (-3.894485, 0.082763, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.911399, 0.0, 3.549331), (-4.459543, 0.0, 4.581544), (-4.765028, 0.0, 5.648567), (-4.944422, 0.0, 6.829465), (-5.0, 0.0, 8.0), (-4.946693, 0.0, 9.146691), (-4.780268, 0.0, 10.278497), (-4.460779, 0.0, 11.415155), (-3.909671, 0.0, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.896183, -0.08292, 3.549331), (-4.435176, -0.132791, 4.581544), (-4.735561, -0.160585, 5.648567), (-4.91196, -0.176906, 6.829465), (-4.966611, -0.181963, 8.0), (-4.914194, -0.177113, 9.146691), (-4.750546, -0.161971, 10.278497), (-4.436391, -0.132904, 11.415155), (-3.894485, -0.082763, 12.452877), (-3.0, 0.0, 13.0), -- VRML: [# coord point 625 -- ] (-3.0, 0.0, 3.0), (-3.847408, -0.16774, 3.549331), (-4.357066, -0.268625, 4.581544), (-4.641102, -0.324849, 5.648567), (-4.8079, -0.357866, 6.829465), (-4.859577, -0.368095, 8.0), (-4.810013, -0.358284, 9.146691), (-4.655272, -0.327654, 10.278497), (-4.358215, -0.268852, 11.415155), (-3.845802, -0.167423, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.644456, -0.322228, 3.549331), (-4.032053, -0.516026, 4.581544), (-4.248063, -0.624031, 5.648567), (-4.374914, -0.687457, 6.829465), (-4.414214, -0.707107, 8.0), (-4.37652, -0.68826, 9.146691), (-4.258839, -0.62942, 10.278497), (-4.032927, -0.516463, 11.415155), (-3.643234, -0.321617, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.0, -0.455699, 3.549331), (-3.0, -0.729771, 4.581544), -- VRML: [# coord point 650 -- ] (-3.0, -0.882514, 5.648567), (-3.0, -0.972211, 6.829465), (-3.0, -1.0, 8.0), (-3.0, -0.973347, 9.146691), (-3.0, -0.890134, 10.278497), (-3.0, -0.730389, 11.415155), (-3.0, -0.454836, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-2.355544, -0.322228, 3.549331), (-1.967947, -0.516026, 4.581544), (-1.751937, -0.624031, 5.648567), (-1.625086, -0.687457, 6.829465), (-1.585786, -0.707107, 8.0), (-1.62348, -0.68826, 9.146691), (-1.741161, -0.62942, 10.278497), (-1.967074, -0.516463, 11.415155), (-2.356766, -0.321617, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-2.152592, -0.16774, 3.549331), (-1.642934, -0.268625, 4.581544), (-1.358898, -0.324849, 5.648567), (-1.192099, -0.357866, 6.829465), (-1.140423, -0.368095, 8.0), -- VRML: [# coord point 675 -- ] (-1.189987, -0.358284, 9.146691), (-1.344728, -0.327654, 10.278497), (-1.641785, -0.268852, 11.415155), (-2.154198, -0.167423, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-2.103817, -0.08292, 3.549331), (-1.564824, -0.132791, 4.581544), (-1.264439, -0.160585, 5.648567), (-1.08804, -0.176906, 6.829465), (-1.033389, -0.181963, 8.0), (-1.085806, -0.177113, 9.146691), (-1.249453, -0.161971, 10.278497), (-1.563609, -0.132904, 11.415155), (-2.105515, -0.082763, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-2.088601, 0.0, 3.549331), (-1.540457, 0.0, 4.581544), (-1.234972, 0.0, 5.648567), (-1.055578, 0.0, 6.829465), (-1.0, 0.0, 8.0), (-1.053306, 0.0, 9.146691), (-1.219732, 0.0, 10.278497), (-1.539222, 0.0, 11.415155), -- VRML: [# coord point 700 -- ] (-2.090329, 0.0, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-2.103817, 0.08292, 3.549331), (-1.564824, 0.132791, 4.581544), (-1.264439, 0.160585, 5.648567), (-1.08804, 0.176906, 6.829465), (-1.033389, 0.181963, 8.0), (-1.085806, 0.177113, 9.146691), (-1.249453, 0.161971, 10.278497), (-1.563609, 0.132904, 11.415155), (-2.105515, 0.082763, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-2.152592, 0.16774, 3.549331), (-1.642934, 0.268625, 4.581544), (-1.358898, 0.324849, 5.648567), (-1.192099, 0.357866, 6.829465), (-1.140423, 0.368095, 8.0), (-1.189987, 0.358284, 9.146691), (-1.344728, 0.327654, 10.278497), (-1.641785, 0.268852, 11.415155), (-2.154198, 0.167423, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), -- VRML: [# coord point 725 -- ] (-2.355544, 0.322228, 3.549331), (-1.967947, 0.516026, 4.581544), (-1.751937, 0.624031, 5.648567), (-1.625086, 0.687457, 6.829465), (-1.585786, 0.707107, 8.0), (-1.62348, 0.68826, 9.146691), (-1.741161, 0.62942, 10.278497), (-1.967074, 0.516463, 11.415155), (-2.356766, 0.321617, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.0, 3.0), (-3.0, 1.0, 8.0), (-3.0, 0.973347, 9.146691), (-3.0, 0.890134, 10.278497), (-3.0, 0.730389, 11.415155), (-3.0, 0.454836, 12.452877), (-3.0, 0.0, 13.0), (-3.0, 0.980581, 7.019419), (-3.058017, 0.979611, 7.006987), (-3.110825, 0.976981, 6.973362), (-3.19986, 0.968421, 6.864568), (-3.304968, 0.949855, 6.635047), (-3.423161, 0.905427, 6.159917), (-3.481555, 0.852987, 5.685443), (-3.5, 0.791128, 5.208872), -- VRML: [# coord point 750 -- ] (-3.0, 0.454284, 3.545716), (-2.929686, 0.458799, 3.560962), (-2.868857, 0.470157, 3.599747), (-2.77872, 0.500298, 3.706224), (-2.665377, 0.562472, 3.951445), (-2.54922, 0.670223, 4.464466), (-2.5, 0.791128, 5.208872), (-2.518445, 0.852987, 5.685443), (-2.576839, 0.905427, 6.159917), (-2.695032, 0.949855, 6.635047), (-2.80014, 0.968421, 6.864568), (-2.889175, 0.976981, 6.973362), (-2.941983, 0.979611, 7.006987), (-3.0, 0.980581, 7.019419), (-3.45078, 0.670223, 4.464466), (-3.334623, 0.562472, 3.951445), (-3.22128, 0.500298, 3.706224), (-3.131143, 0.470157, 3.599747), (-3.070314, 0.458799, 3.560962), (-3.0, 0.454284, 3.545716), (3.0, 0.454284, 3.545716), (3.5, 1.179389, 4.820611), (3.5, 1.179389, 4.820611), (3.0, 0.980581, 7.019419), (3.058017, 0.979611, 7.006987), -- VRML: [# coord point 775 -- ] (3.110825, 0.976981, 6.973362), (3.19986, 0.968421, 6.864568), (3.304968, 0.949855, 6.635047), (3.423161, 0.905427, 6.159917), (3.481555, 0.852987, 5.685443), (3.5, 0.791128, 5.208872), (2.929686, 0.458799, 3.560962), (2.868857, 0.470157, 3.599747), (2.77872, 0.500298, 3.706224), (2.665377, 0.562472, 3.951445), (2.54922, 0.670223, 4.464466), (2.5, 0.791128, 5.208872), (2.518445, 0.852987, 5.685443), (2.576839, 0.905427, 6.159917), (2.695032, 0.949855, 6.635047), (2.80014, 0.968421, 6.864568), (2.889175, 0.976981, 6.973362), (2.941983, 0.979611, 7.006987), (3.5, 0.791128, 5.208872), (3.45078, 0.670223, 4.464466), (3.334623, 0.562472, 3.951445), (3.22128, 0.500298, 3.706224), (3.131143, 0.470157, 3.599747), (3.070314, 0.458799, 3.560962), (3.5, 1.512817, 4.487183), -- VRML: [# coord point 800 -- ] (3.450922, 1.716545, 5.147576), (3.274537, 1.872316, 5.799232), (3.092764, 1.90439, 6.061034), (3.0, 1.894876, 6.105124), (2.944071, 1.881754, 6.10585), (2.892884, 1.864749, 6.089044), (2.805425, 1.823695, 6.018488), (2.695005, 1.745616, 5.839203), (2.574782, 1.601139, 5.451018), (2.51766, 1.466542, 5.060178), (2.5, 1.335671, 4.664329), (2.517191, 1.209481, 4.270625), (2.571819, 1.088564, 3.878684), (2.696655, 0.96467, 3.445454), (2.80792, 0.914926, 3.238492), (2.894456, 0.90012, 3.144595), (2.944927, 0.899618, 3.112356), (3.0, 0.905387, 3.094613), (3.055169, 0.917602, 3.094422), (3.105728, 0.934692, 3.110207), (3.192408, 0.978211, 3.175801), (3.303747, 1.065608, 3.345745), (3.425245, 1.228502, 3.719514), (3.482508, 1.375839, 4.099494), (3.5, 1.512817, 4.487183), -- VRML: [# coord point 825 -- ] (3.0, 1.441686, 6.558314), (3.0, 0.0, 3.0), (3.0, 1.0, 8.0), (3.0, 0.973347, 9.146691), (3.0, 0.890134, 10.278497), (3.0, 0.730389, 11.415155), (3.0, 0.454836, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.644456, 0.322228, 3.549331), (4.032053, 0.516026, 4.581544), (4.248063, 0.624031, 5.648567), (4.374914, 0.687457, 6.829465), (4.414214, 0.707107, 8.0), (4.37652, 0.68826, 9.146691), (4.258839, 0.62942, 10.278497), (4.032927, 0.516463, 11.415155), (3.643234, 0.321617, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.847408, 0.16774, 3.549331), (4.357066, 0.268625, 4.581544), (4.641102, 0.324849, 5.648567), (4.8079, 0.357866, 6.829465), (4.859577, 0.368095, 8.0), -- VRML: [# coord point 850 -- ] (4.810013, 0.358284, 9.146691), (4.655272, 0.327654, 10.278497), (4.358215, 0.268852, 11.415155), (3.845802, 0.167423, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.896183, 0.08292, 3.549331), (4.435176, 0.132791, 4.581544), (4.735561, 0.160585, 5.648567), (4.91196, 0.176906, 6.829465), (4.966611, 0.181963, 8.0), (4.914194, 0.177113, 9.146691), (4.750546, 0.161971, 10.278497), (4.436391, 0.132904, 11.415155), (3.894485, 0.082763, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.911399, 0.0, 3.549331), (4.459543, 0.0, 4.581544), (4.765028, 0.0, 5.648567), (4.944422, 0.0, 6.829465), (5.0, 0.0, 8.0), (4.946693, 0.0, 9.146691), (4.780268, 0.0, 10.278497), (4.460779, 0.0, 11.415155), -- VRML: [# coord point 875 -- ] (3.909671, 0.0, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.896183, -0.08292, 3.549331), (4.435176, -0.132791, 4.581544), (4.735561, -0.160585, 5.648567), (4.91196, -0.176906, 6.829465), (4.966611, -0.181963, 8.0), (4.914194, -0.177113, 9.146691), (4.750546, -0.161971, 10.278497), (4.436391, -0.132904, 11.415155), (3.894485, -0.082763, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.847408, -0.16774, 3.549331), (4.357066, -0.268625, 4.581544), (4.641102, -0.324849, 5.648567), (4.8079, -0.357866, 6.829465), (4.859577, -0.368095, 8.0), (4.810013, -0.358284, 9.146691), (4.655272, -0.327654, 10.278497), (4.358215, -0.268852, 11.415155), (3.845802, -0.167423, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), -- VRML: [# coord point 900 -- ] (3.644456, -0.322228, 3.549331), (4.032053, -0.516026, 4.581544), (4.248063, -0.624031, 5.648567), (4.374914, -0.687457, 6.829465), (4.414214, -0.707107, 8.0), (4.37652, -0.68826, 9.146691), (4.258839, -0.62942, 10.278497), (4.032927, -0.516463, 11.415155), (3.643234, -0.321617, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.0, -0.455699, 3.549331), (3.0, -0.729771, 4.581544), (3.0, -0.882514, 5.648567), (3.0, -0.972211, 6.829465), (3.0, -1.0, 8.0), (3.0, -0.973347, 9.146691), (3.0, -0.890134, 10.278497), (3.0, -0.730389, 11.415155), (3.0, -0.454836, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.355544, -0.322228, 3.549331), (1.967947, -0.516026, 4.581544), (1.751937, -0.624031, 5.648567), -- VRML: [# coord point 925 -- ] (1.625086, -0.687457, 6.829465), (1.585786, -0.707107, 8.0), (1.62348, -0.68826, 9.146691), (1.741161, -0.62942, 10.278497), (1.967074, -0.516463, 11.415155), (2.356766, -0.321617, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.152592, -0.16774, 3.549331), (1.642934, -0.268625, 4.581544), (1.358898, -0.324849, 5.648567), (1.192099, -0.357866, 6.829465), (1.140423, -0.368095, 8.0), (1.189987, -0.358284, 9.146691), (1.344728, -0.327654, 10.278497), (1.641785, -0.268852, 11.415155), (2.154198, -0.167423, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.103817, -0.08292, 3.549331), (1.564824, -0.132791, 4.581544), (1.264439, -0.160585, 5.648567), (1.08804, -0.176906, 6.829465), (1.033389, -0.181963, 8.0), (1.085806, -0.177113, 9.146691), -- VRML: [# coord point 950 -- ] (1.249453, -0.161971, 10.278497), (1.563609, -0.132904, 11.415155), (2.105515, -0.082763, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.088601, 0.0, 3.549331), (1.540457, 0.0, 4.581544), (1.234972, 0.0, 5.648567), (1.055578, 0.0, 6.829465), (1.0, 0.0, 8.0), (1.053306, 0.0, 9.146691), (1.219732, 0.0, 10.278497), (1.539222, 0.0, 11.415155), (2.090329, 0.0, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.103817, 0.08292, 3.549331), (1.564824, 0.132791, 4.581544), (1.264439, 0.160585, 5.648567), (1.08804, 0.176906, 6.829465), (1.033389, 0.181963, 8.0), (1.085806, 0.177113, 9.146691), (1.249453, 0.161971, 10.278497), (1.563609, 0.132904, 11.415155), (2.105515, 0.082763, 12.452877), -- VRML: [# coord point 975 -- ] (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.152592, 0.16774, 3.549331), (1.642934, 0.268625, 4.581544), (1.358898, 0.324849, 5.648567), (1.192099, 0.357866, 6.829465), (1.140423, 0.368095, 8.0), (1.189987, 0.358284, 9.146691), (1.344728, 0.327654, 10.278497), (1.641785, 0.268852, 11.415155), (2.154198, 0.167423, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (2.355544, 0.322228, 3.549331), (1.967947, 0.516026, 4.581544), (1.751937, 0.624031, 5.648567), (1.625086, 0.687457, 6.829465), (1.585786, 0.707107, 8.0), (1.62348, 0.68826, 9.146691), (1.741161, 0.62942, 10.278497), (1.967074, 0.516463, 11.415155), (2.356766, 0.321617, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.0, 3.0), (3.0, 1.0, 8.0), -- VRML: [# coord point 1000 -- ] (3.0, 0.973347, 9.146691), (3.0, 0.890134, 10.278497), (3.0, 0.730389, 11.415155), (3.0, 0.454836, 12.452877), (3.0, 0.0, 13.0), (3.0, 0.980581, 7.019419), (3.058017, 0.979611, 7.006987), (3.110825, 0.976981, 6.973362), (3.19986, 0.968421, 6.864568), (3.304968, 0.949855, 6.635047), (3.423161, 0.905427, 6.159917), (3.481555, 0.852987, 5.685443), (3.5, 0.791128, 5.208872), (3.0, 0.454284, 3.545716), (2.929686, 0.458799, 3.560962), (2.868857, 0.470157, 3.599747), (2.77872, 0.500298, 3.706224), (2.665377, 0.562472, 3.951445), (2.54922, 0.670223, 4.464466), (2.5, 0.791128, 5.208872), (2.518445, 0.852987, 5.685443), (2.576839, 0.905427, 6.159917), (2.695032, 0.949855, 6.635047), (2.80014, 0.968421, 6.864568), (2.889175, 0.976981, 6.973362), -- VRML: [# coord point 1025 -- ] (2.941983, 0.979611, 7.006987), (3.0, 0.980581, 7.019419), (3.45078, 0.670223, 4.464466), (3.334623, 0.562472, 3.951445), (3.22128, 0.500298, 3.706224), (3.131143, 0.470157, 3.599747), (3.070314, 0.458799, 3.560962), (3.0, 0.454284, 3.545716) -- 1034 ); -- VRML: [# 1034 vertices -- ] -- begin Separator # 2 -- VRML: [#triangle mesh -- ] idx_2 : constant Idx_4_array_array := ((13, 8, 7, 0), -- VRML: [# triangle 0 -- ] (13, 7, 12, 0), (14, 9, 8, 0), (14, 8, 13, 0), (15, 9, 14, 0), (18, 13, 12, 0), (18, 12, 17, 0), (19, 14, 13, 0), (19, 13, 18, 0), (20, 14, 19, 0), (29, 1, 34, 0), (29, 7, 2, 0), (7, 29, 34, 0), (7, 6, 35, 0), (7, 35, 12, 0), (34, 6, 7, 0), (28, 2, 7, 0), (8, 3, 28, 0), (9, 4, 27, 0), (27, 3, 8, 0), (4, 9, 26, 0), (9, 10, 26, 0), (8, 9, 27, 0), (8, 28, 7, 0), (12, 35, 11, 0), (17, 36, 16, 0), -- VRML: [# triangle 25 -- ] (36, 17, 12, 0), (17, 16, 37, 0), (11, 36, 12, 0), (30, 37, 21, 0), (30, 22, 17, 0), (37, 30, 17, 0), (31, 17, 22, 0), (32, 19, 18, 0), (17, 31, 18, 0), (19, 33, 20, 0), (31, 23, 18, 0), (18, 23, 32, 0), (19, 24, 33, 0), (19, 32, 24, 0), (46, 41, 40, 0), (46, 40, 45, 0), (47, 42, 41, 0), (47, 41, 46, 0), (48, 43, 42, 0), (48, 42, 47, 0), (49, 43, 48, 0), (51, 46, 45, 0), (51, 45, 50, 0), (52, 47, 46, 0), (52, 46, 51, 0), -- VRML: [# triangle 50 -- ] (53, 48, 47, 0), (53, 47, 52, 0), (54, 48, 53, 0), (56, 51, 50, 0), (56, 50, 55, 0), (57, 52, 51, 0), (57, 51, 56, 0), (58, 53, 52, 0), (58, 52, 57, 0), (59, 53, 58, 0), (61, 56, 55, 0), (61, 55, 60, 0), (62, 57, 56, 0), (62, 56, 61, 0), (63, 58, 57, 0), (63, 57, 62, 0), (64, 58, 63, 0), (66, 61, 60, 0), (66, 60, 65, 0), (67, 62, 61, 0), (67, 61, 66, 0), (68, 63, 62, 0), (68, 62, 67, 0), (69, 63, 68, 0), (71, 66, 65, 0), -- VRML: [# triangle 75 -- ] (71, 65, 70, 0), (72, 67, 66, 0), (72, 66, 71, 0), (73, 68, 67, 0), (73, 67, 72, 0), (74, 68, 73, 0), (77, 71, 70, 0), (77, 70, 76, 0), (78, 72, 71, 0), (78, 71, 77, 0), (79, 73, 72, 0), (79, 72, 78, 0), (80, 73, 79, 0), (82, 77, 76, 0), (82, 76, 81, 0), (83, 78, 77, 0), (83, 77, 82, 0), (84, 79, 78, 0), (84, 78, 83, 0), (85, 79, 84, 0), (94, 38, 102, 0), (45, 102, 103, 0), (94, 102, 40, 0), (45, 40, 102, 0), (93, 94, 40, 0), -- VRML: [# triangle 100 -- ] (45, 103, 104, 0), (50, 104, 105, 0), (50, 105, 106, 0), (106, 107, 55, 0), (50, 106, 55, 0), (108, 55, 107, 0), (109, 55, 108, 0), (45, 104, 50, 0), (41, 92, 93, 0), (41, 91, 92, 0), (42, 89, 90, 0), (43, 88, 89, 0), (90, 91, 42, 0), (40, 41, 93, 0), (109, 60, 55, 0), (88, 43, 44, 0), (43, 89, 42, 0), (41, 42, 91, 0), (60, 109, 110, 0), (60, 111, 65, 0), (65, 111, 112, 0), (114, 65, 113, 0), (112, 113, 65, 0), (70, 65, 114, 0), (70, 115, 116, 0), -- VRML: [# triangle 125 -- ] (76, 70, 116, 0), (75, 76, 116, 0), (75, 117, 76, 0), (117, 86, 95, 0), (117, 95, 81, 0), (114, 115, 70, 0), (117, 81, 76, 0), (96, 82, 81, 0), (100, 84, 83, 0), (101, 85, 84, 0), (83, 82, 98, 0), (82, 96, 97, 0), (82, 97, 98, 0), (83, 99, 100, 0), (84, 100, 101, 0), (83, 98, 99, 0), (96, 81, 95, 0), (111, 60, 110, 0), (130, 125, 124, 0), (130, 124, 129, 0), (131, 126, 125, 0), (131, 125, 130, 0), (132, 126, 131, 0), (135, 130, 129, 0), (135, 129, 134, 0), -- VRML: [# triangle 150 -- ] (136, 131, 130, 0), (136, 130, 135, 0), (137, 131, 136, 0), (150, 118, 151, 0), (150, 124, 119, 0), (124, 150, 151, 0), (124, 123, 152, 0), (124, 152, 129, 0), (151, 123, 124, 0), (149, 119, 124, 0), (125, 120, 149, 0), (126, 121, 148, 0), (148, 120, 125, 0), (121, 126, 147, 0), (126, 127, 147, 0), (125, 126, 148, 0), (125, 149, 124, 0), (129, 152, 128, 0), (134, 153, 133, 0), (153, 134, 129, 0), (134, 133, 154, 0), (128, 153, 129, 0), (143, 154, 138, 0), (143, 139, 134, 0), (154, 143, 134, 0), -- VRML: [# triangle 175 -- ] (144, 134, 139, 0), (145, 136, 135, 0), (134, 144, 135, 0), (136, 146, 137, 0), (144, 140, 135, 0), (135, 140, 145, 0), (136, 141, 146, 0), (136, 145, 141, 0), (166, 161, 160, 0), (167, 162, 161, 0), (167, 161, 166, 0), (168, 163, 162, 0), (168, 162, 167, 0), (169, 164, 163, 0), (169, 163, 168, 0), (171, 166, 165, 0), (172, 167, 166, 0), (172, 166, 171, 0), (173, 168, 167, 0), (173, 167, 172, 0), (174, 169, 168, 0), (174, 168, 173, 0), (176, 171, 170, 0), (177, 172, 171, 0), (177, 171, 176, 0), -- VRML: [# triangle 200 -- ] (178, 173, 172, 0), (178, 172, 177, 0), (179, 174, 173, 0), (179, 173, 178, 0), (181, 176, 175, 0), (182, 177, 176, 0), (182, 176, 181, 0), (183, 178, 177, 0), (183, 177, 182, 0), (184, 179, 178, 0), (184, 178, 183, 0), (186, 181, 180, 0), (187, 182, 181, 0), (187, 181, 186, 0), (188, 183, 182, 0), (188, 182, 187, 0), (189, 184, 183, 0), (189, 183, 188, 0), (191, 186, 185, 0), (192, 187, 186, 0), (192, 186, 191, 0), (193, 188, 187, 0), (193, 187, 192, 0), (194, 189, 188, 0), (194, 188, 193, 0), -- VRML: [# triangle 225 -- ] (160, 233, 234, 0), (161, 157, 156, 0), (163, 231, 232, 0), (232, 157, 162, 0), (156, 233, 161, 0), (161, 162, 157, 0), (163, 164, 231, 0), (162, 163, 232, 0), (230, 158, 164, 0), (164, 158, 231, 0), (205, 169, 174, 0), (228, 164, 169, 0), (160, 161, 233, 0), (229, 230, 164, 0), (228, 229, 164, 0), (206, 226, 227, 0), (206, 159, 225, 0), (225, 226, 206, 0), (227, 228, 206, 0), (228, 169, 206, 0), (205, 174, 204, 0), (205, 206, 169, 0), (184, 203, 179, 0), (179, 203, 204, 0), (202, 189, 201, 0), -- VRML: [# triangle 250 -- ] (202, 203, 184, 0), (189, 202, 184, 0), (174, 179, 204, 0), (196, 192, 191, 0), (193, 209, 194, 0), (207, 193, 192, 0), (194, 200, 189, 0), (191, 195, 196, 0), (192, 196, 197, 0), (193, 207, 208, 0), (192, 197, 207, 0), (194, 209, 210, 0), (194, 198, 211, 0), (194, 210, 198, 0), (193, 208, 209, 0), (211, 212, 194, 0), (213, 214, 194, 0), (214, 215, 194, 0), (194, 216, 217, 0), (216, 194, 215, 0), (194, 217, 200, 0), (218, 200, 217, 0), (212, 213, 194, 0), (200, 218, 219, 0), (200, 220, 221, 0), -- VRML: [# triangle 275 -- ] (200, 219, 220, 0), (200, 222, 223, 0), (200, 224, 199, 0), (200, 223, 224, 0), (200, 221, 222, 0), (201, 189, 200, 0), (247, 238, 237, 0), (248, 239, 238, 0), (248, 238, 247, 0), (250, 241, 240, 0), (250, 240, 249, 0), (251, 242, 241, 0), (251, 241, 250, 0), (252, 243, 242, 0), (252, 242, 251, 0), (253, 244, 243, 0), (253, 243, 252, 0), (255, 247, 246, 0), (256, 248, 247, 0), (256, 247, 255, 0), (248, 256, 257, 0), (258, 259, 249, 0), (260, 250, 249, 0), (260, 249, 259, 0), (261, 251, 250, 0), -- VRML: [# triangle 300 -- ] (261, 250, 260, 0), (262, 252, 251, 0), (262, 251, 261, 0), (263, 253, 252, 0), (263, 252, 262, 0), (265, 255, 254, 0), (266, 256, 255, 0), (266, 255, 265, 0), (267, 257, 256, 0), (267, 256, 266, 0), (268, 258, 257, 0), (268, 257, 267, 0), (269, 259, 258, 0), (269, 258, 268, 0), (270, 260, 259, 0), (270, 259, 269, 0), (271, 261, 260, 0), (271, 260, 270, 0), (272, 262, 261, 0), (272, 261, 271, 0), (273, 263, 262, 0), (273, 262, 272, 0), (275, 265, 264, 0), (276, 266, 265, 0), (276, 265, 275, 0), -- VRML: [# triangle 325 -- ] (277, 267, 266, 0), (277, 266, 276, 0), (278, 268, 267, 0), (278, 267, 277, 0), (279, 269, 268, 0), (279, 268, 278, 0), (280, 270, 269, 0), (280, 269, 279, 0), (281, 271, 270, 0), (281, 270, 280, 0), (282, 272, 271, 0), (282, 271, 281, 0), (283, 273, 272, 0), (283, 272, 282, 0), (285, 275, 274, 0), (286, 276, 275, 0), (286, 275, 285, 0), (287, 277, 276, 0), (287, 276, 286, 0), (288, 278, 277, 0), (288, 277, 287, 0), (289, 279, 278, 0), (289, 278, 288, 0), (290, 280, 279, 0), (290, 279, 289, 0), -- VRML: [# triangle 350 -- ] (291, 281, 280, 0), (291, 280, 290, 0), (292, 282, 281, 0), (292, 281, 291, 0), (293, 283, 282, 0), (293, 282, 292, 0), (295, 285, 284, 0), (296, 286, 285, 0), (296, 285, 295, 0), (297, 287, 286, 0), (297, 286, 296, 0), (298, 288, 287, 0), (298, 287, 297, 0), (299, 289, 288, 0), (299, 288, 298, 0), (300, 290, 289, 0), (300, 289, 299, 0), (301, 291, 290, 0), (301, 290, 300, 0), (302, 292, 291, 0), (302, 291, 301, 0), (303, 293, 292, 0), (303, 292, 302, 0), (305, 295, 294, 0), (306, 296, 295, 0), -- VRML: [# triangle 375 -- ] (306, 295, 305, 0), (297, 296, 306, 0), (307, 299, 298, 0), (308, 300, 299, 0), (308, 299, 307, 0), (309, 301, 300, 0), (309, 300, 308, 0), (310, 302, 301, 0), (310, 301, 309, 0), (311, 303, 302, 0), (311, 302, 310, 0), (313, 305, 304, 0), (314, 306, 305, 0), (314, 305, 313, 0), (316, 308, 307, 0), (316, 307, 315, 0), (317, 309, 308, 0), (317, 308, 316, 0), (318, 310, 309, 0), (318, 309, 317, 0), (319, 311, 310, 0), (319, 310, 318, 0), (238, 341, 342, 0), (342, 343, 237, 0), (341, 238, 340, 0), -- VRML: [# triangle 400 -- ] (339, 340, 239, 0), (238, 239, 340, 0), (338, 339, 239, 0), (425, 239, 424, 0), (237, 238, 342, 0), (428, 337, 338, 0), (337, 428, 429, 0), (428, 338, 427, 0), (429, 336, 337, 0), (426, 427, 239, 0), (405, 336, 429, 0), (239, 427, 338, 0), (426, 239, 425, 0), (406, 240, 405, 0), (248, 421, 422, 0), (423, 424, 239, 0), (422, 423, 239, 0), (419, 420, 248, 0), (421, 248, 420, 0), (418, 419, 257, 0), (248, 257, 419, 0), (417, 418, 257, 0), (239, 248, 422, 0), (413, 249, 412, 0), (411, 249, 410, 0), -- VRML: [# triangle 425 -- ] (249, 411, 412, 0), (258, 416, 417, 0), (415, 249, 414, 0), (416, 258, 415, 0), (249, 413, 414, 0), (258, 417, 257, 0), (415, 258, 249, 0), (335, 336, 405, 0), (240, 333, 334, 0), (334, 335, 240, 0), (332, 333, 241, 0), (240, 241, 333, 0), (330, 331, 241, 0), (332, 241, 331, 0), (242, 329, 330, 0), (405, 240, 335, 0), (242, 328, 329, 0), (243, 326, 327, 0), (327, 328, 243, 0), (244, 404, 324, 0), (236, 323, 404, 0), (324, 404, 323, 0), (325, 244, 324, 0), (326, 244, 325, 0), (241, 242, 330, 0), -- VRML: [# triangle 450 -- ] (408, 240, 407, 0), (326, 243, 244, 0), (328, 242, 243, 0), (249, 408, 409, 0), (401, 253, 263, 0), (409, 410, 249, 0), (249, 240, 408, 0), (240, 406, 407, 0), (403, 244, 253, 0), (403, 245, 244, 0), (401, 402, 253, 0), (403, 253, 402, 0), (398, 273, 283, 0), (399, 400, 263, 0), (273, 398, 399, 0), (398, 283, 397, 0), (263, 400, 401, 0), (263, 273, 399, 0), (404, 244, 245, 0), (355, 297, 306, 0), (297, 355, 356, 0), (355, 306, 354, 0), (357, 297, 356, 0), (306, 352, 353, 0), (351, 314, 350, 0), -- VRML: [# triangle 475 -- ] (314, 351, 352, 0), (306, 353, 354, 0), (306, 314, 352, 0), (298, 357, 358, 0), (359, 307, 298, 0), (358, 359, 298, 0), (297, 357, 298, 0), (360, 307, 359, 0), (363, 307, 362, 0), (362, 307, 361, 0), (361, 307, 360, 0), (364, 307, 363, 0), (370, 313, 312, 0), (350, 314, 349, 0), (313, 372, 314, 0), (312, 369, 370, 0), (313, 371, 372, 0), (314, 372, 373, 0), (313, 370, 371, 0), (374, 314, 373, 0), (348, 349, 314, 0), (348, 314, 347, 0), (375, 346, 374, 0), (347, 374, 346, 0), (345, 376, 344, 0), -- VRML: [# triangle 500 -- ] (346, 375, 345, 0), (315, 368, 344, 0), (314, 374, 347, 0), (345, 375, 376, 0), (307, 365, 366, 0), (396, 283, 293, 0), (315, 307, 366, 0), (364, 365, 307, 0), (315, 367, 368, 0), (382, 317, 316, 0), (384, 318, 317, 0), (316, 315, 379, 0), (366, 367, 315, 0), (283, 396, 397, 0), (395, 293, 303, 0), (395, 396, 293, 0), (395, 303, 394, 0), (394, 303, 393, 0), (311, 393, 303, 0), (311, 392, 393, 0), (311, 391, 392, 0), (319, 391, 311, 0), (377, 378, 315, 0), (379, 380, 316, 0), (378, 379, 315, 0), -- VRML: [# triangle 525 -- ] (381, 382, 316, 0), (383, 384, 317, 0), (384, 385, 318, 0), (382, 383, 317, 0), (380, 381, 316, 0), (388, 390, 319, 0), (386, 318, 385, 0), (319, 390, 320, 0), (319, 318, 386, 0), (391, 319, 320, 0), (319, 386, 387, 0), (390, 388, 389, 0), (390, 389, 322, 0), (319, 387, 388, 0), (377, 315, 344, 0), (376, 377, 344, 0), (441, 436, 435, 0), (442, 437, 436, 0), (442, 436, 441, 0), (443, 438, 437, 0), (443, 437, 442, 0), (444, 439, 438, 0), (444, 438, 443, 0), (446, 441, 440, 0), (447, 442, 441, 0), -- VRML: [# triangle 550 -- ] (447, 441, 446, 0), (448, 443, 442, 0), (448, 442, 447, 0), (449, 444, 443, 0), (449, 443, 448, 0), (451, 446, 445, 0), (452, 447, 446, 0), (452, 446, 451, 0), (453, 448, 447, 0), (453, 447, 452, 0), (454, 449, 448, 0), (454, 448, 453, 0), (456, 451, 450, 0), (457, 452, 451, 0), (457, 451, 456, 0), (458, 453, 452, 0), (458, 452, 457, 0), (459, 454, 453, 0), (459, 453, 458, 0), (461, 456, 455, 0), (462, 457, 456, 0), (462, 456, 461, 0), (463, 458, 457, 0), (463, 457, 462, 0), (464, 459, 458, 0), -- VRML: [# triangle 575 -- ] (464, 458, 463, 0), (466, 461, 460, 0), (467, 462, 461, 0), (467, 461, 466, 0), (468, 463, 462, 0), (468, 462, 467, 0), (469, 464, 463, 0), (469, 463, 468, 0), (436, 432, 431, 0), (438, 508, 509, 0), (439, 506, 507, 0), (507, 508, 438, 0), (509, 432, 437, 0), (436, 437, 432, 0), (438, 439, 507, 0), (437, 438, 509, 0), (439, 505, 433, 0), (504, 505, 439, 0), (433, 506, 439, 0), (444, 480, 439, 0), (435, 436, 431, 0), (503, 504, 439, 0), (502, 503, 439, 0), (500, 501, 439, 0), (480, 498, 499, 0), -- VRML: [# triangle 600 -- ] (500, 439, 499, 0), (502, 439, 501, 0), (480, 496, 497, 0), (480, 494, 495, 0), (495, 496, 480, 0), (480, 492, 493, 0), (492, 480, 434, 0), (480, 493, 494, 0), (480, 497, 498, 0), (439, 480, 499, 0), (480, 444, 479, 0), (482, 466, 465, 0), (471, 467, 466, 0), (477, 449, 454, 0), (475, 459, 464, 0), (476, 454, 459, 0), (481, 482, 465, 0), (483, 471, 466, 0), (482, 483, 466, 0), (468, 467, 484, 0), (484, 467, 471, 0), (468, 484, 485, 0), (485, 469, 468, 0), (479, 449, 478, 0), (464, 469, 488, 0), -- VRML: [# triangle 625 -- ] (478, 449, 477, 0), (476, 477, 454, 0), (474, 475, 464, 0), (476, 459, 475, 0), (464, 488, 474, 0), (469, 472, 486, 0), (469, 487, 488, 0), (469, 486, 487, 0), (474, 489, 490, 0), (474, 491, 473, 0), (474, 490, 491, 0), (474, 488, 489, 0), (472, 469, 485, 0), (444, 449, 479, 0), (552, 551, 525, 0), (550, 549, 527, 0), (550, 527, 526, 0), (526, 551, 550, 0), (514, 545, 544, 0), (515, 544, 543, 0), (553, 552, 524, 0), (528, 527, 549, 0), (523, 554, 553, 0), (554, 522, 555, 0), (545, 511, 546, 0), -- VRML: [# triangle 650 -- ] (548, 528, 549, 0), (547, 510, 530, 0), (510, 564, 532, 0), (563, 562, 534, 0), (563, 533, 564, 0), (535, 562, 561, 0), (547, 529, 548, 0), (530, 510, 531, 0), (531, 510, 532, 0), (560, 559, 537, 0), (560, 536, 561, 0), (564, 533, 532, 0), (533, 563, 534, 0), (529, 547, 530, 0), (529, 528, 548, 0), (516, 542, 541, 0), (513, 511, 545, 0), (516, 541, 540, 0), (539, 558, 518, 0), (517, 540, 539, 0), (558, 557, 519, 0), (515, 514, 544, 0), (543, 542, 515, 0), (516, 515, 542, 0), (519, 518, 558, 0), -- VRML: [# triangle 675 -- ] (518, 517, 539, 0), (540, 517, 516, 0), (514, 513, 545, 0), (520, 519, 557, 0), (551, 526, 525, 0), (525, 524, 552, 0), (535, 561, 536, 0), (512, 537, 559, 0), (537, 536, 560, 0), (534, 562, 535, 0), (555, 521, 556, 0), (555, 522, 521, 0), (522, 554, 523, 0), (553, 524, 523, 0), (512, 538, 537, 0), (556, 521, 520, 0), (520, 557, 556, 0), (578, 567, 566, 0), (578, 566, 577, 0), (579, 568, 567, 0), (579, 567, 578, 0), (580, 569, 568, 0), (580, 568, 579, 0), (581, 570, 569, 0), (581, 569, 580, 0), -- VRML: [# triangle 700 -- ] (582, 570, 581, 0), (584, 573, 572, 0), (585, 574, 573, 0), (585, 573, 584, 0), (586, 575, 574, 0), (586, 574, 585, 0), (587, 576, 575, 0), (587, 575, 586, 0), (588, 577, 576, 0), (588, 576, 587, 0), (589, 578, 577, 0), (589, 577, 588, 0), (590, 579, 578, 0), (590, 578, 589, 0), (591, 580, 579, 0), (591, 579, 590, 0), (592, 581, 580, 0), (592, 580, 591, 0), (593, 581, 592, 0), (595, 584, 583, 0), (596, 585, 584, 0), (596, 584, 595, 0), (597, 586, 585, 0), (597, 585, 596, 0), (598, 587, 586, 0), -- VRML: [# triangle 725 -- ] (598, 586, 597, 0), (599, 588, 587, 0), (599, 587, 598, 0), (600, 589, 588, 0), (600, 588, 599, 0), (601, 590, 589, 0), (601, 589, 600, 0), (602, 591, 590, 0), (602, 590, 601, 0), (603, 592, 591, 0), (603, 591, 602, 0), (604, 592, 603, 0), (606, 595, 594, 0), (607, 596, 595, 0), (607, 595, 606, 0), (608, 597, 596, 0), (608, 596, 607, 0), (609, 598, 597, 0), (609, 597, 608, 0), (610, 599, 598, 0), (610, 598, 609, 0), (611, 600, 599, 0), (611, 599, 610, 0), (612, 601, 600, 0), (612, 600, 611, 0), -- VRML: [# triangle 750 -- ] (613, 602, 601, 0), (613, 601, 612, 0), (614, 603, 602, 0), (614, 602, 613, 0), (615, 603, 614, 0), (617, 606, 605, 0), (618, 607, 606, 0), (618, 606, 617, 0), (619, 608, 607, 0), (619, 607, 618, 0), (620, 609, 608, 0), (620, 608, 619, 0), (621, 610, 609, 0), (621, 609, 620, 0), (622, 611, 610, 0), (622, 610, 621, 0), (623, 612, 611, 0), (623, 611, 622, 0), (624, 613, 612, 0), (624, 612, 623, 0), (625, 614, 613, 0), (625, 613, 624, 0), (626, 614, 625, 0), (628, 617, 616, 0), (629, 618, 617, 0), -- VRML: [# triangle 775 -- ] (629, 617, 628, 0), (630, 619, 618, 0), (630, 618, 629, 0), (631, 620, 619, 0), (631, 619, 630, 0), (632, 621, 620, 0), (632, 620, 631, 0), (633, 622, 621, 0), (633, 621, 632, 0), (634, 623, 622, 0), (634, 622, 633, 0), (635, 624, 623, 0), (635, 623, 634, 0), (636, 625, 624, 0), (636, 624, 635, 0), (637, 625, 636, 0), (639, 628, 627, 0), (640, 629, 628, 0), (640, 628, 639, 0), (641, 630, 629, 0), (641, 629, 640, 0), (642, 631, 630, 0), (642, 630, 641, 0), (643, 632, 631, 0), (643, 631, 642, 0), -- VRML: [# triangle 800 -- ] (644, 633, 632, 0), (644, 632, 643, 0), (645, 634, 633, 0), (645, 633, 644, 0), (646, 635, 634, 0), (646, 634, 645, 0), (647, 636, 635, 0), (647, 635, 646, 0), (648, 636, 647, 0), (650, 639, 638, 0), (651, 640, 639, 0), (651, 639, 650, 0), (652, 641, 640, 0), (652, 640, 651, 0), (653, 642, 641, 0), (653, 641, 652, 0), (654, 643, 642, 0), (654, 642, 653, 0), (655, 644, 643, 0), (655, 643, 654, 0), (656, 645, 644, 0), (656, 644, 655, 0), (657, 646, 645, 0), (657, 645, 656, 0), (658, 647, 646, 0), -- VRML: [# triangle 825 -- ] (658, 646, 657, 0), (659, 647, 658, 0), (661, 650, 649, 0), (662, 651, 650, 0), (662, 650, 661, 0), (663, 652, 651, 0), (663, 651, 662, 0), (664, 653, 652, 0), (664, 652, 663, 0), (665, 654, 653, 0), (665, 653, 664, 0), (666, 655, 654, 0), (666, 654, 665, 0), (667, 656, 655, 0), (667, 655, 666, 0), (668, 657, 656, 0), (668, 656, 667, 0), (669, 658, 657, 0), (669, 657, 668, 0), (670, 658, 669, 0), (672, 661, 660, 0), (673, 662, 661, 0), (673, 661, 672, 0), (674, 663, 662, 0), (674, 662, 673, 0), -- VRML: [# triangle 850 -- ] (675, 664, 663, 0), (675, 663, 674, 0), (676, 665, 664, 0), (676, 664, 675, 0), (677, 666, 665, 0), (677, 665, 676, 0), (678, 667, 666, 0), (678, 666, 677, 0), (679, 668, 667, 0), (679, 667, 678, 0), (680, 669, 668, 0), (680, 668, 679, 0), (681, 669, 680, 0), (683, 672, 671, 0), (684, 673, 672, 0), (684, 672, 683, 0), (685, 674, 673, 0), (685, 673, 684, 0), (686, 675, 674, 0), (686, 674, 685, 0), (687, 676, 675, 0), (687, 675, 686, 0), (688, 677, 676, 0), (688, 676, 687, 0), (689, 678, 677, 0), -- VRML: [# triangle 875 -- ] (689, 677, 688, 0), (690, 679, 678, 0), (690, 678, 689, 0), (691, 680, 679, 0), (691, 679, 690, 0), (692, 680, 691, 0), (694, 683, 682, 0), (695, 684, 683, 0), (695, 683, 694, 0), (696, 685, 684, 0), (696, 684, 695, 0), (697, 686, 685, 0), (697, 685, 696, 0), (698, 687, 686, 0), (698, 686, 697, 0), (699, 688, 687, 0), (699, 687, 698, 0), (700, 689, 688, 0), (700, 688, 699, 0), (701, 690, 689, 0), (701, 689, 700, 0), (702, 691, 690, 0), (702, 690, 701, 0), (703, 691, 702, 0), (705, 694, 693, 0), -- VRML: [# triangle 900 -- ] (706, 695, 694, 0), (706, 694, 705, 0), (707, 696, 695, 0), (707, 695, 706, 0), (708, 697, 696, 0), (708, 696, 707, 0), (709, 698, 697, 0), (709, 697, 708, 0), (710, 699, 698, 0), (710, 698, 709, 0), (711, 700, 699, 0), (711, 699, 710, 0), (712, 701, 700, 0), (712, 700, 711, 0), (713, 702, 701, 0), (713, 701, 712, 0), (714, 702, 713, 0), (716, 705, 704, 0), (717, 706, 705, 0), (717, 705, 716, 0), (718, 707, 706, 0), (718, 706, 717, 0), (719, 708, 707, 0), (719, 707, 718, 0), (720, 709, 708, 0), -- VRML: [# triangle 925 -- ] (720, 708, 719, 0), (721, 710, 709, 0), (721, 709, 720, 0), (722, 711, 710, 0), (722, 710, 721, 0), (723, 712, 711, 0), (723, 711, 722, 0), (724, 713, 712, 0), (724, 712, 723, 0), (725, 713, 724, 0), (727, 716, 715, 0), (728, 717, 716, 0), (728, 716, 727, 0), (729, 718, 717, 0), (729, 717, 728, 0), (730, 719, 718, 0), (730, 718, 729, 0), (731, 720, 719, 0), (731, 719, 730, 0), (732, 721, 720, 0), (732, 720, 731, 0), (733, 722, 721, 0), (733, 721, 732, 0), (734, 723, 722, 0), (734, 722, 733, 0), -- VRML: [# triangle 950 -- ] (735, 724, 723, 0), (735, 723, 734, 0), (736, 724, 735, 0), (739, 732, 731, 0), (739, 731, 738, 0), (740, 733, 732, 0), (740, 732, 739, 0), (741, 734, 733, 0), (741, 733, 740, 0), (742, 735, 734, 0), (742, 734, 741, 0), (743, 735, 742, 0), (770, 771, 565, 0), (565, 769, 770, 0), (769, 572, 768, 0), (767, 768, 573, 0), (572, 573, 768, 0), (574, 767, 573, 0), (574, 751, 766, 0), (767, 574, 766, 0), (575, 751, 574, 0), (566, 746, 747, 0), (566, 744, 745, 0), (746, 566, 745, 0), (566, 747, 577, 0), -- VRML: [# triangle 975 -- ] (750, 576, 749, 0), (751, 575, 750, 0), (575, 576, 750, 0), (577, 748, 576, 0), (749, 576, 748, 0), (747, 748, 577, 0), (727, 756, 728, 0), (758, 728, 757, 0), (728, 756, 757, 0), (729, 728, 758, 0), (755, 727, 726, 0), (752, 753, 737, 0), (754, 737, 753, 0), (755, 756, 727, 0), (754, 755, 726, 0), (730, 729, 759, 0), (758, 759, 729, 0), (761, 731, 730, 0), (759, 760, 730, 0), (760, 761, 730, 0), (738, 762, 763, 0), (731, 762, 738, 0), (738, 764, 765, 0), (763, 764, 738, 0), (761, 762, 731, 0), -- VRML: [# triangle 1000 -- ] (773, 781, 782, 0), (786, 815, 785, 0), (787, 814, 786, 0), (786, 814, 815, 0), (813, 787, 788, 0), (803, 779, 780, 0), (803, 778, 779, 0), (788, 789, 812, 0), (816, 785, 815, 0), (811, 789, 790, 0), (790, 791, 810, 0), (780, 781, 802, 0), (784, 785, 816, 0), (783, 818, 772, 0), (772, 820, 800, 0), (799, 822, 798, 0), (799, 800, 821, 0), (823, 797, 798, 0), (783, 784, 817, 0), (818, 819, 772, 0), (819, 820, 772, 0), (796, 825, 795, 0), (796, 797, 824, 0), (800, 820, 821, 0), (821, 822, 799, 0), -- VRML: [# triangle 1025 -- ] (817, 818, 783, 0), (817, 784, 816, 0), (804, 827, 776, 0), (801, 781, 773, 0), (776, 777, 804, 0), (794, 807, 793, 0), (794, 775, 827, 0), (776, 827, 775, 0), (827, 806, 794, 0), (780, 802, 803, 0), (803, 804, 778, 0), (777, 778, 804, 0), (807, 794, 806, 0), (806, 827, 805, 0), (827, 804, 805, 0), (802, 781, 801, 0), (808, 793, 807, 0), (787, 813, 814, 0), (813, 788, 812, 0), (823, 824, 797, 0), (774, 795, 825, 0), (825, 796, 824, 0), (822, 823, 798, 0), (791, 792, 809, 0), (791, 809, 810, 0), -- VRML: [# triangle 1050 -- ] (810, 811, 790, 0), (789, 811, 812, 0), (774, 825, 826, 0), (792, 808, 809, 0), (808, 792, 793, 0), (841, 840, 829, 0), (841, 829, 830, 0), (842, 841, 830, 0), (842, 830, 831, 0), (843, 842, 831, 0), (843, 831, 832, 0), (844, 843, 832, 0), (844, 832, 833, 0), (845, 844, 833, 0), (847, 835, 836, 0), (848, 847, 836, 0), (848, 836, 837, 0), (849, 848, 837, 0), (849, 837, 838, 0), (850, 849, 838, 0), (850, 838, 839, 0), (851, 850, 839, 0), (851, 839, 840, 0), (852, 851, 840, 0), (852, 840, 841, 0), -- VRML: [# triangle 1075 -- ] (853, 852, 841, 0), (853, 841, 842, 0), (854, 853, 842, 0), (854, 842, 843, 0), (855, 854, 843, 0), (855, 843, 844, 0), (856, 855, 844, 0), (858, 846, 847, 0), (859, 858, 847, 0), (859, 847, 848, 0), (860, 859, 848, 0), (860, 848, 849, 0), (861, 860, 849, 0), (861, 849, 850, 0), (862, 861, 850, 0), (862, 850, 851, 0), (863, 862, 851, 0), (863, 851, 852, 0), (864, 863, 852, 0), (864, 852, 853, 0), (865, 864, 853, 0), (865, 853, 854, 0), (866, 865, 854, 0), (866, 854, 855, 0), (867, 866, 855, 0), -- VRML: [# triangle 1100 -- ] (869, 857, 858, 0), (870, 869, 858, 0), (870, 858, 859, 0), (871, 870, 859, 0), (871, 859, 860, 0), (872, 871, 860, 0), (872, 860, 861, 0), (873, 872, 861, 0), (873, 861, 862, 0), (874, 873, 862, 0), (874, 862, 863, 0), (875, 874, 863, 0), (875, 863, 864, 0), (876, 875, 864, 0), (876, 864, 865, 0), (877, 876, 865, 0), (877, 865, 866, 0), (878, 877, 866, 0), (880, 868, 869, 0), (881, 880, 869, 0), (881, 869, 870, 0), (882, 881, 870, 0), (882, 870, 871, 0), (883, 882, 871, 0), (883, 871, 872, 0), -- VRML: [# triangle 1125 -- ] (884, 883, 872, 0), (884, 872, 873, 0), (885, 884, 873, 0), (885, 873, 874, 0), (886, 885, 874, 0), (886, 874, 875, 0), (887, 886, 875, 0), (887, 875, 876, 0), (888, 887, 876, 0), (888, 876, 877, 0), (889, 888, 877, 0), (891, 879, 880, 0), (892, 891, 880, 0), (892, 880, 881, 0), (893, 892, 881, 0), (893, 881, 882, 0), (894, 893, 882, 0), (894, 882, 883, 0), (895, 894, 883, 0), (895, 883, 884, 0), (896, 895, 884, 0), (896, 884, 885, 0), (897, 896, 885, 0), (897, 885, 886, 0), (898, 897, 886, 0), -- VRML: [# triangle 1150 -- ] (898, 886, 887, 0), (899, 898, 887, 0), (899, 887, 888, 0), (900, 899, 888, 0), (902, 890, 891, 0), (903, 902, 891, 0), (903, 891, 892, 0), (904, 903, 892, 0), (904, 892, 893, 0), (905, 904, 893, 0), (905, 893, 894, 0), (906, 905, 894, 0), (906, 894, 895, 0), (907, 906, 895, 0), (907, 895, 896, 0), (908, 907, 896, 0), (908, 896, 897, 0), (909, 908, 897, 0), (909, 897, 898, 0), (910, 909, 898, 0), (910, 898, 899, 0), (911, 910, 899, 0), (913, 901, 902, 0), (914, 913, 902, 0), (914, 902, 903, 0), -- VRML: [# triangle 1175 -- ] (915, 914, 903, 0), (915, 903, 904, 0), (916, 915, 904, 0), (916, 904, 905, 0), (917, 916, 905, 0), (917, 905, 906, 0), (918, 917, 906, 0), (918, 906, 907, 0), (919, 918, 907, 0), (919, 907, 908, 0), (920, 919, 908, 0), (920, 908, 909, 0), (921, 920, 909, 0), (921, 909, 910, 0), (922, 921, 910, 0), (924, 912, 913, 0), (925, 924, 913, 0), (925, 913, 914, 0), (926, 925, 914, 0), (926, 914, 915, 0), (927, 926, 915, 0), (927, 915, 916, 0), (928, 927, 916, 0), (928, 916, 917, 0), (929, 928, 917, 0), -- VRML: [# triangle 1200 -- ] (929, 917, 918, 0), (930, 929, 918, 0), (930, 918, 919, 0), (931, 930, 919, 0), (931, 919, 920, 0), (932, 931, 920, 0), (932, 920, 921, 0), (933, 932, 921, 0), (935, 923, 924, 0), (936, 935, 924, 0), (936, 924, 925, 0), (937, 936, 925, 0), (937, 925, 926, 0), (938, 937, 926, 0), (938, 926, 927, 0), (939, 938, 927, 0), (939, 927, 928, 0), (940, 939, 928, 0), (940, 928, 929, 0), (941, 940, 929, 0), (941, 929, 930, 0), (942, 941, 930, 0), (942, 930, 931, 0), (943, 942, 931, 0), (943, 931, 932, 0), -- VRML: [# triangle 1225 -- ] (944, 943, 932, 0), (946, 934, 935, 0), (947, 946, 935, 0), (947, 935, 936, 0), (948, 947, 936, 0), (948, 936, 937, 0), (949, 948, 937, 0), (949, 937, 938, 0), (950, 949, 938, 0), (950, 938, 939, 0), (951, 950, 939, 0), (951, 939, 940, 0), (952, 951, 940, 0), (952, 940, 941, 0), (953, 952, 941, 0), (953, 941, 942, 0), (954, 953, 942, 0), (954, 942, 943, 0), (955, 954, 943, 0), (957, 945, 946, 0), (958, 957, 946, 0), (958, 946, 947, 0), (959, 958, 947, 0), (959, 947, 948, 0), (960, 959, 948, 0), -- VRML: [# triangle 1250 -- ] (960, 948, 949, 0), (961, 960, 949, 0), (961, 949, 950, 0), (962, 961, 950, 0), (962, 950, 951, 0), (963, 962, 951, 0), (963, 951, 952, 0), (964, 963, 952, 0), (964, 952, 953, 0), (965, 964, 953, 0), (965, 953, 954, 0), (966, 965, 954, 0), (968, 956, 957, 0), (969, 968, 957, 0), (969, 957, 958, 0), (970, 969, 958, 0), (970, 958, 959, 0), (971, 970, 959, 0), (971, 959, 960, 0), (972, 971, 960, 0), (972, 960, 961, 0), (973, 972, 961, 0), (973, 961, 962, 0), (974, 973, 962, 0), (974, 962, 963, 0), -- VRML: [# triangle 1275 -- ] (975, 974, 963, 0), (975, 963, 964, 0), (976, 975, 964, 0), (976, 964, 965, 0), (977, 976, 965, 0), (979, 967, 968, 0), (980, 979, 968, 0), (980, 968, 969, 0), (981, 980, 969, 0), (981, 969, 970, 0), (982, 981, 970, 0), (982, 970, 971, 0), (983, 982, 971, 0), (983, 971, 972, 0), (984, 983, 972, 0), (984, 972, 973, 0), (985, 984, 973, 0), (985, 973, 974, 0), (986, 985, 974, 0), (986, 974, 975, 0), (987, 986, 975, 0), (987, 975, 976, 0), (988, 987, 976, 0), (990, 978, 979, 0), (991, 990, 979, 0), -- VRML: [# triangle 1300 -- ] (991, 979, 980, 0), (992, 991, 980, 0), (992, 980, 981, 0), (993, 992, 981, 0), (993, 981, 982, 0), (994, 993, 982, 0), (994, 982, 983, 0), (995, 994, 983, 0), (995, 983, 984, 0), (996, 995, 984, 0), (996, 984, 985, 0), (997, 996, 985, 0), (997, 985, 986, 0), (998, 997, 986, 0), (998, 986, 987, 0), (999, 998, 987, 0), (1002, 1001, 994, 0), (1002, 994, 995, 0), (1003, 1002, 995, 0), (1003, 995, 996, 0), (1004, 1003, 996, 0), (1004, 996, 997, 0), (1005, 1004, 997, 0), (1005, 997, 998, 0), (1006, 1005, 998, 0), -- VRML: [# triangle 1325 -- ] (1033, 828, 1034, 0), (828, 1033, 1032, 0), (1032, 1031, 835, 0), (1030, 836, 1031, 0), (835, 1031, 836, 0), (837, 836, 1030, 0), (837, 1029, 1014, 0), (1030, 1029, 837, 0), (838, 837, 1014, 0), (829, 1010, 1009, 0), (829, 1008, 1007, 0), (1009, 1008, 829, 0), (829, 840, 1010, 0), (1013, 1012, 839, 0), (1014, 1013, 838, 0), (838, 1013, 839, 0), (840, 839, 1011, 0), (1012, 1011, 839, 0), (1010, 840, 1011, 0), (990, 991, 1019, 0), (1021, 1020, 991, 0), (991, 1020, 1019, 0), (992, 1021, 991, 0), (1018, 989, 990, 0), (1015, 1000, 1016, 0), -- VRML: [# triangle 1350 -- ] (1017, 1016, 1000, 0), (1018, 990, 1019, 0), (1017, 989, 1018, 0), (993, 1022, 992, 0), (1021, 992, 1022, 0), (1024, 993, 994, 0), (1022, 993, 1023, 0), (1023, 993, 1024, 0), (1001, 1026, 1025, 0), (994, 1001, 1025, 0), (1001, 1028, 1027, 0), (1026, 1001, 1027, 0), (1024, 994, 1025, 0) -- 1364 ); -- VRML: [# 1364 triangles -- ] -- last index now: 0 -- end Separator # 2 -- VRML: [#triangle mesh -- ] -- last index now: 0 -- end Separator # 2 -- VRML: [# triangle mesh -- ] procedure Create (Object : in out GLOBE_3D.p_Object_3D; Object_Scale : GLOBE_3D.Real; Centre : GLOBE_3D.Point_3D) is face_0 : Face_type; -- takes defaults values begin Object := new Object_3D (Max_points => 1034, Max_faces => 1364); Object.all.Centre := Centre; Set_name (Object.all, "insect_body"); face_0.skin := material_only; face_0.material := VRML_Defaults; -- Creating separator # 1 if Almost_zero (Object_Scale - 1.0) then Object.all.Point (1 .. 1034) := coord_1; else for p in 1 .. 1034 loop Object.all.Point (0 + p) := Object_Scale * coord_1 (p); end loop; end if; face_0.material := matos_1; -- Creating separator # 2 for f in 1 .. 1364 loop face_0.P := idx_2 (f); Object.all.face (0 + f) := face_0; end loop; end Create; end Spaceship_P; -- Converted by Wrl2Ada
102.854037
183
0.516561
20bcab155228717cdd13b659226930f24a459585
883,893
adb
Ada
TestApps/Rosetta/BNN/Prebuilt/Synth/_sds/vhls/top/solution/.autopilot/db/bin_dense.sched.adb
stephenneuendorffer/hls_tuner
fa7de78f0e2bb4b8f9f2e0a0368ed071b379c875
[ "MIT" ]
1
2021-02-21T12:13:09.000Z
2021-02-21T12:13:09.000Z
TestApps/Rosetta/BNN/Prebuilt/Synth/_sds/vhls/top/solution/.autopilot/db/bin_dense.sched.adb
stephenneuendorffer/hls_tuner
fa7de78f0e2bb4b8f9f2e0a0368ed071b379c875
[ "MIT" ]
null
null
null
TestApps/Rosetta/BNN/Prebuilt/Synth/_sds/vhls/top/solution/.autopilot/db/bin_dense.sched.adb
stephenneuendorffer/hls_tuner
fa7de78f0e2bb4b8f9f2e0a0368ed071b379c875
[ "MIT" ]
1
2019-09-10T16:45:27.000Z
2019-09-10T16:45:27.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="14"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName></userIPName> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>bin_dense</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>wt_mem_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>wt_mem[0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>2341</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>wt_mem_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>wt_mem[1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>2341</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>kh_mem_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>kh_mem.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>1</if_type> <array_size>64</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>dmem_0_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dmem[0][0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>1024</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>dmem_0_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dmem[0][1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>1024</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>dmem_1_0_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dmem[1][0].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>1024</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>dmem_1_1_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>dmem[1][1].V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>2</direction> <if_type>1</if_type> <array_size>1024</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>layer_type_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</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>d_i_idx_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_10"> <Value> <Obj> <type>1</type> <id>10</id> <name>d_o_idx_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_11"> <Value> <Obj> <type>1</type> <id>11</id> <name>o_index_V</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_12"> <Value> <Obj> <type>1</type> <id>12</id> <name>n_inputs</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>n_inputs</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_13"> <Value> <Obj> <type>1</type> <id>13</id> <name>n_outputs</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>n_outputs</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <direction>0</direction> <if_type>0</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>394</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_14"> <Value> <Obj> <type>0</type> <id>14</id> <name>n_outputs_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>n_outputs</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>439</item> <item>440</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>15</id> <name>n_inputs_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>n_inputs</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>441</item> <item>442</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>16</id> <name>o_index_V_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>443</item> <item>444</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>17</id> <name>d_o_idx_V_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>446</item> <item>447</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>18</id> <name>d_i_idx_V_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>448</item> <item>449</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>19</id> <name>layer_type_V_read</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>451</item> <item>452</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>20</id> <name>tmp</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>626</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>626</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>455</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>21</id> <name>lhs_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>639</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>639</second> </item> </second> </item> </inlineStackInfo> <originalName>lhs.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>456</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_22"> <Value> <Obj> <type>0</type> <id>22</id> <name>tmp_1147</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>640</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>640</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>457</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_23"> <Value> <Obj> <type>0</type> <id>23</id> <name>sel_tmp</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>458</item> <item>460</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_24"> <Value> <Obj> <type>0</type> <id>24</id> <name>tmp_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>649</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>649</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>461</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_25"> <Value> <Obj> <type>0</type> <id>25</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>462</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_26"> <Value> <Obj> <type>0</type> <id>27</id> <name>p_Val2_7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>best_out.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>464</item> <item>465</item> <item>466</item> <item>467</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_27"> <Value> <Obj> <type>0</type> <id>28</id> <name>p_Val2_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>prediction.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>469</item> <item>470</item> <item>471</item> <item>472</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_28"> <Value> <Obj> <type>0</type> <id>29</id> <name>p_s</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>o.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>474</item> <item>475</item> <item>476</item> <item>477</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_29"> <Value> <Obj> <type>0</type> <id>30</id> <name>phi_mul</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>649</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>649</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>479</item> <item>480</item> <item>481</item> <item>482</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_30"> <Value> <Obj> <type>0</type> <id>31</id> <name>next_mul</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>649</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>649</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>483</item> <item>484</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_31"> <Value> <Obj> <type>0</type> <id>32</id> <name>exitcond</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>485</item> <item>486</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_32"> <Value> <Obj> <type>0</type> <id>33</id> <name>o_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</second> </item> </second> </item> </inlineStackInfo> <originalName>o.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>487</item> <item>489</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_33"> <Value> <Obj> <type>0</type> <id>34</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>490</item> <item>491</item> <item>492</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_34"> <Value> <Obj> <type>0</type> <id>39</id> <name>rhs_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>639</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>639</second> </item> </second> </item> </inlineStackInfo> <originalName>rhs.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>493</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_35"> <Value> <Obj> <type>0</type> <id>40</id> <name>tmp_54</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>494</item> <item>495</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_36"> <Value> <Obj> <type>0</type> <id>41</id> <name>r_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>639</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>639</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>17</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>496</item> <item>497</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_37"> <Value> <Obj> <type>0</type> <id>42</id> <name>tmp_1148</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>640</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>640</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>498</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_38"> <Value> <Obj> <type>0</type> <id>43</id> <name>o_offset_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>640</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>640</second> </item> </second> </item> </inlineStackInfo> <originalName>o_offset.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>499</item> <item>500</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_39"> <Value> <Obj> <type>0</type> <id>44</id> <name>tmp_55</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>502</item> <item>503</item> <item>505</item> <item>507</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_40"> <Value> <Obj> <type>0</type> <id>45</id> <name>tmp_56</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</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>508</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_41"> <Value> <Obj> <type>0</type> <id>46</id> <name>tmp_1149</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>510</item> <item>511</item> <item>513</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_42"> <Value> <Obj> <type>0</type> <id>47</id> <name>dmem_0_0_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>514</item> <item>516</item> <item>517</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_43"> <Value> <Obj> <type>0</type> <id>48</id> <name>dmem_0_1_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>518</item> <item>519</item> <item>520</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_44"> <Value> <Obj> <type>0</type> <id>49</id> <name>dmem_1_0_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>521</item> <item>522</item> <item>523</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_45"> <Value> <Obj> <type>0</type> <id>50</id> <name>dmem_1_1_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>524</item> <item>525</item> <item>526</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_46"> <Value> <Obj> <type>0</type> <id>51</id> <name>dmem_1_1_V_load</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>527</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_47"> <Value> <Obj> <type>0</type> <id>52</id> <name>dmem_1_0_V_load</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>528</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_48"> <Value> <Obj> <type>0</type> <id>53</id> <name>dmem_0_1_V_load</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>529</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_49"> <Value> <Obj> <type>0</type> <id>54</id> <name>dmem_0_0_V_load</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>530</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_50"> <Value> <Obj> <type>0</type> <id>55</id> <name>sel_tmp1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>531</item> <item>532</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_51"> <Value> <Obj> <type>0</type> <id>56</id> <name>sel_tmp2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>533</item> <item>534</item> <item>535</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_52"> <Value> <Obj> <type>0</type> <id>57</id> <name>sel_tmp3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>536</item> <item>537</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_53"> <Value> <Obj> <type>0</type> <id>58</id> <name>sel_tmp4</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>538</item> <item>539</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_54"> <Value> <Obj> <type>0</type> <id>59</id> <name>sel_tmp5</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>540</item> <item>541</item> <item>542</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_55"> <Value> <Obj> <type>0</type> <id>60</id> <name>sel_tmp6</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>543</item> <item>544</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_56"> <Value> <Obj> <type>0</type> <id>61</id> <name>o_word_V_4</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>641</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>641</second> </item> </second> </item> </inlineStackInfo> <originalName>o_word.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>545</item> <item>546</item> <item>547</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_57"> <Value> <Obj> <type>0</type> <id>62</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>646</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>646</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>548</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_58"> <Value> <Obj> <type>0</type> <id>64</id> <name>p_Val2_3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>672</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>672</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>549</item> <item>550</item> <item>551</item> <item>552</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_59"> <Value> <Obj> <type>0</type> <id>65</id> <name>p_5</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>553</item> <item>554</item> <item>555</item> <item>556</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_60"> <Value> <Obj> <type>0</type> <id>66</id> <name>tmp_57</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>646</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>646</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>557</item> <item>558</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_61"> <Value> <Obj> <type>0</type> <id>67</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>646</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>646</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>559</item> <item>560</item> <item>561</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_62"> <Value> <Obj> <type>0</type> <id>73</id> <name>rhs_V_4_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>649</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>649</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>562</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_63"> <Value> <Obj> <type>0</type> <id>74</id> <name>r_V_7</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>649</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>649</second> </item> </second> </item> </inlineStackInfo> <originalName>r.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>563</item> <item>564</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_64"> <Value> <Obj> <type>0</type> <id>75</id> <name>r_V_9</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>566</item> <item>567</item> <item>568</item> <item>570</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_65"> <Value> <Obj> <type>0</type> <id>76</id> <name>tmp_59</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</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>571</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_66"> <Value> <Obj> <type>0</type> <id>77</id> <name>p_0856_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>655</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>655</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>573</item> <item>574</item> <item>575</item> <item>577</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_67"> <Value> <Obj> <type>0</type> <id>78</id> <name>tmp_60</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>655</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>655</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>578</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_68"> <Value> <Obj> <type>0</type> <id>79</id> <name>dmem_0_0_V_addr_3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>579</item> <item>580</item> <item>581</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_69"> <Value> <Obj> <type>0</type> <id>80</id> <name>dmem_1_0_V_addr_3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>582</item> <item>583</item> <item>584</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_70"> <Value> <Obj> <type>0</type> <id>81</id> <name>dmem_1_0_V_load_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>585</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_71"> <Value> <Obj> <type>0</type> <id>82</id> <name>dmem_0_0_V_load_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>586</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_72"> <Value> <Obj> <type>0</type> <id>83</id> <name>in_wrd_V_0_phi</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>587</item> <item>588</item> <item>589</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_73"> <Value> <Obj> <type>0</type> <id>84</id> <name>wt_mem_0_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>655</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>655</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>590</item> <item>591</item> <item>592</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_74"> <Value> <Obj> <type>0</type> <id>85</id> <name>wt_mem_0_V_load</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>655</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>655</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>593</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_75"> <Value> <Obj> <type>0</type> <id>86</id> <name>r_V_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>594</item> <item>595</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_76"> <Value> <Obj> <type>0</type> <id>87</id> <name>tmp_1150</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>597</item> <item>598</item> <item>600</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_77"> <Value> <Obj> <type>0</type> <id>88</id> <name>tmp_1151</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>601</item> <item>602</item> <item>604</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_78"> <Value> <Obj> <type>0</type> <id>89</id> <name>tmp_1152</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>605</item> <item>606</item> <item>608</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_79"> <Value> <Obj> <type>0</type> <id>90</id> <name>tmp_1153</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>609</item> <item>610</item> <item>612</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_80"> <Value> <Obj> <type>0</type> <id>91</id> <name>tmp_1154</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>613</item> <item>614</item> <item>616</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_81"> <Value> <Obj> <type>0</type> <id>92</id> <name>tmp_1155</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>617</item> <item>618</item> <item>620</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_82"> <Value> <Obj> <type>0</type> <id>93</id> <name>tmp_1156</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>621</item> <item>622</item> <item>624</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_83"> <Value> <Obj> <type>0</type> <id>94</id> <name>tmp_1157</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>625</item> <item>626</item> <item>628</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_84"> <Value> <Obj> <type>0</type> <id>95</id> <name>tmp_1158</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>629</item> <item>630</item> <item>632</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_85"> <Value> <Obj> <type>0</type> <id>96</id> <name>tmp_1159</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>633</item> <item>634</item> <item>636</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_86"> <Value> <Obj> <type>0</type> <id>97</id> <name>tmp_1160</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>637</item> <item>638</item> <item>640</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_87"> <Value> <Obj> <type>0</type> <id>98</id> <name>tmp_1161</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>641</item> <item>642</item> <item>644</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_88"> <Value> <Obj> <type>0</type> <id>99</id> <name>tmp_1162</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>645</item> <item>646</item> <item>648</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_89"> <Value> <Obj> <type>0</type> <id>100</id> <name>tmp_1163</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>649</item> <item>650</item> <item>652</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_90"> <Value> <Obj> <type>0</type> <id>101</id> <name>tmp_1164</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>653</item> <item>654</item> <item>656</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_91"> <Value> <Obj> <type>0</type> <id>102</id> <name>tmp_1165</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>657</item> <item>658</item> <item>660</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_92"> <Value> <Obj> <type>0</type> <id>103</id> <name>tmp_1166</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>661</item> <item>662</item> <item>664</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_93"> <Value> <Obj> <type>0</type> <id>104</id> <name>tmp_1167</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>665</item> <item>666</item> <item>668</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_94"> <Value> <Obj> <type>0</type> <id>105</id> <name>tmp_1168</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>669</item> <item>670</item> <item>672</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_95"> <Value> <Obj> <type>0</type> <id>106</id> <name>tmp_1169</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>673</item> <item>674</item> <item>676</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_96"> <Value> <Obj> <type>0</type> <id>107</id> <name>tmp_1170</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>677</item> <item>678</item> <item>680</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_97"> <Value> <Obj> <type>0</type> <id>108</id> <name>tmp_1171</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>681</item> <item>682</item> <item>683</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_98"> <Value> <Obj> <type>0</type> <id>109</id> <name>tmp_1172</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>684</item> <item>685</item> <item>687</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_99"> <Value> <Obj> <type>0</type> <id>110</id> <name>tmp_1173</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>688</item> <item>689</item> <item>691</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_100"> <Value> <Obj> <type>0</type> <id>111</id> <name>tmp_1174</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>692</item> <item>693</item> <item>694</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_101"> <Value> <Obj> <type>0</type> <id>112</id> <name>tmp_1175</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>695</item> <item>696</item> <item>698</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_102"> <Value> <Obj> <type>0</type> <id>113</id> <name>tmp_1176</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>699</item> <item>700</item> <item>702</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_103"> <Value> <Obj> <type>0</type> <id>114</id> <name>tmp_1177</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>703</item> <item>704</item> <item>706</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_104"> <Value> <Obj> <type>0</type> <id>115</id> <name>tmp_1178</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>707</item> <item>708</item> <item>709</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_105"> <Value> <Obj> <type>0</type> <id>116</id> <name>tmp_1179</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>710</item> <item>711</item> <item>713</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_106"> <Value> <Obj> <type>0</type> <id>117</id> <name>tmp_1180</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>714</item> <item>715</item> <item>717</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_107"> <Value> <Obj> <type>0</type> <id>118</id> <name>tmp_1181</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>718</item> <item>719</item> <item>721</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_108"> <Value> <Obj> <type>0</type> <id>119</id> <name>r_V_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>64</count> <item_version>0</item_version> <item>723</item> <item>724</item> <item>726</item> <item>727</item> <item>728</item> <item>729</item> <item>730</item> <item>731</item> <item>732</item> <item>733</item> <item>734</item> <item>735</item> <item>736</item> <item>737</item> <item>738</item> <item>739</item> <item>740</item> <item>741</item> <item>742</item> <item>743</item> <item>744</item> <item>745</item> <item>746</item> <item>747</item> <item>748</item> <item>749</item> <item>750</item> <item>751</item> <item>752</item> <item>753</item> <item>754</item> <item>755</item> <item>756</item> <item>757</item> <item>758</item> <item>759</item> <item>760</item> <item>761</item> <item>762</item> <item>763</item> <item>764</item> <item>765</item> <item>766</item> <item>767</item> <item>768</item> <item>769</item> <item>770</item> <item>771</item> <item>772</item> <item>773</item> <item>774</item> <item>775</item> <item>776</item> <item>777</item> <item>778</item> <item>779</item> <item>780</item> <item>781</item> <item>782</item> <item>783</item> <item>784</item> <item>785</item> <item>786</item> <item>787</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_109"> <Value> <Obj> <type>0</type> <id>120</id> <name>r_V_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>788</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_110"> <Value> <Obj> <type>0</type> <id>121</id> <name>x_V_6</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>789</item> <item>790</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_111"> <Value> <Obj> <type>0</type> <id>122</id> <name>tmp_61</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>792</item> <item>793</item> <item>795</item> <item>796</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_112"> <Value> <Obj> <type>0</type> <id>123</id> <name>tmp_62</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>797</item> <item>798</item> <item>800</item> <item>801</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_113"> <Value> <Obj> <type>0</type> <id>124</id> <name>tmp_63</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>802</item> <item>803</item> <item>805</item> <item>806</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_114"> <Value> <Obj> <type>0</type> <id>125</id> <name>tmp_64</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>807</item> <item>808</item> <item>810</item> <item>811</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_115"> <Value> <Obj> <type>0</type> <id>126</id> <name>tmp_65</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>812</item> <item>813</item> <item>815</item> <item>816</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_116"> <Value> <Obj> <type>0</type> <id>127</id> <name>tmp_109</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>817</item> <item>818</item> <item>820</item> <item>821</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_117"> <Value> <Obj> <type>0</type> <id>128</id> <name>tmp_110</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>822</item> <item>823</item> <item>825</item> <item>826</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_118"> <Value> <Obj> <type>0</type> <id>129</id> <name>tmp_111</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>827</item> <item>828</item> <item>830</item> <item>831</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_119"> <Value> <Obj> <type>0</type> <id>130</id> <name>tmp_112</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>832</item> <item>833</item> <item>835</item> <item>836</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_120"> <Value> <Obj> <type>0</type> <id>131</id> <name>tmp_113</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>837</item> <item>838</item> <item>840</item> <item>841</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_121"> <Value> <Obj> <type>0</type> <id>132</id> <name>tmp_114</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>842</item> <item>843</item> <item>845</item> <item>846</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_122"> <Value> <Obj> <type>0</type> <id>133</id> <name>tmp_115</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>847</item> <item>848</item> <item>849</item> <item>850</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_123"> <Value> <Obj> <type>0</type> <id>134</id> <name>tmp_116</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>851</item> <item>852</item> <item>854</item> <item>855</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_124"> <Value> <Obj> <type>0</type> <id>135</id> <name>tmp_117</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>856</item> <item>857</item> <item>859</item> <item>860</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_125"> <Value> <Obj> <type>0</type> <id>136</id> <name>tmp_118</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>861</item> <item>862</item> <item>864</item> <item>865</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_126"> <Value> <Obj> <type>0</type> <id>137</id> <name>tmp_1182</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>866</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_127"> <Value> <Obj> <type>0</type> <id>138</id> <name>r_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>32</count> <item_version>0</item_version> <item>868</item> <item>869</item> <item>871</item> <item>872</item> <item>873</item> <item>874</item> <item>875</item> <item>876</item> <item>877</item> <item>878</item> <item>879</item> <item>880</item> <item>881</item> <item>882</item> <item>883</item> <item>884</item> <item>885</item> <item>886</item> <item>887</item> <item>888</item> <item>889</item> <item>890</item> <item>891</item> <item>892</item> <item>893</item> <item>894</item> <item>895</item> <item>896</item> <item>897</item> <item>898</item> <item>899</item> <item>900</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_128"> <Value> <Obj> <type>0</type> <id>139</id> <name>r_V_2_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>901</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_129"> <Value> <Obj> <type>0</type> <id>140</id> <name>tmp_119</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>902</item> <item>903</item> <item>905</item> <item>906</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_130"> <Value> <Obj> <type>0</type> <id>141</id> <name>tmp_120</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>907</item> <item>908</item> <item>910</item> <item>911</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_131"> <Value> <Obj> <type>0</type> <id>142</id> <name>tmp_121</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>912</item> <item>913</item> <item>915</item> <item>916</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_132"> <Value> <Obj> <type>0</type> <id>143</id> <name>tmp_122</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>917</item> <item>918</item> <item>920</item> <item>921</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_133"> <Value> <Obj> <type>0</type> <id>144</id> <name>tmp_123</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>922</item> <item>923</item> <item>925</item> <item>926</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_134"> <Value> <Obj> <type>0</type> <id>145</id> <name>tmp_124</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>927</item> <item>928</item> <item>930</item> <item>931</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_135"> <Value> <Obj> <type>0</type> <id>146</id> <name>tmp_125</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>932</item> <item>933</item> <item>935</item> <item>936</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_136"> <Value> <Obj> <type>0</type> <id>147</id> <name>tmp_126</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>937</item> <item>938</item> <item>940</item> <item>941</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_137"> <Value> <Obj> <type>0</type> <id>148</id> <name>tmp_127</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>942</item> <item>943</item> <item>945</item> <item>946</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_138"> <Value> <Obj> <type>0</type> <id>149</id> <name>tmp_128</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>947</item> <item>948</item> <item>950</item> <item>951</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_139"> <Value> <Obj> <type>0</type> <id>150</id> <name>tmp_129</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>952</item> <item>953</item> <item>955</item> <item>956</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_140"> <Value> <Obj> <type>0</type> <id>151</id> <name>tmp_130</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>957</item> <item>958</item> <item>960</item> <item>961</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_141"> <Value> <Obj> <type>0</type> <id>152</id> <name>tmp_131</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>962</item> <item>963</item> <item>965</item> <item>966</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_142"> <Value> <Obj> <type>0</type> <id>153</id> <name>tmp_132</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>967</item> <item>968</item> <item>970</item> <item>971</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_143"> <Value> <Obj> <type>0</type> <id>154</id> <name>tmp_133</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>972</item> <item>973</item> <item>974</item> <item>975</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_144"> <Value> <Obj> <type>0</type> <id>155</id> <name>tmp_134</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>976</item> <item>977</item> <item>979</item> <item>980</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_145"> <Value> <Obj> <type>0</type> <id>156</id> <name>r_V_3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>32</count> <item_version>0</item_version> <item>981</item> <item>982</item> <item>983</item> <item>984</item> <item>985</item> <item>986</item> <item>987</item> <item>988</item> <item>989</item> <item>990</item> <item>991</item> <item>992</item> <item>993</item> <item>994</item> <item>995</item> <item>996</item> <item>997</item> <item>998</item> <item>999</item> <item>1000</item> <item>1001</item> <item>1002</item> <item>1003</item> <item>1004</item> <item>1005</item> <item>1006</item> <item>1007</item> <item>1008</item> <item>1009</item> <item>1010</item> <item>1011</item> <item>1012</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_146"> <Value> <Obj> <type>0</type> <id>157</id> <name>r_V_3_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1013</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_147"> <Value> <Obj> <type>0</type> <id>158</id> <name>tmp_66</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>31</count> <item_version>0</item_version> <item>1015</item> <item>1016</item> <item>1017</item> <item>1018</item> <item>1019</item> <item>1020</item> <item>1021</item> <item>1022</item> <item>1023</item> <item>1024</item> <item>1025</item> <item>1026</item> <item>1027</item> <item>1028</item> <item>1029</item> <item>1030</item> <item>1031</item> <item>1032</item> <item>1033</item> <item>1034</item> <item>1035</item> <item>1036</item> <item>1037</item> <item>1038</item> <item>1039</item> <item>1040</item> <item>1041</item> <item>1042</item> <item>1043</item> <item>1044</item> <item>1045</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_148"> <Value> <Obj> <type>0</type> <id>159</id> <name>tmp_67</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>31</count> <item_version>0</item_version> <item>1046</item> <item>1047</item> <item>1048</item> <item>1049</item> <item>1050</item> <item>1051</item> <item>1052</item> <item>1053</item> <item>1054</item> <item>1055</item> <item>1056</item> <item>1057</item> <item>1058</item> <item>1059</item> <item>1060</item> <item>1061</item> <item>1062</item> <item>1063</item> <item>1064</item> <item>1065</item> <item>1066</item> <item>1067</item> <item>1068</item> <item>1069</item> <item>1070</item> <item>1071</item> <item>1072</item> <item>1073</item> <item>1074</item> <item>1075</item> <item>1076</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_149"> <Value> <Obj> <type>0</type> <id>160</id> <name>tmp_135</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1077</item> <item>1078</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_150"> <Value> <Obj> <type>0</type> <id>161</id> <name>x_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1079</item> <item>1080</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_151"> <Value> <Obj> <type>0</type> <id>162</id> <name>tmp_1233_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1081</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_152"> <Value> <Obj> <type>0</type> <id>163</id> <name>tmp_1234_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1082</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_153"> <Value> <Obj> <type>0</type> <id>164</id> <name>tmp_136</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>59</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1084</item> <item>1085</item> <item>1086</item> <item>1087</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_154"> <Value> <Obj> <type>0</type> <id>165</id> <name>tmp_68</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1088</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_155"> <Value> <Obj> <type>0</type> <id>166</id> <name>tmp_69</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1089</item> <item>1090</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_156"> <Value> <Obj> <type>0</type> <id>167</id> <name>tmp_186_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1091</item> <item>1092</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_157"> <Value> <Obj> <type>0</type> <id>168</id> <name>tmp_70</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1094</item> <item>1095</item> <item>1096</item> <item>1097</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_158"> <Value> <Obj> <type>0</type> <id>169</id> <name>tmp_137</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1099</item> <item>1100</item> <item>1101</item> <item>1102</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_159"> <Value> <Obj> <type>0</type> <id>170</id> <name>tmp_138</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1103</item> <item>1104</item> <item>1105</item> <item>1106</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_160"> <Value> <Obj> <type>0</type> <id>171</id> <name>tmp_139</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1107</item> <item>1108</item> <item>1109</item> <item>1110</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_161"> <Value> <Obj> <type>0</type> <id>172</id> <name>tmp_140</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1111</item> <item>1112</item> <item>1113</item> <item>1114</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_162"> <Value> <Obj> <type>0</type> <id>173</id> <name>tmp_141</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1115</item> <item>1116</item> <item>1117</item> <item>1118</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_163"> <Value> <Obj> <type>0</type> <id>174</id> <name>tmp_142</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1119</item> <item>1120</item> <item>1121</item> <item>1122</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_164"> <Value> <Obj> <type>0</type> <id>175</id> <name>tmp_143</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1123</item> <item>1124</item> <item>1125</item> <item>1126</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_165"> <Value> <Obj> <type>0</type> <id>176</id> <name>tmp_1183</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1127</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_166"> <Value> <Obj> <type>0</type> <id>177</id> <name>x_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>1129</item> <item>1130</item> <item>1132</item> <item>1133</item> <item>1134</item> <item>1135</item> <item>1136</item> <item>1137</item> <item>1138</item> <item>1139</item> <item>1140</item> <item>1141</item> <item>1142</item> <item>1143</item> <item>1144</item> <item>1145</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_167"> <Value> <Obj> <type>0</type> <id>178</id> <name>x_V_2_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1146</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_168"> <Value> <Obj> <type>0</type> <id>179</id> <name>r_V_4</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>52</bitwidth> </Value> <oprand_edges> <count>14</count> <item_version>0</item_version> <item>1148</item> <item>1149</item> <item>1150</item> <item>1151</item> <item>1152</item> <item>1153</item> <item>1154</item> <item>1155</item> <item>1156</item> <item>1157</item> <item>1158</item> <item>1159</item> <item>1160</item> <item>1161</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_169"> <Value> <Obj> <type>0</type> <id>180</id> <name>tmp_144</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1162</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_170"> <Value> <Obj> <type>0</type> <id>181</id> <name>r_V_4_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1163</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_171"> <Value> <Obj> <type>0</type> <id>182</id> <name>tmp41</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1164</item> <item>1165</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_172"> <Value> <Obj> <type>0</type> <id>183</id> <name>tmp_71</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1166</item> <item>1167</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_173"> <Value> <Obj> <type>0</type> <id>184</id> <name>tmp_72</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <item>1169</item> <item>1171</item> <item>1172</item> <item>1173</item> <item>1174</item> <item>1175</item> <item>1176</item> <item>1177</item> <item>1178</item> <item>1179</item> <item>1180</item> <item>1181</item> <item>1182</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_174"> <Value> <Obj> <type>0</type> <id>185</id> <name>tmp_73</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <item>1183</item> <item>1184</item> <item>1185</item> <item>1186</item> <item>1187</item> <item>1188</item> <item>1189</item> <item>1190</item> <item>1191</item> <item>1192</item> <item>1193</item> <item>1194</item> <item>1195</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_175"> <Value> <Obj> <type>0</type> <id>186</id> <name>tmp_145</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1196</item> <item>1197</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_176"> <Value> <Obj> <type>0</type> <id>187</id> <name>x_V_3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1198</item> <item>1199</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_177"> <Value> <Obj> <type>0</type> <id>188</id> <name>x_V_3_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1200</item> <item>1201</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_178"> <Value> <Obj> <type>0</type> <id>189</id> <name>tmp_146</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>45</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1203</item> <item>1204</item> <item>1205</item> <item>1206</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_179"> <Value> <Obj> <type>0</type> <id>190</id> <name>r_V_5_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1207</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_180"> <Value> <Obj> <type>0</type> <id>191</id> <name>x_V_4</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1208</item> <item>1209</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_181"> <Value> <Obj> <type>0</type> <id>192</id> <name>tmp_74</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1210</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_182"> <Value> <Obj> <type>0</type> <id>193</id> <name>tmp_75</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1212</item> <item>1213</item> <item>1214</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_183"> <Value> <Obj> <type>0</type> <id>194</id> <name>tmp_76</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1216</item> <item>1217</item> <item>1218</item> <item>1219</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_184"> <Value> <Obj> <type>0</type> <id>195</id> <name>tmp_77</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1221</item> <item>1222</item> <item>1223</item> <item>1224</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_185"> <Value> <Obj> <type>0</type> <id>196</id> <name>tmp_78</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1225</item> <item>1226</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_186"> <Value> <Obj> <type>0</type> <id>197</id> <name>tmp_79</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1227</item> <item>1228</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_187"> <Value> <Obj> <type>0</type> <id>198</id> <name>tmp_80</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1229</item> <item>1230</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_188"> <Value> <Obj> <type>0</type> <id>199</id> <name>tmp_81</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1232</item> <item>1233</item> <item>1234</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_189"> <Value> <Obj> <type>0</type> <id>200</id> <name>phitmp_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1235</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_190"> <Value> <Obj> <type>0</type> <id>201</id> <name>tmp_82</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1237</item> <item>1238</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_191"> <Value> <Obj> <type>0</type> <id>202</id> <name>tmp_190_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1239</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_192"> <Value> <Obj> <type>0</type> <id>203</id> <name>dmem_0_1_V_addr_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1240</item> <item>1241</item> <item>1242</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_193"> <Value> <Obj> <type>0</type> <id>204</id> <name>dmem_1_1_V_addr_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1243</item> <item>1244</item> <item>1245</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_194"> <Value> <Obj> <type>0</type> <id>205</id> <name>dmem_1_1_V_load_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1246</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_195"> <Value> <Obj> <type>0</type> <id>206</id> <name>dmem_0_1_V_load_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1247</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_196"> <Value> <Obj> <type>0</type> <id>207</id> <name>in_wrd_V_1_phi</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>654</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>654</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1248</item> <item>1249</item> <item>1250</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_197"> <Value> <Obj> <type>0</type> <id>208</id> <name>wt_mem_1_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>655</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>655</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1251</item> <item>1252</item> <item>1253</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_198"> <Value> <Obj> <type>0</type> <id>209</id> <name>wt_mem_1_V_load</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>655</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>655</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1254</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_199"> <Value> <Obj> <type>0</type> <id>210</id> <name>r_V_49_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1255</item> <item>1256</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_200"> <Value> <Obj> <type>0</type> <id>211</id> <name>tmp_1184</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1257</item> <item>1258</item> <item>1259</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_201"> <Value> <Obj> <type>0</type> <id>212</id> <name>tmp_1185</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1260</item> <item>1261</item> <item>1262</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_202"> <Value> <Obj> <type>0</type> <id>213</id> <name>tmp_1186</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1263</item> <item>1264</item> <item>1265</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_203"> <Value> <Obj> <type>0</type> <id>214</id> <name>tmp_1187</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1266</item> <item>1267</item> <item>1268</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_204"> <Value> <Obj> <type>0</type> <id>215</id> <name>tmp_1188</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1269</item> <item>1270</item> <item>1271</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_205"> <Value> <Obj> <type>0</type> <id>216</id> <name>tmp_1189</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1272</item> <item>1273</item> <item>1274</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_206"> <Value> <Obj> <type>0</type> <id>217</id> <name>tmp_1190</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1275</item> <item>1276</item> <item>1277</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_207"> <Value> <Obj> <type>0</type> <id>218</id> <name>tmp_1191</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1278</item> <item>1279</item> <item>1280</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_208"> <Value> <Obj> <type>0</type> <id>219</id> <name>tmp_1192</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1281</item> <item>1282</item> <item>1283</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_209"> <Value> <Obj> <type>0</type> <id>220</id> <name>tmp_1193</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1284</item> <item>1285</item> <item>1286</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_210"> <Value> <Obj> <type>0</type> <id>221</id> <name>tmp_1194</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1287</item> <item>1288</item> <item>1289</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_211"> <Value> <Obj> <type>0</type> <id>222</id> <name>tmp_1195</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1290</item> <item>1291</item> <item>1292</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_212"> <Value> <Obj> <type>0</type> <id>223</id> <name>tmp_1196</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1293</item> <item>1294</item> <item>1295</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_213"> <Value> <Obj> <type>0</type> <id>224</id> <name>tmp_1197</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1296</item> <item>1297</item> <item>1298</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_214"> <Value> <Obj> <type>0</type> <id>225</id> <name>tmp_1198</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1299</item> <item>1300</item> <item>1301</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_215"> <Value> <Obj> <type>0</type> <id>226</id> <name>tmp_1199</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1302</item> <item>1303</item> <item>1304</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_216"> <Value> <Obj> <type>0</type> <id>227</id> <name>tmp_1200</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1305</item> <item>1306</item> <item>1307</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_217"> <Value> <Obj> <type>0</type> <id>228</id> <name>tmp_1201</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1308</item> <item>1309</item> <item>1310</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_218"> <Value> <Obj> <type>0</type> <id>229</id> <name>tmp_1202</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1311</item> <item>1312</item> <item>1313</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_219"> <Value> <Obj> <type>0</type> <id>230</id> <name>tmp_1203</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1314</item> <item>1315</item> <item>1316</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_220"> <Value> <Obj> <type>0</type> <id>231</id> <name>tmp_1204</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1317</item> <item>1318</item> <item>1319</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_221"> <Value> <Obj> <type>0</type> <id>232</id> <name>tmp_1205</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1320</item> <item>1321</item> <item>1322</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_222"> <Value> <Obj> <type>0</type> <id>233</id> <name>tmp_1206</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1323</item> <item>1324</item> <item>1325</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_223"> <Value> <Obj> <type>0</type> <id>234</id> <name>tmp_1207</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1326</item> <item>1327</item> <item>1328</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_224"> <Value> <Obj> <type>0</type> <id>235</id> <name>tmp_1208</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1329</item> <item>1330</item> <item>1331</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_225"> <Value> <Obj> <type>0</type> <id>236</id> <name>tmp_1209</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1332</item> <item>1333</item> <item>1334</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_226"> <Value> <Obj> <type>0</type> <id>237</id> <name>tmp_1210</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1335</item> <item>1336</item> <item>1337</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_227"> <Value> <Obj> <type>0</type> <id>238</id> <name>tmp_1211</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1338</item> <item>1339</item> <item>1340</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_228"> <Value> <Obj> <type>0</type> <id>239</id> <name>tmp_1212</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1341</item> <item>1342</item> <item>1343</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_229"> <Value> <Obj> <type>0</type> <id>240</id> <name>tmp_1213</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1344</item> <item>1345</item> <item>1346</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_230"> <Value> <Obj> <type>0</type> <id>241</id> <name>tmp_1214</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1347</item> <item>1348</item> <item>1349</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_231"> <Value> <Obj> <type>0</type> <id>242</id> <name>tmp_1215</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>657</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>657</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1350</item> <item>1351</item> <item>1352</item> </oprand_edges> <opcode>bitselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_232"> <Value> <Obj> <type>0</type> <id>243</id> <name>r_V_44_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>64</count> <item_version>0</item_version> <item>1353</item> <item>1354</item> <item>1355</item> <item>1356</item> <item>1357</item> <item>1358</item> <item>1359</item> <item>1360</item> <item>1361</item> <item>1362</item> <item>1363</item> <item>1364</item> <item>1365</item> <item>1366</item> <item>1367</item> <item>1368</item> <item>1369</item> <item>1370</item> <item>1371</item> <item>1372</item> <item>1373</item> <item>1374</item> <item>1375</item> <item>1376</item> <item>1377</item> <item>1378</item> <item>1379</item> <item>1380</item> <item>1381</item> <item>1382</item> <item>1383</item> <item>1384</item> <item>1385</item> <item>1386</item> <item>1387</item> <item>1388</item> <item>1389</item> <item>1390</item> <item>1391</item> <item>1392</item> <item>1393</item> <item>1394</item> <item>1395</item> <item>1396</item> <item>1397</item> <item>1398</item> <item>1399</item> <item>1400</item> <item>1401</item> <item>1402</item> <item>1403</item> <item>1404</item> <item>1405</item> <item>1406</item> <item>1407</item> <item>1408</item> <item>1409</item> <item>1410</item> <item>1411</item> <item>1412</item> <item>1413</item> <item>1414</item> <item>1415</item> <item>1416</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_233"> <Value> <Obj> <type>0</type> <id>244</id> <name>r_V_44_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1417</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_234"> <Value> <Obj> <type>0</type> <id>245</id> <name>x_V_6_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1418</item> <item>1419</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_235"> <Value> <Obj> <type>0</type> <id>246</id> <name>tmp_147</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1420</item> <item>1421</item> <item>1422</item> <item>1423</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_236"> <Value> <Obj> <type>0</type> <id>247</id> <name>tmp_148</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1424</item> <item>1425</item> <item>1426</item> <item>1427</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_237"> <Value> <Obj> <type>0</type> <id>248</id> <name>tmp_149</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1428</item> <item>1429</item> <item>1430</item> <item>1431</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_238"> <Value> <Obj> <type>0</type> <id>249</id> <name>tmp_150</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1432</item> <item>1433</item> <item>1434</item> <item>1435</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_239"> <Value> <Obj> <type>0</type> <id>250</id> <name>tmp_151</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1436</item> <item>1437</item> <item>1438</item> <item>1439</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_240"> <Value> <Obj> <type>0</type> <id>251</id> <name>tmp_152</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1440</item> <item>1441</item> <item>1442</item> <item>1443</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_241"> <Value> <Obj> <type>0</type> <id>252</id> <name>tmp_153</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1444</item> <item>1445</item> <item>1446</item> <item>1447</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_242"> <Value> <Obj> <type>0</type> <id>253</id> <name>tmp_154</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1448</item> <item>1449</item> <item>1450</item> <item>1451</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_243"> <Value> <Obj> <type>0</type> <id>254</id> <name>tmp_155</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1452</item> <item>1453</item> <item>1454</item> <item>1455</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_244"> <Value> <Obj> <type>0</type> <id>255</id> <name>tmp_156</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1456</item> <item>1457</item> <item>1458</item> <item>1459</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_245"> <Value> <Obj> <type>0</type> <id>256</id> <name>tmp_157</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1460</item> <item>1461</item> <item>1462</item> <item>1463</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_246"> <Value> <Obj> <type>0</type> <id>257</id> <name>tmp_158</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1464</item> <item>1465</item> <item>1466</item> <item>1467</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_247"> <Value> <Obj> <type>0</type> <id>258</id> <name>tmp_159</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1468</item> <item>1469</item> <item>1470</item> <item>1471</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_248"> <Value> <Obj> <type>0</type> <id>259</id> <name>tmp_160</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1472</item> <item>1473</item> <item>1474</item> <item>1475</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_249"> <Value> <Obj> <type>0</type> <id>260</id> <name>tmp_161</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1476</item> <item>1477</item> <item>1478</item> <item>1479</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_250"> <Value> <Obj> <type>0</type> <id>261</id> <name>tmp_1216</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1480</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_251"> <Value> <Obj> <type>0</type> <id>262</id> <name>r_V_45_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>32</count> <item_version>0</item_version> <item>1481</item> <item>1482</item> <item>1483</item> <item>1484</item> <item>1485</item> <item>1486</item> <item>1487</item> <item>1488</item> <item>1489</item> <item>1490</item> <item>1491</item> <item>1492</item> <item>1493</item> <item>1494</item> <item>1495</item> <item>1496</item> <item>1497</item> <item>1498</item> <item>1499</item> <item>1500</item> <item>1501</item> <item>1502</item> <item>1503</item> <item>1504</item> <item>1505</item> <item>1506</item> <item>1507</item> <item>1508</item> <item>1509</item> <item>1510</item> <item>1511</item> <item>1512</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_252"> <Value> <Obj> <type>0</type> <id>263</id> <name>r_V_45_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1513</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_253"> <Value> <Obj> <type>0</type> <id>264</id> <name>tmp_162</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1514</item> <item>1515</item> <item>1516</item> <item>1517</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_254"> <Value> <Obj> <type>0</type> <id>265</id> <name>tmp_163</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1518</item> <item>1519</item> <item>1520</item> <item>1521</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_255"> <Value> <Obj> <type>0</type> <id>266</id> <name>tmp_164</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1522</item> <item>1523</item> <item>1524</item> <item>1525</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_256"> <Value> <Obj> <type>0</type> <id>267</id> <name>tmp_165</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1526</item> <item>1527</item> <item>1528</item> <item>1529</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_257"> <Value> <Obj> <type>0</type> <id>268</id> <name>tmp_166</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1530</item> <item>1531</item> <item>1532</item> <item>1533</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_258"> <Value> <Obj> <type>0</type> <id>269</id> <name>tmp_167</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1534</item> <item>1535</item> <item>1536</item> <item>1537</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_259"> <Value> <Obj> <type>0</type> <id>270</id> <name>tmp_168</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1538</item> <item>1539</item> <item>1540</item> <item>1541</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_260"> <Value> <Obj> <type>0</type> <id>271</id> <name>tmp_169</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1542</item> <item>1543</item> <item>1544</item> <item>1545</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_261"> <Value> <Obj> <type>0</type> <id>272</id> <name>tmp_170</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1546</item> <item>1547</item> <item>1548</item> <item>1549</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_262"> <Value> <Obj> <type>0</type> <id>273</id> <name>tmp_171</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1550</item> <item>1551</item> <item>1552</item> <item>1553</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_263"> <Value> <Obj> <type>0</type> <id>274</id> <name>tmp_172</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1554</item> <item>1555</item> <item>1556</item> <item>1557</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_264"> <Value> <Obj> <type>0</type> <id>275</id> <name>tmp_173</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1558</item> <item>1559</item> <item>1560</item> <item>1561</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_265"> <Value> <Obj> <type>0</type> <id>276</id> <name>tmp_174</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1562</item> <item>1563</item> <item>1564</item> <item>1565</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_266"> <Value> <Obj> <type>0</type> <id>277</id> <name>tmp_175</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1566</item> <item>1567</item> <item>1568</item> <item>1569</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_267"> <Value> <Obj> <type>0</type> <id>278</id> <name>tmp_176</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1570</item> <item>1571</item> <item>1572</item> <item>1573</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_268"> <Value> <Obj> <type>0</type> <id>279</id> <name>tmp_177</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1574</item> <item>1575</item> <item>1576</item> <item>1577</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_269"> <Value> <Obj> <type>0</type> <id>280</id> <name>r_V_46_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>32</count> <item_version>0</item_version> <item>1578</item> <item>1579</item> <item>1580</item> <item>1581</item> <item>1582</item> <item>1583</item> <item>1584</item> <item>1585</item> <item>1586</item> <item>1587</item> <item>1588</item> <item>1589</item> <item>1590</item> <item>1591</item> <item>1592</item> <item>1593</item> <item>1594</item> <item>1595</item> <item>1596</item> <item>1597</item> <item>1598</item> <item>1599</item> <item>1600</item> <item>1601</item> <item>1602</item> <item>1603</item> <item>1604</item> <item>1605</item> <item>1606</item> <item>1607</item> <item>1608</item> <item>1609</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_270"> <Value> <Obj> <type>0</type> <id>281</id> <name>r_V_46_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1610</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_271"> <Value> <Obj> <type>0</type> <id>282</id> <name>tmp_83</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>31</count> <item_version>0</item_version> <item>1611</item> <item>1612</item> <item>1613</item> <item>1614</item> <item>1615</item> <item>1616</item> <item>1617</item> <item>1618</item> <item>1619</item> <item>1620</item> <item>1621</item> <item>1622</item> <item>1623</item> <item>1624</item> <item>1625</item> <item>1626</item> <item>1627</item> <item>1628</item> <item>1629</item> <item>1630</item> <item>1631</item> <item>1632</item> <item>1633</item> <item>1634</item> <item>1635</item> <item>1636</item> <item>1637</item> <item>1638</item> <item>1639</item> <item>1640</item> <item>1641</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_272"> <Value> <Obj> <type>0</type> <id>283</id> <name>tmp_84</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>660</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>660</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>31</count> <item_version>0</item_version> <item>1642</item> <item>1643</item> <item>1644</item> <item>1645</item> <item>1646</item> <item>1647</item> <item>1648</item> <item>1649</item> <item>1650</item> <item>1651</item> <item>1652</item> <item>1653</item> <item>1654</item> <item>1655</item> <item>1656</item> <item>1657</item> <item>1658</item> <item>1659</item> <item>1660</item> <item>1661</item> <item>1662</item> <item>1663</item> <item>1664</item> <item>1665</item> <item>1666</item> <item>1667</item> <item>1668</item> <item>1669</item> <item>1670</item> <item>1671</item> <item>1672</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_273"> <Value> <Obj> <type>0</type> <id>284</id> <name>tmp_178</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>62</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1673</item> <item>1674</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_274"> <Value> <Obj> <type>0</type> <id>285</id> <name>x_V_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>661</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>661</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>63</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1675</item> <item>1676</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_275"> <Value> <Obj> <type>0</type> <id>286</id> <name>tmp_1248_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1677</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_276"> <Value> <Obj> <type>0</type> <id>287</id> <name>tmp_1249_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1678</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_277"> <Value> <Obj> <type>0</type> <id>288</id> <name>tmp_179</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>59</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1679</item> <item>1680</item> <item>1681</item> <item>1682</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_278"> <Value> <Obj> <type>0</type> <id>289</id> <name>tmp_85</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1683</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_279"> <Value> <Obj> <type>0</type> <id>290</id> <name>tmp_86</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1684</item> <item>1685</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_280"> <Value> <Obj> <type>0</type> <id>291</id> <name>tmp_186_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1686</item> <item>1687</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_281"> <Value> <Obj> <type>0</type> <id>292</id> <name>tmp_87</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1688</item> <item>1689</item> <item>1690</item> <item>1691</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_282"> <Value> <Obj> <type>0</type> <id>293</id> <name>tmp_180</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1692</item> <item>1693</item> <item>1694</item> <item>1695</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_283"> <Value> <Obj> <type>0</type> <id>294</id> <name>tmp_181</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1696</item> <item>1697</item> <item>1698</item> <item>1699</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_284"> <Value> <Obj> <type>0</type> <id>295</id> <name>tmp_182</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1700</item> <item>1701</item> <item>1702</item> <item>1703</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_285"> <Value> <Obj> <type>0</type> <id>296</id> <name>tmp_183</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1704</item> <item>1705</item> <item>1706</item> <item>1707</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_286"> <Value> <Obj> <type>0</type> <id>297</id> <name>tmp_184</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1708</item> <item>1709</item> <item>1710</item> <item>1711</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_287"> <Value> <Obj> <type>0</type> <id>298</id> <name>tmp_185</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1712</item> <item>1713</item> <item>1714</item> <item>1715</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_288"> <Value> <Obj> <type>0</type> <id>299</id> <name>tmp_186</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1716</item> <item>1717</item> <item>1718</item> <item>1719</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_289"> <Value> <Obj> <type>0</type> <id>300</id> <name>tmp_1217</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1720</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_290"> <Value> <Obj> <type>0</type> <id>301</id> <name>x_V_2_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>16</count> <item_version>0</item_version> <item>1721</item> <item>1722</item> <item>1723</item> <item>1724</item> <item>1725</item> <item>1726</item> <item>1727</item> <item>1728</item> <item>1729</item> <item>1730</item> <item>1731</item> <item>1732</item> <item>1733</item> <item>1734</item> <item>1735</item> <item>1736</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_291"> <Value> <Obj> <type>0</type> <id>302</id> <name>x_V_2_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1737</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_292"> <Value> <Obj> <type>0</type> <id>303</id> <name>r_V_47_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>52</bitwidth> </Value> <oprand_edges> <count>14</count> <item_version>0</item_version> <item>1738</item> <item>1739</item> <item>1740</item> <item>1741</item> <item>1742</item> <item>1743</item> <item>1744</item> <item>1745</item> <item>1746</item> <item>1747</item> <item>1748</item> <item>1749</item> <item>1750</item> <item>1751</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_293"> <Value> <Obj> <type>0</type> <id>304</id> <name>tmp_187</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1752</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_294"> <Value> <Obj> <type>0</type> <id>305</id> <name>r_V_47_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1753</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_295"> <Value> <Obj> <type>0</type> <id>306</id> <name>tmp44</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1754</item> <item>1755</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_296"> <Value> <Obj> <type>0</type> <id>307</id> <name>tmp_88</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1756</item> <item>1757</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_297"> <Value> <Obj> <type>0</type> <id>308</id> <name>tmp_94</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <item>1758</item> <item>1759</item> <item>1760</item> <item>1761</item> <item>1762</item> <item>1763</item> <item>1764</item> <item>1765</item> <item>1766</item> <item>1767</item> <item>1768</item> <item>1769</item> <item>1770</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_298"> <Value> <Obj> <type>0</type> <id>309</id> <name>tmp_98</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>13</count> <item_version>0</item_version> <item>1771</item> <item>1772</item> <item>1773</item> <item>1774</item> <item>1775</item> <item>1776</item> <item>1777</item> <item>1778</item> <item>1779</item> <item>1780</item> <item>1781</item> <item>1782</item> <item>1783</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_299"> <Value> <Obj> <type>0</type> <id>310</id> <name>tmp_188</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>60</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1784</item> <item>1785</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_300"> <Value> <Obj> <type>0</type> <id>311</id> <name>x_V_3_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>61</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1786</item> <item>1787</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_301"> <Value> <Obj> <type>0</type> <id>312</id> <name>x_V_3_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1788</item> <item>1789</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_302"> <Value> <Obj> <type>0</type> <id>313</id> <name>tmp_189</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>45</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1790</item> <item>1791</item> <item>1792</item> <item>1793</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_303"> <Value> <Obj> <type>0</type> <id>314</id> <name>r_V_48_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1794</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_304"> <Value> <Obj> <type>0</type> <id>315</id> <name>x_V_4_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>47</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1795</item> <item>1796</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_305"> <Value> <Obj> <type>0</type> <id>316</id> <name>tmp_100</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1797</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_306"> <Value> <Obj> <type>0</type> <id>317</id> <name>tmp_103</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1798</item> <item>1799</item> <item>1800</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_307"> <Value> <Obj> <type>0</type> <id>318</id> <name>tmp_104</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>664</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>664</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1801</item> <item>1802</item> <item>1803</item> <item>1804</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_308"> <Value> <Obj> <type>0</type> <id>319</id> <name>tmp_105</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1805</item> <item>1806</item> <item>1807</item> <item>1808</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_309"> <Value> <Obj> <type>0</type> <id>320</id> <name>tmp_106</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>663</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>663</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1809</item> <item>1810</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_310"> <Value> <Obj> <type>0</type> <id>321</id> <name>tmp_107</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>662</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>662</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1811</item> <item>1812</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_311"> <Value> <Obj> <type>0</type> <id>322</id> <name>tmp_1883_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>7</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1813</item> <item>1814</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_312"> <Value> <Obj> <type>0</type> <id>323</id> <name>tmp_189_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1815</item> <item>1816</item> <item>1817</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_313"> <Value> <Obj> <type>0</type> <id>324</id> <name>phitmp_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1818</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_314"> <Value> <Obj> <type>0</type> <id>325</id> <name>tmp_190_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1819</item> <item>1820</item> </oprand_edges> <opcode>sub</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_315"> <Value> <Obj> <type>0</type> <id>326</id> <name>tmp_190_1_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>668</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>668</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1821</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_316"> <Value> <Obj> <type>0</type> <id>327</id> <name>tmp_108</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>672</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>672</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1822</item> <item>1823</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_317"> <Value> <Obj> <type>0</type> <id>328</id> <name>p_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>672</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>672</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1824</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_318"> <Value> <Obj> <type>0</type> <id>329</id> <name>sum_V_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>672</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>672</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1825</item> <item>1826</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_319"> <Value> <Obj> <type>0</type> <id>331</id> <name>i_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>646</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>646</second> </item> </second> </item> </inlineStackInfo> <originalName>i.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1828</item> <item>1829</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_320"> <Value> <Obj> <type>0</type> <id>332</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>646</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>646</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>1830</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_321"> <Value> <Obj> <type>0</type> <id>334</id> <name>r_V_8</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>678</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>678</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1832</item> <item>1833</item> <item>1834</item> <item>1835</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_322"> <Value> <Obj> <type>0</type> <id>335</id> <name>tmp_89</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>679</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>679</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>1836</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_323"> <Value> <Obj> <type>0</type> <id>336</id> <name>kh_mem_V_addr</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>679</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>679</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1837</item> <item>1838</item> <item>1839</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_324"> <Value> <Obj> <type>0</type> <id>337</id> <name>kh_word_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>679</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>679</second> </item> </second> </item> </inlineStackInfo> <originalName>kh_word.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1840</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_325"> <Value> <Obj> <type>0</type> <id>338</id> <name>kh_off_V_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>682</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>682</second> </item> </second> </item> </inlineStackInfo> <originalName>kh_off.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1841</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_326"> <Value> <Obj> <type>0</type> <id>339</id> <name>kh_off_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>682</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>682</second> </item> </second> </item> </inlineStackInfo> <originalName>kh_off.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1842</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_327"> <Value> <Obj> <type>0</type> <id>340</id> <name>tmp_90</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>683</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>683</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>1843</item> <item>1844</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_328"> <Value> <Obj> <type>0</type> <id>341</id> <name>r_V_10</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>694</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>694</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>15</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1846</item> <item>1847</item> <item>1848</item> <item>1849</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_329"> <Value> <Obj> <type>0</type> <id>342</id> <name>tmp_91</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>695</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>695</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>1850</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_330"> <Value> <Obj> <type>0</type> <id>343</id> <name>kh_mem_V_addr_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>695</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>695</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1851</item> <item>1852</item> <item>1853</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_331"> <Value> <Obj> <type>0</type> <id>344</id> <name>kh_word_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>695</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>695</second> </item> </second> </item> </inlineStackInfo> <originalName>kh_word.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1854</item> </oprand_edges> <opcode>load</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_332"> <Value> <Obj> <type>0</type> <id>345</id> <name>loc_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>684</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>684</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1855</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_333"> <Value> <Obj> <type>0</type> <id>346</id> <name>tmp_92</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>685</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>685</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>1856</item> <item>1858</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_334"> <Value> <Obj> <type>0</type> <id>347</id> <name>loc_V_7</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>700</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>700</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1859</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_335"> <Value> <Obj> <type>0</type> <id>348</id> <name>loc_V_8</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>703</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>703</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1861</item> <item>1862</item> <item>1863</item> <item>1864</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_336"> <Value> <Obj> <type>0</type> <id>349</id> <name>loc_V_9</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>686</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>686</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1865</item> <item>1866</item> <item>1867</item> <item>1868</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_337"> <Value> <Obj> <type>0</type> <id>350</id> <name>tmp_93</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>687</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>687</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>1869</item> <item>1870</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_338"> <Value> <Obj> <type>0</type> <id>351</id> <name>ki_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>682</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>682</second> </item> </second> </item> </inlineStackInfo> <originalName>ki.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1871</item> <item>1872</item> <item>1873</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_339"> <Value> <Obj> <type>0</type> <id>352</id> <name>tmp_1222</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>672</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>672</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1874</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_340"> <Value> <Obj> <type>0</type> <id>353</id> <name>tmp_95</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1876</item> <item>1877</item> <item>1879</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_341"> <Value> <Obj> <type>0</type> <id>354</id> <name>OP1_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName>OP1.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>36</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1880</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_342"> <Value> <Obj> <type>0</type> <id>355</id> <name>OP2_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName>OP2.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>36</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1881</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_343"> <Value> <Obj> <type>0</type> <id>356</id> <name>p_Val2_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>36</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1882</item> <item>1883</item> </oprand_edges> <opcode>mul</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_344"> <Value> <Obj> <type>0</type> <id>357</id> <name>tmp_96</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>37</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1884</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_345"> <Value> <Obj> <type>0</type> <id>358</id> <name>tmp_190</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>695</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>695</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1885</item> <item>1886</item> <item>1887</item> <item>1888</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_346"> <Value> <Obj> <type>0</type> <id>359</id> <name>tmp_191</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>695</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>695</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1889</item> <item>1890</item> <item>1891</item> <item>1892</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_347"> <Value> <Obj> <type>0</type> <id>360</id> <name>tmp_192</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1893</item> <item>1894</item> <item>1895</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_348"> <Value> <Obj> <type>0</type> <id>361</id> <name>tmp_97</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>28</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1897</item> <item>1898</item> <item>1900</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_349"> <Value> <Obj> <type>0</type> <id>362</id> <name>tmp_104_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>37</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1901</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_350"> <Value> <Obj> <type>0</type> <id>363</id> <name>p_Val2_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>37</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>1902</item> <item>1903</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_351"> <Value> <Obj> <type>0</type> <id>364</id> <name>p_Val2_6</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>708</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>708</second> </item> </second> </item> </inlineStackInfo> <originalName>__Val2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>20</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1905</item> <item>1906</item> <item>1907</item> <item>1908</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_352"> <Value> <Obj> <type>0</type> <id>365</id> <name>tmp_99</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</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>1909</item> <item>1910</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_353"> <Value> <Obj> <type>0</type> <id>366</id> <name>loc_V_10</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>688</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>688</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1911</item> <item>1912</item> <item>1913</item> <item>1914</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_354"> <Value> <Obj> <type>0</type> <id>367</id> <name>loc_V_11</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>690</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>690</second> </item> </second> </item> </inlineStackInfo> <originalName>loc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1915</item> <item>1916</item> <item>1917</item> <item>1918</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_355"> <Value> <Obj> <type>0</type> <id>368</id> <name>tmp_107_cast</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1919</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_356"> <Value> <Obj> <type>0</type> <id>369</id> <name>tmp_101</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1921</item> <item>1922</item> <item>1924</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_357"> <Value> <Obj> <type>0</type> <id>370</id> <name>tmp_102</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</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>1925</item> <item>1926</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_358"> <Value> <Obj> <type>0</type> <id>371</id> <name>sel_tmp12</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>683</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>683</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>1927</item> <item>1928</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_359"> <Value> <Obj> <type>0</type> <id>372</id> <name>sel_tmp13</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>685</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>685</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>1929</item> <item>1930</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_360"> <Value> <Obj> <type>0</type> <id>373</id> <name>sel_tmp17_demorgan</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>683</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>683</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>1931</item> <item>1932</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_361"> <Value> <Obj> <type>0</type> <id>374</id> <name>sel_tmp17</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>683</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>683</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>1933</item> <item>1934</item> </oprand_edges> <opcode>xor</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_362"> <Value> <Obj> <type>0</type> <id>375</id> <name>sel_tmp18</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>687</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>687</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>1935</item> <item>1936</item> </oprand_edges> <opcode>and</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_363"> <Value> <Obj> <type>0</type> <id>376</id> <name>newSel</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>687</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>687</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1937</item> <item>1938</item> <item>1939</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_364"> <Value> <Obj> <type>0</type> <id>377</id> <name>or_cond</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>687</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>687</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>1940</item> <item>1941</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_365"> <Value> <Obj> <type>0</type> <id>378</id> <name>newSel1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>683</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>683</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1942</item> <item>1943</item> <item>1944</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_366"> <Value> <Obj> <type>0</type> <id>379</id> <name>nc_V_4</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>687</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>687</second> </item> </second> </item> </inlineStackInfo> <originalName>nc.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1945</item> <item>1946</item> <item>1947</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_367"> <Value> <Obj> <type>0</type> <id>380</id> <name>bvh_d_index</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>692</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>692</second> </item> </second> </item> </inlineStackInfo> <originalName>index</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1948</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_368"> <Value> <Obj> <type>0</type> <id>381</id> <name>not_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>692</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>692</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>1949</item> <item>1950</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_369"> <Value> <Obj> <type>0</type> <id>382</id> <name>p_Repl2_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>692</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>692</second> </item> </second> </item> </inlineStackInfo> <originalName>__Repl2__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1951</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_370"> <Value> <Obj> <type>0</type> <id>383</id> <name>p_Result_s</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>692</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>692</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1953</item> <item>1954</item> <item>1955</item> <item>1956</item> </oprand_edges> <opcode>bitset</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_371"> <Value> <Obj> <type>0</type> <id>384</id> <name>prediction_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>711</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>711</second> </item> </second> </item> </inlineStackInfo> <originalName>prediction.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1957</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_372"> <Value> <Obj> <type>0</type> <id>385</id> <name>p_Val2_s_63</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>14</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>1959</item> <item>1960</item> <item>1961</item> <item>1962</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_373"> <Value> <Obj> <type>0</type> <id>386</id> <name>best_out_V</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>712</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>712</second> </item> </second> </item> </inlineStackInfo> <originalName>best_out.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>1963</item> </oprand_edges> <opcode>sext</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_374"> <Value> <Obj> <type>0</type> <id>387</id> <name>best_out_V_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>626</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>626</second> </item> </second> </item> </inlineStackInfo> <originalName>best_out.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1964</item> <item>1965</item> <item>1966</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_375"> <Value> <Obj> <type>0</type> <id>388</id> <name>tmp47</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</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>1967</item> <item>1968</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_376"> <Value> <Obj> <type>0</type> <id>389</id> <name>sel_tmp25_demorgan</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</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>1969</item> <item>1970</item> </oprand_edges> <opcode>or</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_377"> <Value> <Obj> <type>0</type> <id>390</id> <name>best_out_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</second> </item> </second> </item> </inlineStackInfo> <originalName>best_out.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1971</item> <item>1972</item> <item>1973</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_378"> <Value> <Obj> <type>0</type> <id>391</id> <name>o_word_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>626</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>626</second> </item> </second> </item> </inlineStackInfo> <originalName>o_word.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1974</item> <item>1975</item> <item>1976</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_379"> <Value> <Obj> <type>0</type> <id>392</id> <name>o_word_V_3</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</second> </item> </second> </item> </inlineStackInfo> <originalName>o_word.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1977</item> <item>1978</item> <item>1979</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_380"> <Value> <Obj> <type>0</type> <id>393</id> <name>prediction_V_1</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>626</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>626</second> </item> </second> </item> </inlineStackInfo> <originalName>prediction.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1980</item> <item>1981</item> <item>1982</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_381"> <Value> <Obj> <type>0</type> <id>394</id> <name>prediction_V_2</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>710</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>710</second> </item> </second> </item> </inlineStackInfo> <originalName>prediction.V</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>8</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1983</item> <item>1984</item> <item>1985</item> </oprand_edges> <opcode>select</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_382"> <Value> <Obj> <type>0</type> <id>395</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1986</item> <item>1987</item> <item>1988</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_383"> <Value> <Obj> <type>0</type> <id>397</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>2017</item> <item>2018</item> <item>2019</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_384"> <Value> <Obj> <type>0</type> <id>399</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>2025</item> <item>2026</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_385"> <Value> <Obj> <type>0</type> <id>400</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</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>2027</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_386"> <Value> <Obj> <type>0</type> <id>402</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>2028</item> <item>2029</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_387"> <Value> <Obj> <type>0</type> <id>403</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</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>2030</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_388"> <Value> <Obj> <type>0</type> <id>405</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</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>2020</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_389"> <Value> <Obj> <type>0</type> <id>407</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>2021</item> <item>2022</item> <item>2023</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_390"> <Value> <Obj> <type>0</type> <id>409</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>2031</item> <item>2032</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_391"> <Value> <Obj> <type>0</type> <id>410</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</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>2033</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_392"> <Value> <Obj> <type>0</type> <id>412</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>2034</item> <item>2035</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_393"> <Value> <Obj> <type>0</type> <id>413</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</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>2036</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_394"> <Value> <Obj> <type>0</type> <id>415</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>716</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>716</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>2024</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_395"> <Value> <Obj> <type>0</type> <id>418</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>637</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>637</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>1989</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_396"> <Value> <Obj> <type>0</type> <id>420</id> <name>tmp_52</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>720</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>720</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>1990</item> <item>1992</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_397"> <Value> <Obj> <type>0</type> <id>421</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>720</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>720</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1993</item> <item>1994</item> <item>1995</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_398"> <Value> <Obj> <type>0</type> <id>423</id> <name>p_Result_9</name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>723</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>723</second> </item> </second> </item> </inlineStackInfo> <originalName>__Result__</originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>1997</item> <item>1999</item> <item>2000</item> </oprand_edges> <opcode>bitconcatenate</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_399"> <Value> <Obj> <type>0</type> <id>424</id> <name>dmem_0_0_V_addr_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>2001</item> <item>2002</item> <item>2003</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_400"> <Value> <Obj> <type>0</type> <id>425</id> <name>dmem_1_0_V_addr_2</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>2004</item> <item>2005</item> <item>2006</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_401"> <Value> <Obj> <type>0</type> <id>426</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>724</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>724</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>2007</item> <item>2008</item> <item>2009</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_402"> <Value> <Obj> <type>0</type> <id>428</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>724</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>724</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>2011</item> <item>2012</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_403"> <Value> <Obj> <type>0</type> <id>429</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>724</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>724</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>2013</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_404"> <Value> <Obj> <type>0</type> <id>431</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>724</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>724</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>2014</item> <item>2015</item> </oprand_edges> <opcode>store</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_405"> <Value> <Obj> <type>0</type> <id>432</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>724</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>724</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>2016</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_406"> <Value> <Obj> <type>0</type> <id>434</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>725</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>725</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>2010</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> </item> <item class_id_reference="9" object_id="_407"> <Value> <Obj> <type>0</type> <id>436</id> <name></name> <fileName>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</fileName> <fileDirectory>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</fileDirectory> <lineNumber>726</lineNumber> <contextFuncName>bin_dense</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/var/tmp/tmp.yK7okjyWNi/_sds/vhls</first> <second> <count>1</count> <item_version>0</item_version> <item> <first> <first>/mnt/icgridio2/safe/giesen/HLS_tuner/1/TestApps/Rosetta/BNN/Sources/accel/Accel.cpp</first> <second>bin_dense</second> </first> <second>726</second> </item> </second> </item> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>83</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_408"> <Value> <Obj> <type>2</type> <id>454</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_409"> <Value> <Obj> <type>2</type> <id>459</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_410"> <Value> <Obj> <type>2</type> <id>463</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>49152</content> </item> <item class_id_reference="16" object_id="_411"> <Value> <Obj> <type>2</type> <id>468</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_412"> <Value> <Obj> <type>2</type> <id>473</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_413"> <Value> <Obj> <type>2</type> <id>478</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>22</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_414"> <Value> <Obj> <type>2</type> <id>488</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_415"> <Value> <Obj> <type>2</type> <id>504</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>7</content> </item> <item class_id_reference="16" object_id="_416"> <Value> <Obj> <type>2</type> <id>506</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>16</content> </item> <item class_id_reference="16" object_id="_417"> <Value> <Obj> <type>2</type> <id>512</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>6</content> </item> <item class_id_reference="16" object_id="_418"> <Value> <Obj> <type>2</type> <id>515</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_419"> <Value> <Obj> <type>2</type> <id>569</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>15</content> </item> <item class_id_reference="16" object_id="_420"> <Value> <Obj> <type>2</type> <id>576</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>21</content> </item> <item class_id_reference="16" object_id="_421"> <Value> <Obj> <type>2</type> <id>599</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>63</content> </item> <item class_id_reference="16" object_id="_422"> <Value> <Obj> <type>2</type> <id>603</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>61</content> </item> <item class_id_reference="16" object_id="_423"> <Value> <Obj> <type>2</type> <id>607</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>59</content> </item> <item class_id_reference="16" object_id="_424"> <Value> <Obj> <type>2</type> <id>611</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>57</content> </item> <item class_id_reference="16" object_id="_425"> <Value> <Obj> <type>2</type> <id>615</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>55</content> </item> <item class_id_reference="16" object_id="_426"> <Value> <Obj> <type>2</type> <id>619</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>53</content> </item> <item class_id_reference="16" object_id="_427"> <Value> <Obj> <type>2</type> <id>623</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>51</content> </item> <item class_id_reference="16" object_id="_428"> <Value> <Obj> <type>2</type> <id>627</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>49</content> </item> <item class_id_reference="16" object_id="_429"> <Value> <Obj> <type>2</type> <id>631</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>47</content> </item> <item class_id_reference="16" object_id="_430"> <Value> <Obj> <type>2</type> <id>635</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>45</content> </item> <item class_id_reference="16" object_id="_431"> <Value> <Obj> <type>2</type> <id>639</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>43</content> </item> <item class_id_reference="16" object_id="_432"> <Value> <Obj> <type>2</type> <id>643</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>41</content> </item> <item class_id_reference="16" object_id="_433"> <Value> <Obj> <type>2</type> <id>647</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>39</content> </item> <item class_id_reference="16" object_id="_434"> <Value> <Obj> <type>2</type> <id>651</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>37</content> </item> <item class_id_reference="16" object_id="_435"> <Value> <Obj> <type>2</type> <id>655</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>35</content> </item> <item class_id_reference="16" object_id="_436"> <Value> <Obj> <type>2</type> <id>659</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>33</content> </item> <item class_id_reference="16" object_id="_437"> <Value> <Obj> <type>2</type> <id>663</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_438"> <Value> <Obj> <type>2</type> <id>667</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>29</content> </item> <item class_id_reference="16" object_id="_439"> <Value> <Obj> <type>2</type> <id>671</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>27</content> </item> <item class_id_reference="16" object_id="_440"> <Value> <Obj> <type>2</type> <id>675</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>25</content> </item> <item class_id_reference="16" object_id="_441"> <Value> <Obj> <type>2</type> <id>679</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_442"> <Value> <Obj> <type>2</type> <id>686</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>19</content> </item> <item class_id_reference="16" object_id="_443"> <Value> <Obj> <type>2</type> <id>690</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>17</content> </item> <item class_id_reference="16" object_id="_444"> <Value> <Obj> <type>2</type> <id>697</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>13</content> </item> <item class_id_reference="16" object_id="_445"> <Value> <Obj> <type>2</type> <id>701</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>11</content> </item> <item class_id_reference="16" object_id="_446"> <Value> <Obj> <type>2</type> <id>705</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>9</content> </item> <item class_id_reference="16" object_id="_447"> <Value> <Obj> <type>2</type> <id>712</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>5</content> </item> <item class_id_reference="16" object_id="_448"> <Value> <Obj> <type>2</type> <id>716</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_449"> <Value> <Obj> <type>2</type> <id>720</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_450"> <Value> <Obj> <type>2</type> <id>725</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>1</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_451"> <Value> <Obj> <type>2</type> <id>794</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>60</content> </item> <item class_id_reference="16" object_id="_452"> <Value> <Obj> <type>2</type> <id>799</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>56</content> </item> <item class_id_reference="16" object_id="_453"> <Value> <Obj> <type>2</type> <id>804</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>52</content> </item> <item class_id_reference="16" object_id="_454"> <Value> <Obj> <type>2</type> <id>809</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>48</content> </item> <item class_id_reference="16" object_id="_455"> <Value> <Obj> <type>2</type> <id>814</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>44</content> </item> <item class_id_reference="16" object_id="_456"> <Value> <Obj> <type>2</type> <id>819</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>40</content> </item> <item class_id_reference="16" object_id="_457"> <Value> <Obj> <type>2</type> <id>824</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>36</content> </item> <item class_id_reference="16" object_id="_458"> <Value> <Obj> <type>2</type> <id>829</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>32</content> </item> <item class_id_reference="16" object_id="_459"> <Value> <Obj> <type>2</type> <id>834</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>28</content> </item> <item class_id_reference="16" object_id="_460"> <Value> <Obj> <type>2</type> <id>839</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>24</content> </item> <item class_id_reference="16" object_id="_461"> <Value> <Obj> <type>2</type> <id>844</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>20</content> </item> <item class_id_reference="16" object_id="_462"> <Value> <Obj> <type>2</type> <id>853</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>12</content> </item> <item class_id_reference="16" object_id="_463"> <Value> <Obj> <type>2</type> <id>858</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>8</content> </item> <item class_id_reference="16" object_id="_464"> <Value> <Obj> <type>2</type> <id>863</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>4</content> </item> <item class_id_reference="16" object_id="_465"> <Value> <Obj> <type>2</type> <id>870</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_466"> <Value> <Obj> <type>2</type> <id>904</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>62</content> </item> <item class_id_reference="16" object_id="_467"> <Value> <Obj> <type>2</type> <id>909</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>58</content> </item> <item class_id_reference="16" object_id="_468"> <Value> <Obj> <type>2</type> <id>914</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>54</content> </item> <item class_id_reference="16" object_id="_469"> <Value> <Obj> <type>2</type> <id>919</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>50</content> </item> <item class_id_reference="16" object_id="_470"> <Value> <Obj> <type>2</type> <id>924</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>46</content> </item> <item class_id_reference="16" object_id="_471"> <Value> <Obj> <type>2</type> <id>929</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>42</content> </item> <item class_id_reference="16" object_id="_472"> <Value> <Obj> <type>2</type> <id>934</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>38</content> </item> <item class_id_reference="16" object_id="_473"> <Value> <Obj> <type>2</type> <id>939</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>34</content> </item> <item class_id_reference="16" object_id="_474"> <Value> <Obj> <type>2</type> <id>944</id> <name>empty</name> <fileName></fileName> <fileDirectory></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="_475"> <Value> <Obj> <type>2</type> <id>949</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>26</content> </item> <item class_id_reference="16" object_id="_476"> <Value> <Obj> <type>2</type> <id>954</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>22</content> </item> <item class_id_reference="16" object_id="_477"> <Value> <Obj> <type>2</type> <id>959</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>18</content> </item> <item class_id_reference="16" object_id="_478"> <Value> <Obj> <type>2</type> <id>964</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>14</content> </item> <item class_id_reference="16" object_id="_479"> <Value> <Obj> <type>2</type> <id>969</id> <name>empty</name> <fileName></fileName> <fileDirectory></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>10</content> </item> <item class_id_reference="16" object_id="_480"> <Value> <Obj> <type>2</type> <id>978</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>2</content> </item> <item class_id_reference="16" object_id="_481"> <Value> <Obj> <type>2</type> <id>1131</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>4</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_482"> <Value> <Obj> <type>2</type> <id>1170</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>3</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_483"> <Value> <Obj> <type>2</type> <id>1236</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>9</bitwidth> </Value> <const_type>0</const_type> <content>64</content> </item> <item class_id_reference="16" object_id="_484"> <Value> <Obj> <type>2</type> <id>1827</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>16</bitwidth> </Value> <const_type>0</const_type> <content>128</content> </item> <item class_id_reference="16" object_id="_485"> <Value> <Obj> <type>2</type> <id>1857</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> <item class_id_reference="16" object_id="_486"> <Value> <Obj> <type>2</type> <id>1878</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>10</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_487"> <Value> <Obj> <type>2</type> <id>1899</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>12</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_488"> <Value> <Obj> <type>2</type> <id>1923</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>6</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_489"> <Value> <Obj> <type>2</type> <id>1991</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>2</bitwidth> </Value> <const_type>0</const_type> <content>3</content> </item> <item class_id_reference="16" object_id="_490"> <Value> <Obj> <type>2</type> <id>1998</id> <name>empty</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <bitwidth>56</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>21</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_491"> <Obj> <type>3</type> <id>26</id> <name>arrayctor.loop.preheader</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>12</count> <item_version>0</item_version> <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> </node_objs> </item> <item class_id_reference="18" object_id="_492"> <Obj> <type>3</type> <id>35</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>27</item> <item>28</item> <item>29</item> <item>30</item> <item>31</item> <item>32</item> <item>33</item> <item>34</item> </node_objs> </item> <item class_id_reference="18" object_id="_493"> <Obj> <type>3</type> <id>63</id> <name>_ifconv</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>24</count> <item_version>0</item_version> <item>39</item> <item>40</item> <item>41</item> <item>42</item> <item>43</item> <item>44</item> <item>45</item> <item>46</item> <item>47</item> <item>48</item> <item>49</item> <item>50</item> <item>51</item> <item>52</item> <item>53</item> <item>54</item> <item>55</item> <item>56</item> <item>57</item> <item>58</item> <item>59</item> <item>60</item> <item>61</item> <item>62</item> </node_objs> </item> <item class_id_reference="18" object_id="_494"> <Obj> <type>3</type> <id>68</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>64</item> <item>65</item> <item>66</item> <item>67</item> </node_objs> </item> <item class_id_reference="18" object_id="_495"> <Obj> <type>3</type> <id>333</id> <name>_ZrsILi64ELb1EE11ap_int_baseIXT_EXT0_EXleT_Li64EEERKS1_i.exit72.0_ifconv</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>259</count> <item_version>0</item_version> <item>73</item> <item>74</item> <item>75</item> <item>76</item> <item>77</item> <item>78</item> <item>79</item> <item>80</item> <item>81</item> <item>82</item> <item>83</item> <item>84</item> <item>85</item> <item>86</item> <item>87</item> <item>88</item> <item>89</item> <item>90</item> <item>91</item> <item>92</item> <item>93</item> <item>94</item> <item>95</item> <item>96</item> <item>97</item> <item>98</item> <item>99</item> <item>100</item> <item>101</item> <item>102</item> <item>103</item> <item>104</item> <item>105</item> <item>106</item> <item>107</item> <item>108</item> <item>109</item> <item>110</item> <item>111</item> <item>112</item> <item>113</item> <item>114</item> <item>115</item> <item>116</item> <item>117</item> <item>118</item> <item>119</item> <item>120</item> <item>121</item> <item>122</item> <item>123</item> <item>124</item> <item>125</item> <item>126</item> <item>127</item> <item>128</item> <item>129</item> <item>130</item> <item>131</item> <item>132</item> <item>133</item> <item>134</item> <item>135</item> <item>136</item> <item>137</item> <item>138</item> <item>139</item> <item>140</item> <item>141</item> <item>142</item> <item>143</item> <item>144</item> <item>145</item> <item>146</item> <item>147</item> <item>148</item> <item>149</item> <item>150</item> <item>151</item> <item>152</item> <item>153</item> <item>154</item> <item>155</item> <item>156</item> <item>157</item> <item>158</item> <item>159</item> <item>160</item> <item>161</item> <item>162</item> <item>163</item> <item>164</item> <item>165</item> <item>166</item> <item>167</item> <item>168</item> <item>169</item> <item>170</item> <item>171</item> <item>172</item> <item>173</item> <item>174</item> <item>175</item> <item>176</item> <item>177</item> <item>178</item> <item>179</item> <item>180</item> <item>181</item> <item>182</item> <item>183</item> <item>184</item> <item>185</item> <item>186</item> <item>187</item> <item>188</item> <item>189</item> <item>190</item> <item>191</item> <item>192</item> <item>193</item> <item>194</item> <item>195</item> <item>196</item> <item>197</item> <item>198</item> <item>199</item> <item>200</item> <item>201</item> <item>202</item> <item>203</item> <item>204</item> <item>205</item> <item>206</item> <item>207</item> <item>208</item> <item>209</item> <item>210</item> <item>211</item> <item>212</item> <item>213</item> <item>214</item> <item>215</item> <item>216</item> <item>217</item> <item>218</item> <item>219</item> <item>220</item> <item>221</item> <item>222</item> <item>223</item> <item>224</item> <item>225</item> <item>226</item> <item>227</item> <item>228</item> <item>229</item> <item>230</item> <item>231</item> <item>232</item> <item>233</item> <item>234</item> <item>235</item> <item>236</item> <item>237</item> <item>238</item> <item>239</item> <item>240</item> <item>241</item> <item>242</item> <item>243</item> <item>244</item> <item>245</item> <item>246</item> <item>247</item> <item>248</item> <item>249</item> <item>250</item> <item>251</item> <item>252</item> <item>253</item> <item>254</item> <item>255</item> <item>256</item> <item>257</item> <item>258</item> <item>259</item> <item>260</item> <item>261</item> <item>262</item> <item>263</item> <item>264</item> <item>265</item> <item>266</item> <item>267</item> <item>268</item> <item>269</item> <item>270</item> <item>271</item> <item>272</item> <item>273</item> <item>274</item> <item>275</item> <item>276</item> <item>277</item> <item>278</item> <item>279</item> <item>280</item> <item>281</item> <item>282</item> <item>283</item> <item>284</item> <item>285</item> <item>286</item> <item>287</item> <item>288</item> <item>289</item> <item>290</item> <item>291</item> <item>292</item> <item>293</item> <item>294</item> <item>295</item> <item>296</item> <item>297</item> <item>298</item> <item>299</item> <item>300</item> <item>301</item> <item>302</item> <item>303</item> <item>304</item> <item>305</item> <item>306</item> <item>307</item> <item>308</item> <item>309</item> <item>310</item> <item>311</item> <item>312</item> <item>313</item> <item>314</item> <item>315</item> <item>316</item> <item>317</item> <item>318</item> <item>319</item> <item>320</item> <item>321</item> <item>322</item> <item>323</item> <item>324</item> <item>325</item> <item>326</item> <item>327</item> <item>328</item> <item>329</item> <item>331</item> <item>332</item> </node_objs> </item> <item class_id_reference="18" object_id="_496"> <Obj> <type>3</type> <id>396</id> <name>_ifconv8</name> <fileName></fileName> <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>62</count> <item_version>0</item_version> <item>334</item> <item>335</item> <item>336</item> <item>337</item> <item>338</item> <item>339</item> <item>340</item> <item>341</item> <item>342</item> <item>343</item> <item>344</item> <item>345</item> <item>346</item> <item>347</item> <item>348</item> <item>349</item> <item>350</item> <item>351</item> <item>352</item> <item>353</item> <item>354</item> <item>355</item> <item>356</item> <item>357</item> <item>358</item> <item>359</item> <item>360</item> <item>361</item> <item>362</item> <item>363</item> <item>364</item> <item>365</item> <item>366</item> <item>367</item> <item>368</item> <item>369</item> <item>370</item> <item>371</item> <item>372</item> <item>373</item> <item>374</item> <item>375</item> <item>376</item> <item>377</item> <item>378</item> <item>379</item> <item>380</item> <item>381</item> <item>382</item> <item>383</item> <item>384</item> <item>385</item> <item>386</item> <item>387</item> <item>388</item> <item>389</item> <item>390</item> <item>391</item> <item>392</item> <item>393</item> <item>394</item> <item>395</item> </node_objs> </item> <item class_id_reference="18" object_id="_497"> <Obj> <type>3</type> <id>398</id> <name>branch6</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>397</item> </node_objs> </item> <item class_id_reference="18" object_id="_498"> <Obj> <type>3</type> <id>401</id> <name>branch233</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>399</item> <item>400</item> </node_objs> </item> <item class_id_reference="18" object_id="_499"> <Obj> <type>3</type> <id>404</id> <name>branch334</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>402</item> <item>403</item> </node_objs> </item> <item class_id_reference="18" object_id="_500"> <Obj> <type>3</type> <id>406</id> <name>branch632</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>405</item> </node_objs> </item> <item class_id_reference="18" object_id="_501"> <Obj> <type>3</type> <id>408</id> <name>branch7</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>407</item> </node_objs> </item> <item class_id_reference="18" object_id="_502"> <Obj> <type>3</type> <id>411</id> <name>branch653</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>409</item> <item>410</item> </node_objs> </item> <item class_id_reference="18" object_id="_503"> <Obj> <type>3</type> <id>414</id> <name>branch754</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>412</item> <item>413</item> </node_objs> </item> <item class_id_reference="18" object_id="_504"> <Obj> <type>3</type> <id>416</id> <name>branch752</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>415</item> </node_objs> </item> <item class_id_reference="18" object_id="_505"> <Obj> <type>3</type> <id>419</id> <name>._crit_edge149022</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>418</item> </node_objs> </item> <item class_id_reference="18" object_id="_506"> <Obj> <type>3</type> <id>422</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>420</item> <item>421</item> </node_objs> </item> <item class_id_reference="18" object_id="_507"> <Obj> <type>3</type> <id>427</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>4</count> <item_version>0</item_version> <item>423</item> <item>424</item> <item>425</item> <item>426</item> </node_objs> </item> <item class_id_reference="18" object_id="_508"> <Obj> <type>3</type> <id>430</id> <name>branch0</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>428</item> <item>429</item> </node_objs> </item> <item class_id_reference="18" object_id="_509"> <Obj> <type>3</type> <id>433</id> <name>branch1</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>2</count> <item_version>0</item_version> <item>431</item> <item>432</item> </node_objs> </item> <item class_id_reference="18" object_id="_510"> <Obj> <type>3</type> <id>435</id> <name></name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>434</item> </node_objs> </item> <item class_id_reference="18" object_id="_511"> <Obj> <type>3</type> <id>437</id> <name>._crit_edge1491</name> <fileName></fileName> <fileDirectory></fileDirectory> <lineNumber>0</lineNumber> <contextFuncName></contextFuncName> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName></originalName> <rtlName></rtlName> <coreName></coreName> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>436</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>1313</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_512"> <id>440</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>14</sink_obj> </item> <item class_id_reference="20" object_id="_513"> <id>442</id> <edge_type>1</edge_type> <source_obj>12</source_obj> <sink_obj>15</sink_obj> </item> <item class_id_reference="20" object_id="_514"> <id>444</id> <edge_type>1</edge_type> <source_obj>11</source_obj> <sink_obj>16</sink_obj> </item> <item class_id_reference="20" object_id="_515"> <id>447</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>17</sink_obj> </item> <item class_id_reference="20" object_id="_516"> <id>449</id> <edge_type>1</edge_type> <source_obj>9</source_obj> <sink_obj>18</sink_obj> </item> <item class_id_reference="20" object_id="_517"> <id>452</id> <edge_type>1</edge_type> <source_obj>8</source_obj> <sink_obj>19</sink_obj> </item> <item class_id_reference="20" object_id="_518"> <id>453</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_519"> <id>455</id> <edge_type>1</edge_type> <source_obj>454</source_obj> <sink_obj>20</sink_obj> </item> <item class_id_reference="20" object_id="_520"> <id>456</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>21</sink_obj> </item> <item class_id_reference="20" object_id="_521"> <id>457</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>22</sink_obj> </item> <item class_id_reference="20" object_id="_522"> <id>458</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_523"> <id>460</id> <edge_type>1</edge_type> <source_obj>459</source_obj> <sink_obj>23</sink_obj> </item> <item class_id_reference="20" object_id="_524"> <id>461</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>24</sink_obj> </item> <item class_id_reference="20" object_id="_525"> <id>462</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>25</sink_obj> </item> <item class_id_reference="20" object_id="_526"> <id>464</id> <edge_type>1</edge_type> <source_obj>463</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_527"> <id>465</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_528"> <id>466</id> <edge_type>1</edge_type> <source_obj>390</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_529"> <id>467</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>27</sink_obj> </item> <item class_id_reference="20" object_id="_530"> <id>469</id> <edge_type>1</edge_type> <source_obj>468</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_531"> <id>470</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_532"> <id>471</id> <edge_type>1</edge_type> <source_obj>394</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_533"> <id>472</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>28</sink_obj> </item> <item class_id_reference="20" object_id="_534"> <id>474</id> <edge_type>1</edge_type> <source_obj>473</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_535"> <id>475</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_536"> <id>476</id> <edge_type>1</edge_type> <source_obj>33</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_537"> <id>477</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>29</sink_obj> </item> <item class_id_reference="20" object_id="_538"> <id>479</id> <edge_type>1</edge_type> <source_obj>478</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_539"> <id>480</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_540"> <id>481</id> <edge_type>1</edge_type> <source_obj>31</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_541"> <id>482</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>30</sink_obj> </item> <item class_id_reference="20" object_id="_542"> <id>483</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_543"> <id>484</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>31</sink_obj> </item> <item class_id_reference="20" object_id="_544"> <id>485</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_545"> <id>486</id> <edge_type>1</edge_type> <source_obj>14</source_obj> <sink_obj>32</sink_obj> </item> <item class_id_reference="20" object_id="_546"> <id>487</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_547"> <id>489</id> <edge_type>1</edge_type> <source_obj>488</source_obj> <sink_obj>33</sink_obj> </item> <item class_id_reference="20" object_id="_548"> <id>490</id> <edge_type>1</edge_type> <source_obj>32</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_549"> <id>491</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_550"> <id>492</id> <edge_type>2</edge_type> <source_obj>422</source_obj> <sink_obj>34</sink_obj> </item> <item class_id_reference="20" object_id="_551"> <id>493</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>39</sink_obj> </item> <item class_id_reference="20" object_id="_552"> <id>494</id> <edge_type>1</edge_type> <source_obj>16</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_553"> <id>495</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>40</sink_obj> </item> <item class_id_reference="20" object_id="_554"> <id>496</id> <edge_type>1</edge_type> <source_obj>39</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_555"> <id>497</id> <edge_type>1</edge_type> <source_obj>21</source_obj> <sink_obj>41</sink_obj> </item> <item class_id_reference="20" object_id="_556"> <id>498</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>42</sink_obj> </item> <item class_id_reference="20" object_id="_557"> <id>499</id> <edge_type>1</edge_type> <source_obj>42</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_558"> <id>500</id> <edge_type>1</edge_type> <source_obj>22</source_obj> <sink_obj>43</sink_obj> </item> <item class_id_reference="20" object_id="_559"> <id>503</id> <edge_type>1</edge_type> <source_obj>41</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_560"> <id>505</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_561"> <id>507</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>44</sink_obj> </item> <item class_id_reference="20" object_id="_562"> <id>508</id> <edge_type>1</edge_type> <source_obj>44</source_obj> <sink_obj>45</sink_obj> </item> <item class_id_reference="20" object_id="_563"> <id>511</id> <edge_type>1</edge_type> <source_obj>40</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_564"> <id>513</id> <edge_type>1</edge_type> <source_obj>512</source_obj> <sink_obj>46</sink_obj> </item> <item class_id_reference="20" object_id="_565"> <id>514</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_566"> <id>516</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_567"> <id>517</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>47</sink_obj> </item> <item class_id_reference="20" object_id="_568"> <id>518</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_569"> <id>519</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_570"> <id>520</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>48</sink_obj> </item> <item class_id_reference="20" object_id="_571"> <id>521</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_572"> <id>522</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_573"> <id>523</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>49</sink_obj> </item> <item class_id_reference="20" object_id="_574"> <id>524</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_575"> <id>525</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_576"> <id>526</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>50</sink_obj> </item> <item class_id_reference="20" object_id="_577"> <id>527</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>51</sink_obj> </item> <item class_id_reference="20" object_id="_578"> <id>528</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>52</sink_obj> </item> <item class_id_reference="20" object_id="_579"> <id>529</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>53</sink_obj> </item> <item class_id_reference="20" object_id="_580"> <id>530</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>54</sink_obj> </item> <item class_id_reference="20" object_id="_581"> <id>531</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_582"> <id>532</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>55</sink_obj> </item> <item class_id_reference="20" object_id="_583"> <id>533</id> <edge_type>1</edge_type> <source_obj>55</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_584"> <id>534</id> <edge_type>1</edge_type> <source_obj>53</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_585"> <id>535</id> <edge_type>1</edge_type> <source_obj>54</source_obj> <sink_obj>56</sink_obj> </item> <item class_id_reference="20" object_id="_586"> <id>536</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_587"> <id>537</id> <edge_type>1</edge_type> <source_obj>459</source_obj> <sink_obj>57</sink_obj> </item> <item class_id_reference="20" object_id="_588"> <id>538</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_589"> <id>539</id> <edge_type>1</edge_type> <source_obj>57</source_obj> <sink_obj>58</sink_obj> </item> <item class_id_reference="20" object_id="_590"> <id>540</id> <edge_type>1</edge_type> <source_obj>58</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_591"> <id>541</id> <edge_type>1</edge_type> <source_obj>52</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_592"> <id>542</id> <edge_type>1</edge_type> <source_obj>56</source_obj> <sink_obj>59</sink_obj> </item> <item class_id_reference="20" object_id="_593"> <id>543</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_594"> <id>544</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>60</sink_obj> </item> <item class_id_reference="20" object_id="_595"> <id>545</id> <edge_type>1</edge_type> <source_obj>60</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_596"> <id>546</id> <edge_type>1</edge_type> <source_obj>51</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_597"> <id>547</id> <edge_type>1</edge_type> <source_obj>59</source_obj> <sink_obj>61</sink_obj> </item> <item class_id_reference="20" object_id="_598"> <id>548</id> <edge_type>2</edge_type> <source_obj>68</source_obj> <sink_obj>62</sink_obj> </item> <item class_id_reference="20" object_id="_599"> <id>549</id> <edge_type>1</edge_type> <source_obj>473</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_600"> <id>550</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_601"> <id>551</id> <edge_type>1</edge_type> <source_obj>329</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_602"> <id>552</id> <edge_type>2</edge_type> <source_obj>333</source_obj> <sink_obj>64</sink_obj> </item> <item class_id_reference="20" object_id="_603"> <id>553</id> <edge_type>1</edge_type> <source_obj>473</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_604"> <id>554</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_605"> <id>555</id> <edge_type>1</edge_type> <source_obj>331</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_606"> <id>556</id> <edge_type>2</edge_type> <source_obj>333</source_obj> <sink_obj>65</sink_obj> </item> <item class_id_reference="20" object_id="_607"> <id>557</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_608"> <id>558</id> <edge_type>1</edge_type> <source_obj>15</source_obj> <sink_obj>66</sink_obj> </item> <item class_id_reference="20" object_id="_609"> <id>559</id> <edge_type>1</edge_type> <source_obj>66</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_610"> <id>560</id> <edge_type>2</edge_type> <source_obj>396</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_611"> <id>561</id> <edge_type>2</edge_type> <source_obj>333</source_obj> <sink_obj>67</sink_obj> </item> <item class_id_reference="20" object_id="_612"> <id>562</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>73</sink_obj> </item> <item class_id_reference="20" object_id="_613"> <id>563</id> <edge_type>1</edge_type> <source_obj>73</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_614"> <id>564</id> <edge_type>1</edge_type> <source_obj>30</source_obj> <sink_obj>74</sink_obj> </item> <item class_id_reference="20" object_id="_615"> <id>567</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_616"> <id>568</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_617"> <id>570</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>75</sink_obj> </item> <item class_id_reference="20" object_id="_618"> <id>571</id> <edge_type>1</edge_type> <source_obj>75</source_obj> <sink_obj>76</sink_obj> </item> <item class_id_reference="20" object_id="_619"> <id>574</id> <edge_type>1</edge_type> <source_obj>74</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_620"> <id>575</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_621"> <id>577</id> <edge_type>1</edge_type> <source_obj>576</source_obj> <sink_obj>77</sink_obj> </item> <item class_id_reference="20" object_id="_622"> <id>578</id> <edge_type>1</edge_type> <source_obj>77</source_obj> <sink_obj>78</sink_obj> </item> <item class_id_reference="20" object_id="_623"> <id>579</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_624"> <id>580</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_625"> <id>581</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>79</sink_obj> </item> <item class_id_reference="20" object_id="_626"> <id>582</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_627"> <id>583</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_628"> <id>584</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>80</sink_obj> </item> <item class_id_reference="20" object_id="_629"> <id>585</id> <edge_type>1</edge_type> <source_obj>80</source_obj> <sink_obj>81</sink_obj> </item> <item class_id_reference="20" object_id="_630"> <id>586</id> <edge_type>1</edge_type> <source_obj>79</source_obj> <sink_obj>82</sink_obj> </item> <item class_id_reference="20" object_id="_631"> <id>587</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_632"> <id>588</id> <edge_type>1</edge_type> <source_obj>81</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_633"> <id>589</id> <edge_type>1</edge_type> <source_obj>82</source_obj> <sink_obj>83</sink_obj> </item> <item class_id_reference="20" object_id="_634"> <id>590</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_635"> <id>591</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_636"> <id>592</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>84</sink_obj> </item> <item class_id_reference="20" object_id="_637"> <id>593</id> <edge_type>1</edge_type> <source_obj>84</source_obj> <sink_obj>85</sink_obj> </item> <item class_id_reference="20" object_id="_638"> <id>594</id> <edge_type>1</edge_type> <source_obj>85</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_639"> <id>595</id> <edge_type>1</edge_type> <source_obj>83</source_obj> <sink_obj>86</sink_obj> </item> <item class_id_reference="20" object_id="_640"> <id>598</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_641"> <id>600</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>87</sink_obj> </item> <item class_id_reference="20" object_id="_642"> <id>602</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_643"> <id>604</id> <edge_type>1</edge_type> <source_obj>603</source_obj> <sink_obj>88</sink_obj> </item> <item class_id_reference="20" object_id="_644"> <id>606</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_645"> <id>608</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>89</sink_obj> </item> <item class_id_reference="20" object_id="_646"> <id>610</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_647"> <id>612</id> <edge_type>1</edge_type> <source_obj>611</source_obj> <sink_obj>90</sink_obj> </item> <item class_id_reference="20" object_id="_648"> <id>614</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_649"> <id>616</id> <edge_type>1</edge_type> <source_obj>615</source_obj> <sink_obj>91</sink_obj> </item> <item class_id_reference="20" object_id="_650"> <id>618</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_651"> <id>620</id> <edge_type>1</edge_type> <source_obj>619</source_obj> <sink_obj>92</sink_obj> </item> <item class_id_reference="20" object_id="_652"> <id>622</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_653"> <id>624</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>93</sink_obj> </item> <item class_id_reference="20" object_id="_654"> <id>626</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_655"> <id>628</id> <edge_type>1</edge_type> <source_obj>627</source_obj> <sink_obj>94</sink_obj> </item> <item class_id_reference="20" object_id="_656"> <id>630</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_657"> <id>632</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>95</sink_obj> </item> <item class_id_reference="20" object_id="_658"> <id>634</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_659"> <id>636</id> <edge_type>1</edge_type> <source_obj>635</source_obj> <sink_obj>96</sink_obj> </item> <item class_id_reference="20" object_id="_660"> <id>638</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_661"> <id>640</id> <edge_type>1</edge_type> <source_obj>639</source_obj> <sink_obj>97</sink_obj> </item> <item class_id_reference="20" object_id="_662"> <id>642</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_663"> <id>644</id> <edge_type>1</edge_type> <source_obj>643</source_obj> <sink_obj>98</sink_obj> </item> <item class_id_reference="20" object_id="_664"> <id>646</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_665"> <id>648</id> <edge_type>1</edge_type> <source_obj>647</source_obj> <sink_obj>99</sink_obj> </item> <item class_id_reference="20" object_id="_666"> <id>650</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_667"> <id>652</id> <edge_type>1</edge_type> <source_obj>651</source_obj> <sink_obj>100</sink_obj> </item> <item class_id_reference="20" object_id="_668"> <id>654</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_669"> <id>656</id> <edge_type>1</edge_type> <source_obj>655</source_obj> <sink_obj>101</sink_obj> </item> <item class_id_reference="20" object_id="_670"> <id>658</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_671"> <id>660</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>102</sink_obj> </item> <item class_id_reference="20" object_id="_672"> <id>662</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_673"> <id>664</id> <edge_type>1</edge_type> <source_obj>663</source_obj> <sink_obj>103</sink_obj> </item> <item class_id_reference="20" object_id="_674"> <id>666</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_675"> <id>668</id> <edge_type>1</edge_type> <source_obj>667</source_obj> <sink_obj>104</sink_obj> </item> <item class_id_reference="20" object_id="_676"> <id>670</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_677"> <id>672</id> <edge_type>1</edge_type> <source_obj>671</source_obj> <sink_obj>105</sink_obj> </item> <item class_id_reference="20" object_id="_678"> <id>674</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_679"> <id>676</id> <edge_type>1</edge_type> <source_obj>675</source_obj> <sink_obj>106</sink_obj> </item> <item class_id_reference="20" object_id="_680"> <id>678</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_681"> <id>680</id> <edge_type>1</edge_type> <source_obj>679</source_obj> <sink_obj>107</sink_obj> </item> <item class_id_reference="20" object_id="_682"> <id>682</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_683"> <id>683</id> <edge_type>1</edge_type> <source_obj>576</source_obj> <sink_obj>108</sink_obj> </item> <item class_id_reference="20" object_id="_684"> <id>685</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_685"> <id>687</id> <edge_type>1</edge_type> <source_obj>686</source_obj> <sink_obj>109</sink_obj> </item> <item class_id_reference="20" object_id="_686"> <id>689</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_687"> <id>691</id> <edge_type>1</edge_type> <source_obj>690</source_obj> <sink_obj>110</sink_obj> </item> <item class_id_reference="20" object_id="_688"> <id>693</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_689"> <id>694</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>111</sink_obj> </item> <item class_id_reference="20" object_id="_690"> <id>696</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_691"> <id>698</id> <edge_type>1</edge_type> <source_obj>697</source_obj> <sink_obj>112</sink_obj> </item> <item class_id_reference="20" object_id="_692"> <id>700</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_693"> <id>702</id> <edge_type>1</edge_type> <source_obj>701</source_obj> <sink_obj>113</sink_obj> </item> <item class_id_reference="20" object_id="_694"> <id>704</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_695"> <id>706</id> <edge_type>1</edge_type> <source_obj>705</source_obj> <sink_obj>114</sink_obj> </item> <item class_id_reference="20" object_id="_696"> <id>708</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_697"> <id>709</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>115</sink_obj> </item> <item class_id_reference="20" object_id="_698"> <id>711</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_699"> <id>713</id> <edge_type>1</edge_type> <source_obj>712</source_obj> <sink_obj>116</sink_obj> </item> <item class_id_reference="20" object_id="_700"> <id>715</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_701"> <id>717</id> <edge_type>1</edge_type> <source_obj>716</source_obj> <sink_obj>117</sink_obj> </item> <item class_id_reference="20" object_id="_702"> <id>719</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_703"> <id>721</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>118</sink_obj> </item> <item class_id_reference="20" object_id="_704"> <id>724</id> <edge_type>1</edge_type> <source_obj>87</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_705"> <id>726</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_706"> <id>727</id> <edge_type>1</edge_type> <source_obj>88</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_707"> <id>728</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_708"> <id>729</id> <edge_type>1</edge_type> <source_obj>89</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_709"> <id>730</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_710"> <id>731</id> <edge_type>1</edge_type> <source_obj>90</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_711"> <id>732</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_712"> <id>733</id> <edge_type>1</edge_type> <source_obj>91</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_713"> <id>734</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_714"> <id>735</id> <edge_type>1</edge_type> <source_obj>92</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_715"> <id>736</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_716"> <id>737</id> <edge_type>1</edge_type> <source_obj>93</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_717"> <id>738</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_718"> <id>739</id> <edge_type>1</edge_type> <source_obj>94</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_719"> <id>740</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_720"> <id>741</id> <edge_type>1</edge_type> <source_obj>95</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_721"> <id>742</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_722"> <id>743</id> <edge_type>1</edge_type> <source_obj>96</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_723"> <id>744</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_724"> <id>745</id> <edge_type>1</edge_type> <source_obj>97</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_725"> <id>746</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_726"> <id>747</id> <edge_type>1</edge_type> <source_obj>98</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_727"> <id>748</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_728"> <id>749</id> <edge_type>1</edge_type> <source_obj>99</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_729"> <id>750</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_730"> <id>751</id> <edge_type>1</edge_type> <source_obj>100</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_731"> <id>752</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_732"> <id>753</id> <edge_type>1</edge_type> <source_obj>101</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_733"> <id>754</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_734"> <id>755</id> <edge_type>1</edge_type> <source_obj>102</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_735"> <id>756</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_736"> <id>757</id> <edge_type>1</edge_type> <source_obj>103</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_737"> <id>758</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_738"> <id>759</id> <edge_type>1</edge_type> <source_obj>104</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_739"> <id>760</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_740"> <id>761</id> <edge_type>1</edge_type> <source_obj>105</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_741"> <id>762</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_742"> <id>763</id> <edge_type>1</edge_type> <source_obj>106</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_743"> <id>764</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_744"> <id>765</id> <edge_type>1</edge_type> <source_obj>107</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_745"> <id>766</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_746"> <id>767</id> <edge_type>1</edge_type> <source_obj>108</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_747"> <id>768</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_748"> <id>769</id> <edge_type>1</edge_type> <source_obj>109</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_749"> <id>770</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_750"> <id>771</id> <edge_type>1</edge_type> <source_obj>110</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_751"> <id>772</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_752"> <id>773</id> <edge_type>1</edge_type> <source_obj>111</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_753"> <id>774</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_754"> <id>775</id> <edge_type>1</edge_type> <source_obj>112</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_755"> <id>776</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_756"> <id>777</id> <edge_type>1</edge_type> <source_obj>113</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_757"> <id>778</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_758"> <id>779</id> <edge_type>1</edge_type> <source_obj>114</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_759"> <id>780</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_760"> <id>781</id> <edge_type>1</edge_type> <source_obj>115</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_761"> <id>782</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_762"> <id>783</id> <edge_type>1</edge_type> <source_obj>116</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_763"> <id>784</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_764"> <id>785</id> <edge_type>1</edge_type> <source_obj>117</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_765"> <id>786</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_766"> <id>787</id> <edge_type>1</edge_type> <source_obj>118</source_obj> <sink_obj>119</sink_obj> </item> <item class_id_reference="20" object_id="_767"> <id>788</id> <edge_type>1</edge_type> <source_obj>119</source_obj> <sink_obj>120</sink_obj> </item> <item class_id_reference="20" object_id="_768"> <id>789</id> <edge_type>1</edge_type> <source_obj>86</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_769"> <id>790</id> <edge_type>1</edge_type> <source_obj>120</source_obj> <sink_obj>121</sink_obj> </item> <item class_id_reference="20" object_id="_770"> <id>793</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_771"> <id>795</id> <edge_type>1</edge_type> <source_obj>794</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_772"> <id>796</id> <edge_type>1</edge_type> <source_obj>603</source_obj> <sink_obj>122</sink_obj> </item> <item class_id_reference="20" object_id="_773"> <id>798</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_774"> <id>800</id> <edge_type>1</edge_type> <source_obj>799</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_775"> <id>801</id> <edge_type>1</edge_type> <source_obj>611</source_obj> <sink_obj>123</sink_obj> </item> <item class_id_reference="20" object_id="_776"> <id>803</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_777"> <id>805</id> <edge_type>1</edge_type> <source_obj>804</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_778"> <id>806</id> <edge_type>1</edge_type> <source_obj>619</source_obj> <sink_obj>124</sink_obj> </item> <item class_id_reference="20" object_id="_779"> <id>808</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_780"> <id>810</id> <edge_type>1</edge_type> <source_obj>809</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_781"> <id>811</id> <edge_type>1</edge_type> <source_obj>627</source_obj> <sink_obj>125</sink_obj> </item> <item class_id_reference="20" object_id="_782"> <id>813</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_783"> <id>815</id> <edge_type>1</edge_type> <source_obj>814</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_784"> <id>816</id> <edge_type>1</edge_type> <source_obj>635</source_obj> <sink_obj>126</sink_obj> </item> <item class_id_reference="20" object_id="_785"> <id>818</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_786"> <id>820</id> <edge_type>1</edge_type> <source_obj>819</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_787"> <id>821</id> <edge_type>1</edge_type> <source_obj>643</source_obj> <sink_obj>127</sink_obj> </item> <item class_id_reference="20" object_id="_788"> <id>823</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_789"> <id>825</id> <edge_type>1</edge_type> <source_obj>824</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_790"> <id>826</id> <edge_type>1</edge_type> <source_obj>651</source_obj> <sink_obj>128</sink_obj> </item> <item class_id_reference="20" object_id="_791"> <id>828</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_792"> <id>830</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_793"> <id>831</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>129</sink_obj> </item> <item class_id_reference="20" object_id="_794"> <id>833</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_795"> <id>835</id> <edge_type>1</edge_type> <source_obj>834</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_796"> <id>836</id> <edge_type>1</edge_type> <source_obj>667</source_obj> <sink_obj>130</sink_obj> </item> <item class_id_reference="20" object_id="_797"> <id>838</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_798"> <id>840</id> <edge_type>1</edge_type> <source_obj>839</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_799"> <id>841</id> <edge_type>1</edge_type> <source_obj>675</source_obj> <sink_obj>131</sink_obj> </item> <item class_id_reference="20" object_id="_800"> <id>843</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_801"> <id>845</id> <edge_type>1</edge_type> <source_obj>844</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_802"> <id>846</id> <edge_type>1</edge_type> <source_obj>576</source_obj> <sink_obj>132</sink_obj> </item> <item class_id_reference="20" object_id="_803"> <id>848</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_804"> <id>849</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_805"> <id>850</id> <edge_type>1</edge_type> <source_obj>690</source_obj> <sink_obj>133</sink_obj> </item> <item class_id_reference="20" object_id="_806"> <id>852</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>134</sink_obj> </item> <item class_id_reference="20" object_id="_807"> <id>854</id> <edge_type>1</edge_type> <source_obj>853</source_obj> <sink_obj>134</sink_obj> </item> <item class_id_reference="20" object_id="_808"> <id>855</id> <edge_type>1</edge_type> <source_obj>697</source_obj> <sink_obj>134</sink_obj> </item> <item class_id_reference="20" object_id="_809"> <id>857</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_810"> <id>859</id> <edge_type>1</edge_type> <source_obj>858</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_811"> <id>860</id> <edge_type>1</edge_type> <source_obj>705</source_obj> <sink_obj>135</sink_obj> </item> <item class_id_reference="20" object_id="_812"> <id>862</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_813"> <id>864</id> <edge_type>1</edge_type> <source_obj>863</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_814"> <id>865</id> <edge_type>1</edge_type> <source_obj>712</source_obj> <sink_obj>136</sink_obj> </item> <item class_id_reference="20" object_id="_815"> <id>866</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>137</sink_obj> </item> <item class_id_reference="20" object_id="_816"> <id>869</id> <edge_type>1</edge_type> <source_obj>122</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_817"> <id>871</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_818"> <id>872</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_819"> <id>873</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_820"> <id>874</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_821"> <id>875</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_822"> <id>876</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_823"> <id>877</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_824"> <id>878</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_825"> <id>879</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_826"> <id>880</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_827"> <id>881</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_828"> <id>882</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_829"> <id>883</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_830"> <id>884</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_831"> <id>885</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_832"> <id>886</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_833"> <id>887</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_834"> <id>888</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_835"> <id>889</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_836"> <id>890</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_837"> <id>891</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_838"> <id>892</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_839"> <id>893</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_840"> <id>894</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_841"> <id>895</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_842"> <id>896</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_843"> <id>897</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_844"> <id>898</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_845"> <id>899</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_846"> <id>900</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>138</sink_obj> </item> <item class_id_reference="20" object_id="_847"> <id>901</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>139</sink_obj> </item> <item class_id_reference="20" object_id="_848"> <id>903</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_849"> <id>905</id> <edge_type>1</edge_type> <source_obj>904</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_850"> <id>906</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>140</sink_obj> </item> <item class_id_reference="20" object_id="_851"> <id>908</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_852"> <id>910</id> <edge_type>1</edge_type> <source_obj>909</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_853"> <id>911</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>141</sink_obj> </item> <item class_id_reference="20" object_id="_854"> <id>913</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_855"> <id>915</id> <edge_type>1</edge_type> <source_obj>914</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_856"> <id>916</id> <edge_type>1</edge_type> <source_obj>615</source_obj> <sink_obj>142</sink_obj> </item> <item class_id_reference="20" object_id="_857"> <id>918</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_858"> <id>920</id> <edge_type>1</edge_type> <source_obj>919</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_859"> <id>921</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>143</sink_obj> </item> <item class_id_reference="20" object_id="_860"> <id>923</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_861"> <id>925</id> <edge_type>1</edge_type> <source_obj>924</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_862"> <id>926</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>144</sink_obj> </item> <item class_id_reference="20" object_id="_863"> <id>928</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>145</sink_obj> </item> <item class_id_reference="20" object_id="_864"> <id>930</id> <edge_type>1</edge_type> <source_obj>929</source_obj> <sink_obj>145</sink_obj> </item> <item class_id_reference="20" object_id="_865"> <id>931</id> <edge_type>1</edge_type> <source_obj>639</source_obj> <sink_obj>145</sink_obj> </item> <item class_id_reference="20" object_id="_866"> <id>933</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>146</sink_obj> </item> <item class_id_reference="20" object_id="_867"> <id>935</id> <edge_type>1</edge_type> <source_obj>934</source_obj> <sink_obj>146</sink_obj> </item> <item class_id_reference="20" object_id="_868"> <id>936</id> <edge_type>1</edge_type> <source_obj>647</source_obj> <sink_obj>146</sink_obj> </item> <item class_id_reference="20" object_id="_869"> <id>938</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>147</sink_obj> </item> <item class_id_reference="20" object_id="_870"> <id>940</id> <edge_type>1</edge_type> <source_obj>939</source_obj> <sink_obj>147</sink_obj> </item> <item class_id_reference="20" object_id="_871"> <id>941</id> <edge_type>1</edge_type> <source_obj>655</source_obj> <sink_obj>147</sink_obj> </item> <item class_id_reference="20" object_id="_872"> <id>943</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>148</sink_obj> </item> <item class_id_reference="20" object_id="_873"> <id>945</id> <edge_type>1</edge_type> <source_obj>944</source_obj> <sink_obj>148</sink_obj> </item> <item class_id_reference="20" object_id="_874"> <id>946</id> <edge_type>1</edge_type> <source_obj>663</source_obj> <sink_obj>148</sink_obj> </item> <item class_id_reference="20" object_id="_875"> <id>948</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_876"> <id>950</id> <edge_type>1</edge_type> <source_obj>949</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_877"> <id>951</id> <edge_type>1</edge_type> <source_obj>671</source_obj> <sink_obj>149</sink_obj> </item> <item class_id_reference="20" object_id="_878"> <id>953</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_879"> <id>955</id> <edge_type>1</edge_type> <source_obj>954</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_880"> <id>956</id> <edge_type>1</edge_type> <source_obj>679</source_obj> <sink_obj>150</sink_obj> </item> <item class_id_reference="20" object_id="_881"> <id>958</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>151</sink_obj> </item> <item class_id_reference="20" object_id="_882"> <id>960</id> <edge_type>1</edge_type> <source_obj>959</source_obj> <sink_obj>151</sink_obj> </item> <item class_id_reference="20" object_id="_883"> <id>961</id> <edge_type>1</edge_type> <source_obj>686</source_obj> <sink_obj>151</sink_obj> </item> <item class_id_reference="20" object_id="_884"> <id>963</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>152</sink_obj> </item> <item class_id_reference="20" object_id="_885"> <id>965</id> <edge_type>1</edge_type> <source_obj>964</source_obj> <sink_obj>152</sink_obj> </item> <item class_id_reference="20" object_id="_886"> <id>966</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>152</sink_obj> </item> <item class_id_reference="20" object_id="_887"> <id>968</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>153</sink_obj> </item> <item class_id_reference="20" object_id="_888"> <id>970</id> <edge_type>1</edge_type> <source_obj>969</source_obj> <sink_obj>153</sink_obj> </item> <item class_id_reference="20" object_id="_889"> <id>971</id> <edge_type>1</edge_type> <source_obj>701</source_obj> <sink_obj>153</sink_obj> </item> <item class_id_reference="20" object_id="_890"> <id>973</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_891"> <id>974</id> <edge_type>1</edge_type> <source_obj>512</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_892"> <id>975</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>154</sink_obj> </item> <item class_id_reference="20" object_id="_893"> <id>977</id> <edge_type>1</edge_type> <source_obj>121</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_894"> <id>979</id> <edge_type>1</edge_type> <source_obj>978</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_895"> <id>980</id> <edge_type>1</edge_type> <source_obj>716</source_obj> <sink_obj>155</sink_obj> </item> <item class_id_reference="20" object_id="_896"> <id>982</id> <edge_type>1</edge_type> <source_obj>140</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_897"> <id>983</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_898"> <id>984</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_899"> <id>985</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_900"> <id>986</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_901"> <id>987</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_902"> <id>988</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_903"> <id>989</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_904"> <id>990</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_905"> <id>991</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_906"> <id>992</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_907"> <id>993</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_908"> <id>994</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_909"> <id>995</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_910"> <id>996</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_911"> <id>997</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_912"> <id>998</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_913"> <id>999</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_914"> <id>1000</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_915"> <id>1001</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_916"> <id>1002</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_917"> <id>1003</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_918"> <id>1004</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_919"> <id>1005</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_920"> <id>1006</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_921"> <id>1007</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_922"> <id>1008</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_923"> <id>1009</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_924"> <id>1010</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_925"> <id>1011</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_926"> <id>1012</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>156</sink_obj> </item> <item class_id_reference="20" object_id="_927"> <id>1013</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>157</sink_obj> </item> <item class_id_reference="20" object_id="_928"> <id>1016</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_929"> <id>1017</id> <edge_type>1</edge_type> <source_obj>123</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_930"> <id>1018</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_931"> <id>1019</id> <edge_type>1</edge_type> <source_obj>124</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_932"> <id>1020</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_933"> <id>1021</id> <edge_type>1</edge_type> <source_obj>125</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_934"> <id>1022</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_935"> <id>1023</id> <edge_type>1</edge_type> <source_obj>126</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_936"> <id>1024</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_937"> <id>1025</id> <edge_type>1</edge_type> <source_obj>127</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_938"> <id>1026</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_939"> <id>1027</id> <edge_type>1</edge_type> <source_obj>128</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_940"> <id>1028</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_941"> <id>1029</id> <edge_type>1</edge_type> <source_obj>129</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_942"> <id>1030</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_943"> <id>1031</id> <edge_type>1</edge_type> <source_obj>130</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_944"> <id>1032</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_945"> <id>1033</id> <edge_type>1</edge_type> <source_obj>131</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_946"> <id>1034</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_947"> <id>1035</id> <edge_type>1</edge_type> <source_obj>132</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_948"> <id>1036</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_949"> <id>1037</id> <edge_type>1</edge_type> <source_obj>133</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_950"> <id>1038</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_951"> <id>1039</id> <edge_type>1</edge_type> <source_obj>134</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_952"> <id>1040</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_953"> <id>1041</id> <edge_type>1</edge_type> <source_obj>135</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_954"> <id>1042</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_955"> <id>1043</id> <edge_type>1</edge_type> <source_obj>136</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_956"> <id>1044</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_957"> <id>1045</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>158</sink_obj> </item> <item class_id_reference="20" object_id="_958"> <id>1047</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_959"> <id>1048</id> <edge_type>1</edge_type> <source_obj>141</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_960"> <id>1049</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_961"> <id>1050</id> <edge_type>1</edge_type> <source_obj>142</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_962"> <id>1051</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_963"> <id>1052</id> <edge_type>1</edge_type> <source_obj>143</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_964"> <id>1053</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_965"> <id>1054</id> <edge_type>1</edge_type> <source_obj>144</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_966"> <id>1055</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_967"> <id>1056</id> <edge_type>1</edge_type> <source_obj>145</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_968"> <id>1057</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_969"> <id>1058</id> <edge_type>1</edge_type> <source_obj>146</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_970"> <id>1059</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_971"> <id>1060</id> <edge_type>1</edge_type> <source_obj>147</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_972"> <id>1061</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_973"> <id>1062</id> <edge_type>1</edge_type> <source_obj>148</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_974"> <id>1063</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_975"> <id>1064</id> <edge_type>1</edge_type> <source_obj>149</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_976"> <id>1065</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_977"> <id>1066</id> <edge_type>1</edge_type> <source_obj>150</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_978"> <id>1067</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_979"> <id>1068</id> <edge_type>1</edge_type> <source_obj>151</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_980"> <id>1069</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_981"> <id>1070</id> <edge_type>1</edge_type> <source_obj>152</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_982"> <id>1071</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_983"> <id>1072</id> <edge_type>1</edge_type> <source_obj>153</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_984"> <id>1073</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_985"> <id>1074</id> <edge_type>1</edge_type> <source_obj>154</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_986"> <id>1075</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_987"> <id>1076</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>159</sink_obj> </item> <item class_id_reference="20" object_id="_988"> <id>1077</id> <edge_type>1</edge_type> <source_obj>156</source_obj> <sink_obj>160</sink_obj> </item> <item class_id_reference="20" object_id="_989"> <id>1078</id> <edge_type>1</edge_type> <source_obj>138</source_obj> <sink_obj>160</sink_obj> </item> <item class_id_reference="20" object_id="_990"> <id>1079</id> <edge_type>1</edge_type> <source_obj>139</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_991"> <id>1080</id> <edge_type>1</edge_type> <source_obj>157</source_obj> <sink_obj>161</sink_obj> </item> <item class_id_reference="20" object_id="_992"> <id>1081</id> <edge_type>1</edge_type> <source_obj>137</source_obj> <sink_obj>162</sink_obj> </item> <item class_id_reference="20" object_id="_993"> <id>1082</id> <edge_type>1</edge_type> <source_obj>155</source_obj> <sink_obj>163</sink_obj> </item> <item class_id_reference="20" object_id="_994"> <id>1085</id> <edge_type>1</edge_type> <source_obj>161</source_obj> <sink_obj>164</sink_obj> </item> <item class_id_reference="20" object_id="_995"> <id>1086</id> <edge_type>1</edge_type> <source_obj>863</source_obj> <sink_obj>164</sink_obj> </item> <item class_id_reference="20" object_id="_996"> <id>1087</id> <edge_type>1</edge_type> <source_obj>904</source_obj> <sink_obj>164</sink_obj> </item> <item class_id_reference="20" object_id="_997"> <id>1088</id> <edge_type>1</edge_type> <source_obj>164</source_obj> <sink_obj>165</sink_obj> </item> <item class_id_reference="20" object_id="_998"> <id>1089</id> <edge_type>1</edge_type> <source_obj>159</source_obj> <sink_obj>166</sink_obj> </item> <item class_id_reference="20" object_id="_999"> <id>1090</id> <edge_type>1</edge_type> <source_obj>158</source_obj> <sink_obj>166</sink_obj> </item> <item class_id_reference="20" object_id="_1000"> <id>1091</id> <edge_type>1</edge_type> <source_obj>166</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_1001"> <id>1092</id> <edge_type>1</edge_type> <source_obj>165</source_obj> <sink_obj>167</sink_obj> </item> <item class_id_reference="20" object_id="_1002"> <id>1095</id> <edge_type>1</edge_type> <source_obj>160</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_1003"> <id>1096</id> <edge_type>1</edge_type> <source_obj>863</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_1004"> <id>1097</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>168</sink_obj> </item> <item class_id_reference="20" object_id="_1005"> <id>1100</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_1006"> <id>1101</id> <edge_type>1</edge_type> <source_obj>799</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_1007"> <id>1102</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>169</sink_obj> </item> <item class_id_reference="20" object_id="_1008"> <id>1104</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>170</sink_obj> </item> <item class_id_reference="20" object_id="_1009"> <id>1105</id> <edge_type>1</edge_type> <source_obj>809</source_obj> <sink_obj>170</sink_obj> </item> <item class_id_reference="20" object_id="_1010"> <id>1106</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>170</sink_obj> </item> <item class_id_reference="20" object_id="_1011"> <id>1108</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>171</sink_obj> </item> <item class_id_reference="20" object_id="_1012"> <id>1109</id> <edge_type>1</edge_type> <source_obj>819</source_obj> <sink_obj>171</sink_obj> </item> <item class_id_reference="20" object_id="_1013"> <id>1110</id> <edge_type>1</edge_type> <source_obj>639</source_obj> <sink_obj>171</sink_obj> </item> <item class_id_reference="20" object_id="_1014"> <id>1112</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_1015"> <id>1113</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_1016"> <id>1114</id> <edge_type>1</edge_type> <source_obj>655</source_obj> <sink_obj>172</sink_obj> </item> <item class_id_reference="20" object_id="_1017"> <id>1116</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_1018"> <id>1117</id> <edge_type>1</edge_type> <source_obj>839</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_1019"> <id>1118</id> <edge_type>1</edge_type> <source_obj>671</source_obj> <sink_obj>173</sink_obj> </item> <item class_id_reference="20" object_id="_1020"> <id>1120</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_1021"> <id>1121</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_1022"> <id>1122</id> <edge_type>1</edge_type> <source_obj>686</source_obj> <sink_obj>174</sink_obj> </item> <item class_id_reference="20" object_id="_1023"> <id>1124</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_1024"> <id>1125</id> <edge_type>1</edge_type> <source_obj>858</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_1025"> <id>1126</id> <edge_type>1</edge_type> <source_obj>701</source_obj> <sink_obj>175</sink_obj> </item> <item class_id_reference="20" object_id="_1026"> <id>1127</id> <edge_type>1</edge_type> <source_obj>167</source_obj> <sink_obj>176</sink_obj> </item> <item class_id_reference="20" object_id="_1027"> <id>1130</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1028"> <id>1132</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1029"> <id>1133</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1030"> <id>1134</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1031"> <id>1135</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1032"> <id>1136</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1033"> <id>1137</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1034"> <id>1138</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1035"> <id>1139</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1036"> <id>1140</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1037"> <id>1141</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1038"> <id>1142</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1039"> <id>1143</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1040"> <id>1144</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1041"> <id>1145</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>177</sink_obj> </item> <item class_id_reference="20" object_id="_1042"> <id>1146</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>178</sink_obj> </item> <item class_id_reference="20" object_id="_1043"> <id>1149</id> <edge_type>1</edge_type> <source_obj>169</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1044"> <id>1150</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1045"> <id>1151</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1046"> <id>1152</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1047"> <id>1153</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1048"> <id>1154</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1049"> <id>1155</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1050"> <id>1156</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1051"> <id>1157</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1052"> <id>1158</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1053"> <id>1159</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1054"> <id>1160</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1055"> <id>1161</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>179</sink_obj> </item> <item class_id_reference="20" object_id="_1056"> <id>1162</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>180</sink_obj> </item> <item class_id_reference="20" object_id="_1057"> <id>1163</id> <edge_type>1</edge_type> <source_obj>179</source_obj> <sink_obj>181</sink_obj> </item> <item class_id_reference="20" object_id="_1058"> <id>1164</id> <edge_type>1</edge_type> <source_obj>168</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_1059"> <id>1165</id> <edge_type>1</edge_type> <source_obj>162</source_obj> <sink_obj>182</sink_obj> </item> <item class_id_reference="20" object_id="_1060"> <id>1166</id> <edge_type>1</edge_type> <source_obj>163</source_obj> <sink_obj>183</sink_obj> </item> <item class_id_reference="20" object_id="_1061"> <id>1167</id> <edge_type>1</edge_type> <source_obj>182</source_obj> <sink_obj>183</sink_obj> </item> <item class_id_reference="20" object_id="_1062"> <id>1171</id> <edge_type>1</edge_type> <source_obj>1170</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1063"> <id>1172</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1064"> <id>1173</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1065"> <id>1174</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1066"> <id>1175</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1067"> <id>1176</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1068"> <id>1177</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1069"> <id>1178</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1070"> <id>1179</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1071"> <id>1180</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1072"> <id>1181</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1073"> <id>1182</id> <edge_type>1</edge_type> <source_obj>176</source_obj> <sink_obj>184</sink_obj> </item> <item class_id_reference="20" object_id="_1074"> <id>1184</id> <edge_type>1</edge_type> <source_obj>1170</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1075"> <id>1185</id> <edge_type>1</edge_type> <source_obj>170</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1076"> <id>1186</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1077"> <id>1187</id> <edge_type>1</edge_type> <source_obj>171</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1078"> <id>1188</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1079"> <id>1189</id> <edge_type>1</edge_type> <source_obj>172</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1080"> <id>1190</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1081"> <id>1191</id> <edge_type>1</edge_type> <source_obj>173</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1082"> <id>1192</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1083"> <id>1193</id> <edge_type>1</edge_type> <source_obj>174</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1084"> <id>1194</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1085"> <id>1195</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>185</sink_obj> </item> <item class_id_reference="20" object_id="_1086"> <id>1196</id> <edge_type>1</edge_type> <source_obj>180</source_obj> <sink_obj>186</sink_obj> </item> <item class_id_reference="20" object_id="_1087"> <id>1197</id> <edge_type>1</edge_type> <source_obj>177</source_obj> <sink_obj>186</sink_obj> </item> <item class_id_reference="20" object_id="_1088"> <id>1198</id> <edge_type>1</edge_type> <source_obj>178</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_1089"> <id>1199</id> <edge_type>1</edge_type> <source_obj>181</source_obj> <sink_obj>187</sink_obj> </item> <item class_id_reference="20" object_id="_1090"> <id>1200</id> <edge_type>1</edge_type> <source_obj>185</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_1091"> <id>1201</id> <edge_type>1</edge_type> <source_obj>184</source_obj> <sink_obj>188</sink_obj> </item> <item class_id_reference="20" object_id="_1092"> <id>1204</id> <edge_type>1</edge_type> <source_obj>187</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_1093"> <id>1205</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_1094"> <id>1206</id> <edge_type>1</edge_type> <source_obj>794</source_obj> <sink_obj>189</sink_obj> </item> <item class_id_reference="20" object_id="_1095"> <id>1207</id> <edge_type>1</edge_type> <source_obj>189</source_obj> <sink_obj>190</sink_obj> </item> <item class_id_reference="20" object_id="_1096"> <id>1208</id> <edge_type>1</edge_type> <source_obj>188</source_obj> <sink_obj>191</sink_obj> </item> <item class_id_reference="20" object_id="_1097"> <id>1209</id> <edge_type>1</edge_type> <source_obj>190</source_obj> <sink_obj>191</sink_obj> </item> <item class_id_reference="20" object_id="_1098"> <id>1210</id> <edge_type>1</edge_type> <source_obj>183</source_obj> <sink_obj>192</sink_obj> </item> <item class_id_reference="20" object_id="_1099"> <id>1213</id> <edge_type>1</edge_type> <source_obj>1170</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_1100"> <id>1214</id> <edge_type>1</edge_type> <source_obj>175</source_obj> <sink_obj>193</sink_obj> </item> <item class_id_reference="20" object_id="_1101"> <id>1217</id> <edge_type>1</edge_type> <source_obj>191</source_obj> <sink_obj>194</sink_obj> </item> <item class_id_reference="20" object_id="_1102"> <id>1218</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>194</sink_obj> </item> <item class_id_reference="20" object_id="_1103"> <id>1219</id> <edge_type>1</edge_type> <source_obj>934</source_obj> <sink_obj>194</sink_obj> </item> <item class_id_reference="20" object_id="_1104"> <id>1222</id> <edge_type>1</edge_type> <source_obj>186</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_1105"> <id>1223</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_1106"> <id>1224</id> <edge_type>1</edge_type> <source_obj>954</source_obj> <sink_obj>195</sink_obj> </item> <item class_id_reference="20" object_id="_1107"> <id>1225</id> <edge_type>1</edge_type> <source_obj>195</source_obj> <sink_obj>196</sink_obj> </item> <item class_id_reference="20" object_id="_1108"> <id>1226</id> <edge_type>1</edge_type> <source_obj>194</source_obj> <sink_obj>196</sink_obj> </item> <item class_id_reference="20" object_id="_1109"> <id>1227</id> <edge_type>1</edge_type> <source_obj>193</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_1110"> <id>1228</id> <edge_type>1</edge_type> <source_obj>192</source_obj> <sink_obj>197</sink_obj> </item> <item class_id_reference="20" object_id="_1111"> <id>1229</id> <edge_type>1</edge_type> <source_obj>196</source_obj> <sink_obj>198</sink_obj> </item> <item class_id_reference="20" object_id="_1112"> <id>1230</id> <edge_type>1</edge_type> <source_obj>197</source_obj> <sink_obj>198</sink_obj> </item> <item class_id_reference="20" object_id="_1113"> <id>1233</id> <edge_type>1</edge_type> <source_obj>198</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_1114"> <id>1234</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>199</sink_obj> </item> <item class_id_reference="20" object_id="_1115"> <id>1235</id> <edge_type>1</edge_type> <source_obj>199</source_obj> <sink_obj>200</sink_obj> </item> <item class_id_reference="20" object_id="_1116"> <id>1237</id> <edge_type>1</edge_type> <source_obj>1236</source_obj> <sink_obj>201</sink_obj> </item> <item class_id_reference="20" object_id="_1117"> <id>1238</id> <edge_type>1</edge_type> <source_obj>200</source_obj> <sink_obj>201</sink_obj> </item> <item class_id_reference="20" object_id="_1118"> <id>1239</id> <edge_type>1</edge_type> <source_obj>201</source_obj> <sink_obj>202</sink_obj> </item> <item class_id_reference="20" object_id="_1119"> <id>1240</id> <edge_type>1</edge_type> <source_obj>5</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_1120"> <id>1241</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_1121"> <id>1242</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>203</sink_obj> </item> <item class_id_reference="20" object_id="_1122"> <id>1243</id> <edge_type>1</edge_type> <source_obj>7</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_1123"> <id>1244</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_1124"> <id>1245</id> <edge_type>1</edge_type> <source_obj>76</source_obj> <sink_obj>204</sink_obj> </item> <item class_id_reference="20" object_id="_1125"> <id>1246</id> <edge_type>1</edge_type> <source_obj>204</source_obj> <sink_obj>205</sink_obj> </item> <item class_id_reference="20" object_id="_1126"> <id>1247</id> <edge_type>1</edge_type> <source_obj>203</source_obj> <sink_obj>206</sink_obj> </item> <item class_id_reference="20" object_id="_1127"> <id>1248</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_1128"> <id>1249</id> <edge_type>1</edge_type> <source_obj>205</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_1129"> <id>1250</id> <edge_type>1</edge_type> <source_obj>206</source_obj> <sink_obj>207</sink_obj> </item> <item class_id_reference="20" object_id="_1130"> <id>1251</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>208</sink_obj> </item> <item class_id_reference="20" object_id="_1131"> <id>1252</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>208</sink_obj> </item> <item class_id_reference="20" object_id="_1132"> <id>1253</id> <edge_type>1</edge_type> <source_obj>78</source_obj> <sink_obj>208</sink_obj> </item> <item class_id_reference="20" object_id="_1133"> <id>1254</id> <edge_type>1</edge_type> <source_obj>208</source_obj> <sink_obj>209</sink_obj> </item> <item class_id_reference="20" object_id="_1134"> <id>1255</id> <edge_type>1</edge_type> <source_obj>209</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_1135"> <id>1256</id> <edge_type>1</edge_type> <source_obj>207</source_obj> <sink_obj>210</sink_obj> </item> <item class_id_reference="20" object_id="_1136"> <id>1258</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>211</sink_obj> </item> <item class_id_reference="20" object_id="_1137"> <id>1259</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>211</sink_obj> </item> <item class_id_reference="20" object_id="_1138"> <id>1261</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>212</sink_obj> </item> <item class_id_reference="20" object_id="_1139"> <id>1262</id> <edge_type>1</edge_type> <source_obj>603</source_obj> <sink_obj>212</sink_obj> </item> <item class_id_reference="20" object_id="_1140"> <id>1264</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_1141"> <id>1265</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>213</sink_obj> </item> <item class_id_reference="20" object_id="_1142"> <id>1267</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_1143"> <id>1268</id> <edge_type>1</edge_type> <source_obj>611</source_obj> <sink_obj>214</sink_obj> </item> <item class_id_reference="20" object_id="_1144"> <id>1270</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>215</sink_obj> </item> <item class_id_reference="20" object_id="_1145"> <id>1271</id> <edge_type>1</edge_type> <source_obj>615</source_obj> <sink_obj>215</sink_obj> </item> <item class_id_reference="20" object_id="_1146"> <id>1273</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_1147"> <id>1274</id> <edge_type>1</edge_type> <source_obj>619</source_obj> <sink_obj>216</sink_obj> </item> <item class_id_reference="20" object_id="_1148"> <id>1276</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_1149"> <id>1277</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>217</sink_obj> </item> <item class_id_reference="20" object_id="_1150"> <id>1279</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>218</sink_obj> </item> <item class_id_reference="20" object_id="_1151"> <id>1280</id> <edge_type>1</edge_type> <source_obj>627</source_obj> <sink_obj>218</sink_obj> </item> <item class_id_reference="20" object_id="_1152"> <id>1282</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>219</sink_obj> </item> <item class_id_reference="20" object_id="_1153"> <id>1283</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>219</sink_obj> </item> <item class_id_reference="20" object_id="_1154"> <id>1285</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_1155"> <id>1286</id> <edge_type>1</edge_type> <source_obj>635</source_obj> <sink_obj>220</sink_obj> </item> <item class_id_reference="20" object_id="_1156"> <id>1288</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_1157"> <id>1289</id> <edge_type>1</edge_type> <source_obj>639</source_obj> <sink_obj>221</sink_obj> </item> <item class_id_reference="20" object_id="_1158"> <id>1291</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>222</sink_obj> </item> <item class_id_reference="20" object_id="_1159"> <id>1292</id> <edge_type>1</edge_type> <source_obj>643</source_obj> <sink_obj>222</sink_obj> </item> <item class_id_reference="20" object_id="_1160"> <id>1294</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_1161"> <id>1295</id> <edge_type>1</edge_type> <source_obj>647</source_obj> <sink_obj>223</sink_obj> </item> <item class_id_reference="20" object_id="_1162"> <id>1297</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>224</sink_obj> </item> <item class_id_reference="20" object_id="_1163"> <id>1298</id> <edge_type>1</edge_type> <source_obj>651</source_obj> <sink_obj>224</sink_obj> </item> <item class_id_reference="20" object_id="_1164"> <id>1300</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_1165"> <id>1301</id> <edge_type>1</edge_type> <source_obj>655</source_obj> <sink_obj>225</sink_obj> </item> <item class_id_reference="20" object_id="_1166"> <id>1303</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>226</sink_obj> </item> <item class_id_reference="20" object_id="_1167"> <id>1304</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>226</sink_obj> </item> <item class_id_reference="20" object_id="_1168"> <id>1306</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>227</sink_obj> </item> <item class_id_reference="20" object_id="_1169"> <id>1307</id> <edge_type>1</edge_type> <source_obj>663</source_obj> <sink_obj>227</sink_obj> </item> <item class_id_reference="20" object_id="_1170"> <id>1309</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>228</sink_obj> </item> <item class_id_reference="20" object_id="_1171"> <id>1310</id> <edge_type>1</edge_type> <source_obj>667</source_obj> <sink_obj>228</sink_obj> </item> <item class_id_reference="20" object_id="_1172"> <id>1312</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>229</sink_obj> </item> <item class_id_reference="20" object_id="_1173"> <id>1313</id> <edge_type>1</edge_type> <source_obj>671</source_obj> <sink_obj>229</sink_obj> </item> <item class_id_reference="20" object_id="_1174"> <id>1315</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>230</sink_obj> </item> <item class_id_reference="20" object_id="_1175"> <id>1316</id> <edge_type>1</edge_type> <source_obj>675</source_obj> <sink_obj>230</sink_obj> </item> <item class_id_reference="20" object_id="_1176"> <id>1318</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>231</sink_obj> </item> <item class_id_reference="20" object_id="_1177"> <id>1319</id> <edge_type>1</edge_type> <source_obj>679</source_obj> <sink_obj>231</sink_obj> </item> <item class_id_reference="20" object_id="_1178"> <id>1321</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>232</sink_obj> </item> <item class_id_reference="20" object_id="_1179"> <id>1322</id> <edge_type>1</edge_type> <source_obj>576</source_obj> <sink_obj>232</sink_obj> </item> <item class_id_reference="20" object_id="_1180"> <id>1324</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>233</sink_obj> </item> <item class_id_reference="20" object_id="_1181"> <id>1325</id> <edge_type>1</edge_type> <source_obj>686</source_obj> <sink_obj>233</sink_obj> </item> <item class_id_reference="20" object_id="_1182"> <id>1327</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>234</sink_obj> </item> <item class_id_reference="20" object_id="_1183"> <id>1328</id> <edge_type>1</edge_type> <source_obj>690</source_obj> <sink_obj>234</sink_obj> </item> <item class_id_reference="20" object_id="_1184"> <id>1330</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>235</sink_obj> </item> <item class_id_reference="20" object_id="_1185"> <id>1331</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>235</sink_obj> </item> <item class_id_reference="20" object_id="_1186"> <id>1333</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>236</sink_obj> </item> <item class_id_reference="20" object_id="_1187"> <id>1334</id> <edge_type>1</edge_type> <source_obj>697</source_obj> <sink_obj>236</sink_obj> </item> <item class_id_reference="20" object_id="_1188"> <id>1336</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>237</sink_obj> </item> <item class_id_reference="20" object_id="_1189"> <id>1337</id> <edge_type>1</edge_type> <source_obj>701</source_obj> <sink_obj>237</sink_obj> </item> <item class_id_reference="20" object_id="_1190"> <id>1339</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>238</sink_obj> </item> <item class_id_reference="20" object_id="_1191"> <id>1340</id> <edge_type>1</edge_type> <source_obj>705</source_obj> <sink_obj>238</sink_obj> </item> <item class_id_reference="20" object_id="_1192"> <id>1342</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>239</sink_obj> </item> <item class_id_reference="20" object_id="_1193"> <id>1343</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>239</sink_obj> </item> <item class_id_reference="20" object_id="_1194"> <id>1345</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>240</sink_obj> </item> <item class_id_reference="20" object_id="_1195"> <id>1346</id> <edge_type>1</edge_type> <source_obj>712</source_obj> <sink_obj>240</sink_obj> </item> <item class_id_reference="20" object_id="_1196"> <id>1348</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>241</sink_obj> </item> <item class_id_reference="20" object_id="_1197"> <id>1349</id> <edge_type>1</edge_type> <source_obj>716</source_obj> <sink_obj>241</sink_obj> </item> <item class_id_reference="20" object_id="_1198"> <id>1351</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>242</sink_obj> </item> <item class_id_reference="20" object_id="_1199"> <id>1352</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>242</sink_obj> </item> <item class_id_reference="20" object_id="_1200"> <id>1354</id> <edge_type>1</edge_type> <source_obj>211</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1201"> <id>1355</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1202"> <id>1356</id> <edge_type>1</edge_type> <source_obj>212</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1203"> <id>1357</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1204"> <id>1358</id> <edge_type>1</edge_type> <source_obj>213</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1205"> <id>1359</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1206"> <id>1360</id> <edge_type>1</edge_type> <source_obj>214</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1207"> <id>1361</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1208"> <id>1362</id> <edge_type>1</edge_type> <source_obj>215</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1209"> <id>1363</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1210"> <id>1364</id> <edge_type>1</edge_type> <source_obj>216</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1211"> <id>1365</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1212"> <id>1366</id> <edge_type>1</edge_type> <source_obj>217</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1213"> <id>1367</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1214"> <id>1368</id> <edge_type>1</edge_type> <source_obj>218</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1215"> <id>1369</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1216"> <id>1370</id> <edge_type>1</edge_type> <source_obj>219</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1217"> <id>1371</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1218"> <id>1372</id> <edge_type>1</edge_type> <source_obj>220</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1219"> <id>1373</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1220"> <id>1374</id> <edge_type>1</edge_type> <source_obj>221</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1221"> <id>1375</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1222"> <id>1376</id> <edge_type>1</edge_type> <source_obj>222</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1223"> <id>1377</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1224"> <id>1378</id> <edge_type>1</edge_type> <source_obj>223</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1225"> <id>1379</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1226"> <id>1380</id> <edge_type>1</edge_type> <source_obj>224</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1227"> <id>1381</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1228"> <id>1382</id> <edge_type>1</edge_type> <source_obj>225</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1229"> <id>1383</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1230"> <id>1384</id> <edge_type>1</edge_type> <source_obj>226</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1231"> <id>1385</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1232"> <id>1386</id> <edge_type>1</edge_type> <source_obj>227</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1233"> <id>1387</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1234"> <id>1388</id> <edge_type>1</edge_type> <source_obj>228</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1235"> <id>1389</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1236"> <id>1390</id> <edge_type>1</edge_type> <source_obj>229</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1237"> <id>1391</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1238"> <id>1392</id> <edge_type>1</edge_type> <source_obj>230</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1239"> <id>1393</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1240"> <id>1394</id> <edge_type>1</edge_type> <source_obj>231</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1241"> <id>1395</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1242"> <id>1396</id> <edge_type>1</edge_type> <source_obj>232</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1243"> <id>1397</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1244"> <id>1398</id> <edge_type>1</edge_type> <source_obj>233</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1245"> <id>1399</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1246"> <id>1400</id> <edge_type>1</edge_type> <source_obj>234</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1247"> <id>1401</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1248"> <id>1402</id> <edge_type>1</edge_type> <source_obj>235</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1249"> <id>1403</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1250"> <id>1404</id> <edge_type>1</edge_type> <source_obj>236</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1251"> <id>1405</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1252"> <id>1406</id> <edge_type>1</edge_type> <source_obj>237</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1253"> <id>1407</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1254"> <id>1408</id> <edge_type>1</edge_type> <source_obj>238</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1255"> <id>1409</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1256"> <id>1410</id> <edge_type>1</edge_type> <source_obj>239</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1257"> <id>1411</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1258"> <id>1412</id> <edge_type>1</edge_type> <source_obj>240</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1259"> <id>1413</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1260"> <id>1414</id> <edge_type>1</edge_type> <source_obj>241</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1261"> <id>1415</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1262"> <id>1416</id> <edge_type>1</edge_type> <source_obj>242</source_obj> <sink_obj>243</sink_obj> </item> <item class_id_reference="20" object_id="_1263"> <id>1417</id> <edge_type>1</edge_type> <source_obj>243</source_obj> <sink_obj>244</sink_obj> </item> <item class_id_reference="20" object_id="_1264"> <id>1418</id> <edge_type>1</edge_type> <source_obj>210</source_obj> <sink_obj>245</sink_obj> </item> <item class_id_reference="20" object_id="_1265"> <id>1419</id> <edge_type>1</edge_type> <source_obj>244</source_obj> <sink_obj>245</sink_obj> </item> <item class_id_reference="20" object_id="_1266"> <id>1421</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>246</sink_obj> </item> <item class_id_reference="20" object_id="_1267"> <id>1422</id> <edge_type>1</edge_type> <source_obj>794</source_obj> <sink_obj>246</sink_obj> </item> <item class_id_reference="20" object_id="_1268"> <id>1423</id> <edge_type>1</edge_type> <source_obj>603</source_obj> <sink_obj>246</sink_obj> </item> <item class_id_reference="20" object_id="_1269"> <id>1425</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>247</sink_obj> </item> <item class_id_reference="20" object_id="_1270"> <id>1426</id> <edge_type>1</edge_type> <source_obj>799</source_obj> <sink_obj>247</sink_obj> </item> <item class_id_reference="20" object_id="_1271"> <id>1427</id> <edge_type>1</edge_type> <source_obj>611</source_obj> <sink_obj>247</sink_obj> </item> <item class_id_reference="20" object_id="_1272"> <id>1429</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>248</sink_obj> </item> <item class_id_reference="20" object_id="_1273"> <id>1430</id> <edge_type>1</edge_type> <source_obj>804</source_obj> <sink_obj>248</sink_obj> </item> <item class_id_reference="20" object_id="_1274"> <id>1431</id> <edge_type>1</edge_type> <source_obj>619</source_obj> <sink_obj>248</sink_obj> </item> <item class_id_reference="20" object_id="_1275"> <id>1433</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>249</sink_obj> </item> <item class_id_reference="20" object_id="_1276"> <id>1434</id> <edge_type>1</edge_type> <source_obj>809</source_obj> <sink_obj>249</sink_obj> </item> <item class_id_reference="20" object_id="_1277"> <id>1435</id> <edge_type>1</edge_type> <source_obj>627</source_obj> <sink_obj>249</sink_obj> </item> <item class_id_reference="20" object_id="_1278"> <id>1437</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>250</sink_obj> </item> <item class_id_reference="20" object_id="_1279"> <id>1438</id> <edge_type>1</edge_type> <source_obj>814</source_obj> <sink_obj>250</sink_obj> </item> <item class_id_reference="20" object_id="_1280"> <id>1439</id> <edge_type>1</edge_type> <source_obj>635</source_obj> <sink_obj>250</sink_obj> </item> <item class_id_reference="20" object_id="_1281"> <id>1441</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>251</sink_obj> </item> <item class_id_reference="20" object_id="_1282"> <id>1442</id> <edge_type>1</edge_type> <source_obj>819</source_obj> <sink_obj>251</sink_obj> </item> <item class_id_reference="20" object_id="_1283"> <id>1443</id> <edge_type>1</edge_type> <source_obj>643</source_obj> <sink_obj>251</sink_obj> </item> <item class_id_reference="20" object_id="_1284"> <id>1445</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>252</sink_obj> </item> <item class_id_reference="20" object_id="_1285"> <id>1446</id> <edge_type>1</edge_type> <source_obj>824</source_obj> <sink_obj>252</sink_obj> </item> <item class_id_reference="20" object_id="_1286"> <id>1447</id> <edge_type>1</edge_type> <source_obj>651</source_obj> <sink_obj>252</sink_obj> </item> <item class_id_reference="20" object_id="_1287"> <id>1449</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>253</sink_obj> </item> <item class_id_reference="20" object_id="_1288"> <id>1450</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>253</sink_obj> </item> <item class_id_reference="20" object_id="_1289"> <id>1451</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>253</sink_obj> </item> <item class_id_reference="20" object_id="_1290"> <id>1453</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>254</sink_obj> </item> <item class_id_reference="20" object_id="_1291"> <id>1454</id> <edge_type>1</edge_type> <source_obj>834</source_obj> <sink_obj>254</sink_obj> </item> <item class_id_reference="20" object_id="_1292"> <id>1455</id> <edge_type>1</edge_type> <source_obj>667</source_obj> <sink_obj>254</sink_obj> </item> <item class_id_reference="20" object_id="_1293"> <id>1457</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>255</sink_obj> </item> <item class_id_reference="20" object_id="_1294"> <id>1458</id> <edge_type>1</edge_type> <source_obj>839</source_obj> <sink_obj>255</sink_obj> </item> <item class_id_reference="20" object_id="_1295"> <id>1459</id> <edge_type>1</edge_type> <source_obj>675</source_obj> <sink_obj>255</sink_obj> </item> <item class_id_reference="20" object_id="_1296"> <id>1461</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>256</sink_obj> </item> <item class_id_reference="20" object_id="_1297"> <id>1462</id> <edge_type>1</edge_type> <source_obj>844</source_obj> <sink_obj>256</sink_obj> </item> <item class_id_reference="20" object_id="_1298"> <id>1463</id> <edge_type>1</edge_type> <source_obj>576</source_obj> <sink_obj>256</sink_obj> </item> <item class_id_reference="20" object_id="_1299"> <id>1465</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>257</sink_obj> </item> <item class_id_reference="20" object_id="_1300"> <id>1466</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>257</sink_obj> </item> <item class_id_reference="20" object_id="_1301"> <id>1467</id> <edge_type>1</edge_type> <source_obj>690</source_obj> <sink_obj>257</sink_obj> </item> <item class_id_reference="20" object_id="_1302"> <id>1469</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>258</sink_obj> </item> <item class_id_reference="20" object_id="_1303"> <id>1470</id> <edge_type>1</edge_type> <source_obj>853</source_obj> <sink_obj>258</sink_obj> </item> <item class_id_reference="20" object_id="_1304"> <id>1471</id> <edge_type>1</edge_type> <source_obj>697</source_obj> <sink_obj>258</sink_obj> </item> <item class_id_reference="20" object_id="_1305"> <id>1473</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>259</sink_obj> </item> <item class_id_reference="20" object_id="_1306"> <id>1474</id> <edge_type>1</edge_type> <source_obj>858</source_obj> <sink_obj>259</sink_obj> </item> <item class_id_reference="20" object_id="_1307"> <id>1475</id> <edge_type>1</edge_type> <source_obj>705</source_obj> <sink_obj>259</sink_obj> </item> <item class_id_reference="20" object_id="_1308"> <id>1477</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>260</sink_obj> </item> <item class_id_reference="20" object_id="_1309"> <id>1478</id> <edge_type>1</edge_type> <source_obj>863</source_obj> <sink_obj>260</sink_obj> </item> <item class_id_reference="20" object_id="_1310"> <id>1479</id> <edge_type>1</edge_type> <source_obj>712</source_obj> <sink_obj>260</sink_obj> </item> <item class_id_reference="20" object_id="_1311"> <id>1480</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>261</sink_obj> </item> <item class_id_reference="20" object_id="_1312"> <id>1482</id> <edge_type>1</edge_type> <source_obj>246</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1313"> <id>1483</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1314"> <id>1484</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1315"> <id>1485</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1316"> <id>1486</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1317"> <id>1487</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1318"> <id>1488</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1319"> <id>1489</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1320"> <id>1490</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1321"> <id>1491</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1322"> <id>1492</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1323"> <id>1493</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1324"> <id>1494</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1325"> <id>1495</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1326"> <id>1496</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1327"> <id>1497</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1328"> <id>1498</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1329"> <id>1499</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1330"> <id>1500</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1331"> <id>1501</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1332"> <id>1502</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1333"> <id>1503</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1334"> <id>1504</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1335"> <id>1505</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1336"> <id>1506</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1337"> <id>1507</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1338"> <id>1508</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1339"> <id>1509</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1340"> <id>1510</id> <edge_type>1</edge_type> <source_obj>260</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1341"> <id>1511</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1342"> <id>1512</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>262</sink_obj> </item> <item class_id_reference="20" object_id="_1343"> <id>1513</id> <edge_type>1</edge_type> <source_obj>262</source_obj> <sink_obj>263</sink_obj> </item> <item class_id_reference="20" object_id="_1344"> <id>1515</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>264</sink_obj> </item> <item class_id_reference="20" object_id="_1345"> <id>1516</id> <edge_type>1</edge_type> <source_obj>904</source_obj> <sink_obj>264</sink_obj> </item> <item class_id_reference="20" object_id="_1346"> <id>1517</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>264</sink_obj> </item> <item class_id_reference="20" object_id="_1347"> <id>1519</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>265</sink_obj> </item> <item class_id_reference="20" object_id="_1348"> <id>1520</id> <edge_type>1</edge_type> <source_obj>909</source_obj> <sink_obj>265</sink_obj> </item> <item class_id_reference="20" object_id="_1349"> <id>1521</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>265</sink_obj> </item> <item class_id_reference="20" object_id="_1350"> <id>1523</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>266</sink_obj> </item> <item class_id_reference="20" object_id="_1351"> <id>1524</id> <edge_type>1</edge_type> <source_obj>914</source_obj> <sink_obj>266</sink_obj> </item> <item class_id_reference="20" object_id="_1352"> <id>1525</id> <edge_type>1</edge_type> <source_obj>615</source_obj> <sink_obj>266</sink_obj> </item> <item class_id_reference="20" object_id="_1353"> <id>1527</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>267</sink_obj> </item> <item class_id_reference="20" object_id="_1354"> <id>1528</id> <edge_type>1</edge_type> <source_obj>919</source_obj> <sink_obj>267</sink_obj> </item> <item class_id_reference="20" object_id="_1355"> <id>1529</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>267</sink_obj> </item> <item class_id_reference="20" object_id="_1356"> <id>1531</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>268</sink_obj> </item> <item class_id_reference="20" object_id="_1357"> <id>1532</id> <edge_type>1</edge_type> <source_obj>924</source_obj> <sink_obj>268</sink_obj> </item> <item class_id_reference="20" object_id="_1358"> <id>1533</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>268</sink_obj> </item> <item class_id_reference="20" object_id="_1359"> <id>1535</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>269</sink_obj> </item> <item class_id_reference="20" object_id="_1360"> <id>1536</id> <edge_type>1</edge_type> <source_obj>929</source_obj> <sink_obj>269</sink_obj> </item> <item class_id_reference="20" object_id="_1361"> <id>1537</id> <edge_type>1</edge_type> <source_obj>639</source_obj> <sink_obj>269</sink_obj> </item> <item class_id_reference="20" object_id="_1362"> <id>1539</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>270</sink_obj> </item> <item class_id_reference="20" object_id="_1363"> <id>1540</id> <edge_type>1</edge_type> <source_obj>934</source_obj> <sink_obj>270</sink_obj> </item> <item class_id_reference="20" object_id="_1364"> <id>1541</id> <edge_type>1</edge_type> <source_obj>647</source_obj> <sink_obj>270</sink_obj> </item> <item class_id_reference="20" object_id="_1365"> <id>1543</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>271</sink_obj> </item> <item class_id_reference="20" object_id="_1366"> <id>1544</id> <edge_type>1</edge_type> <source_obj>939</source_obj> <sink_obj>271</sink_obj> </item> <item class_id_reference="20" object_id="_1367"> <id>1545</id> <edge_type>1</edge_type> <source_obj>655</source_obj> <sink_obj>271</sink_obj> </item> <item class_id_reference="20" object_id="_1368"> <id>1547</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>272</sink_obj> </item> <item class_id_reference="20" object_id="_1369"> <id>1548</id> <edge_type>1</edge_type> <source_obj>944</source_obj> <sink_obj>272</sink_obj> </item> <item class_id_reference="20" object_id="_1370"> <id>1549</id> <edge_type>1</edge_type> <source_obj>663</source_obj> <sink_obj>272</sink_obj> </item> <item class_id_reference="20" object_id="_1371"> <id>1551</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>273</sink_obj> </item> <item class_id_reference="20" object_id="_1372"> <id>1552</id> <edge_type>1</edge_type> <source_obj>949</source_obj> <sink_obj>273</sink_obj> </item> <item class_id_reference="20" object_id="_1373"> <id>1553</id> <edge_type>1</edge_type> <source_obj>671</source_obj> <sink_obj>273</sink_obj> </item> <item class_id_reference="20" object_id="_1374"> <id>1555</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>274</sink_obj> </item> <item class_id_reference="20" object_id="_1375"> <id>1556</id> <edge_type>1</edge_type> <source_obj>954</source_obj> <sink_obj>274</sink_obj> </item> <item class_id_reference="20" object_id="_1376"> <id>1557</id> <edge_type>1</edge_type> <source_obj>679</source_obj> <sink_obj>274</sink_obj> </item> <item class_id_reference="20" object_id="_1377"> <id>1559</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>275</sink_obj> </item> <item class_id_reference="20" object_id="_1378"> <id>1560</id> <edge_type>1</edge_type> <source_obj>959</source_obj> <sink_obj>275</sink_obj> </item> <item class_id_reference="20" object_id="_1379"> <id>1561</id> <edge_type>1</edge_type> <source_obj>686</source_obj> <sink_obj>275</sink_obj> </item> <item class_id_reference="20" object_id="_1380"> <id>1563</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>276</sink_obj> </item> <item class_id_reference="20" object_id="_1381"> <id>1564</id> <edge_type>1</edge_type> <source_obj>964</source_obj> <sink_obj>276</sink_obj> </item> <item class_id_reference="20" object_id="_1382"> <id>1565</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>276</sink_obj> </item> <item class_id_reference="20" object_id="_1383"> <id>1567</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>277</sink_obj> </item> <item class_id_reference="20" object_id="_1384"> <id>1568</id> <edge_type>1</edge_type> <source_obj>969</source_obj> <sink_obj>277</sink_obj> </item> <item class_id_reference="20" object_id="_1385"> <id>1569</id> <edge_type>1</edge_type> <source_obj>701</source_obj> <sink_obj>277</sink_obj> </item> <item class_id_reference="20" object_id="_1386"> <id>1571</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>278</sink_obj> </item> <item class_id_reference="20" object_id="_1387"> <id>1572</id> <edge_type>1</edge_type> <source_obj>512</source_obj> <sink_obj>278</sink_obj> </item> <item class_id_reference="20" object_id="_1388"> <id>1573</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>278</sink_obj> </item> <item class_id_reference="20" object_id="_1389"> <id>1575</id> <edge_type>1</edge_type> <source_obj>245</source_obj> <sink_obj>279</sink_obj> </item> <item class_id_reference="20" object_id="_1390"> <id>1576</id> <edge_type>1</edge_type> <source_obj>978</source_obj> <sink_obj>279</sink_obj> </item> <item class_id_reference="20" object_id="_1391"> <id>1577</id> <edge_type>1</edge_type> <source_obj>716</source_obj> <sink_obj>279</sink_obj> </item> <item class_id_reference="20" object_id="_1392"> <id>1579</id> <edge_type>1</edge_type> <source_obj>264</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1393"> <id>1580</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1394"> <id>1581</id> <edge_type>1</edge_type> <source_obj>265</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1395"> <id>1582</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1396"> <id>1583</id> <edge_type>1</edge_type> <source_obj>266</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1397"> <id>1584</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1398"> <id>1585</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1399"> <id>1586</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1400"> <id>1587</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1401"> <id>1588</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1402"> <id>1589</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1403"> <id>1590</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1404"> <id>1591</id> <edge_type>1</edge_type> <source_obj>270</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1405"> <id>1592</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1406"> <id>1593</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1407"> <id>1594</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1408"> <id>1595</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1409"> <id>1596</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1410"> <id>1597</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1411"> <id>1598</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1412"> <id>1599</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1413"> <id>1600</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1414"> <id>1601</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1415"> <id>1602</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1416"> <id>1603</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1417"> <id>1604</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1418"> <id>1605</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1419"> <id>1606</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1420"> <id>1607</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1421"> <id>1608</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1422"> <id>1609</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>280</sink_obj> </item> <item class_id_reference="20" object_id="_1423"> <id>1610</id> <edge_type>1</edge_type> <source_obj>280</source_obj> <sink_obj>281</sink_obj> </item> <item class_id_reference="20" object_id="_1424"> <id>1612</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1425"> <id>1613</id> <edge_type>1</edge_type> <source_obj>247</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1426"> <id>1614</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1427"> <id>1615</id> <edge_type>1</edge_type> <source_obj>248</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1428"> <id>1616</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1429"> <id>1617</id> <edge_type>1</edge_type> <source_obj>249</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1430"> <id>1618</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1431"> <id>1619</id> <edge_type>1</edge_type> <source_obj>250</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1432"> <id>1620</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1433"> <id>1621</id> <edge_type>1</edge_type> <source_obj>251</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1434"> <id>1622</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1435"> <id>1623</id> <edge_type>1</edge_type> <source_obj>252</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1436"> <id>1624</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1437"> <id>1625</id> <edge_type>1</edge_type> <source_obj>253</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1438"> <id>1626</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1439"> <id>1627</id> <edge_type>1</edge_type> <source_obj>254</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1440"> <id>1628</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1441"> <id>1629</id> <edge_type>1</edge_type> <source_obj>255</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1442"> <id>1630</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1443"> <id>1631</id> <edge_type>1</edge_type> <source_obj>256</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1444"> <id>1632</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1445"> <id>1633</id> <edge_type>1</edge_type> <source_obj>257</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1446"> <id>1634</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1447"> <id>1635</id> <edge_type>1</edge_type> <source_obj>258</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1448"> <id>1636</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1449"> <id>1637</id> <edge_type>1</edge_type> <source_obj>259</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1450"> <id>1638</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1451"> <id>1639</id> <edge_type>1</edge_type> <source_obj>260</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1452"> <id>1640</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1453"> <id>1641</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>282</sink_obj> </item> <item class_id_reference="20" object_id="_1454"> <id>1643</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1455"> <id>1644</id> <edge_type>1</edge_type> <source_obj>265</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1456"> <id>1645</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1457"> <id>1646</id> <edge_type>1</edge_type> <source_obj>266</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1458"> <id>1647</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1459"> <id>1648</id> <edge_type>1</edge_type> <source_obj>267</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1460"> <id>1649</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1461"> <id>1650</id> <edge_type>1</edge_type> <source_obj>268</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1462"> <id>1651</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1463"> <id>1652</id> <edge_type>1</edge_type> <source_obj>269</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1464"> <id>1653</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1465"> <id>1654</id> <edge_type>1</edge_type> <source_obj>270</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1466"> <id>1655</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1467"> <id>1656</id> <edge_type>1</edge_type> <source_obj>271</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1468"> <id>1657</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1469"> <id>1658</id> <edge_type>1</edge_type> <source_obj>272</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1470"> <id>1659</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1471"> <id>1660</id> <edge_type>1</edge_type> <source_obj>273</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1472"> <id>1661</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1473"> <id>1662</id> <edge_type>1</edge_type> <source_obj>274</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1474"> <id>1663</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1475"> <id>1664</id> <edge_type>1</edge_type> <source_obj>275</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1476"> <id>1665</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1477"> <id>1666</id> <edge_type>1</edge_type> <source_obj>276</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1478"> <id>1667</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1479"> <id>1668</id> <edge_type>1</edge_type> <source_obj>277</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1480"> <id>1669</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1481"> <id>1670</id> <edge_type>1</edge_type> <source_obj>278</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1482"> <id>1671</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1483"> <id>1672</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>283</sink_obj> </item> <item class_id_reference="20" object_id="_1484"> <id>1673</id> <edge_type>1</edge_type> <source_obj>280</source_obj> <sink_obj>284</sink_obj> </item> <item class_id_reference="20" object_id="_1485"> <id>1674</id> <edge_type>1</edge_type> <source_obj>262</source_obj> <sink_obj>284</sink_obj> </item> <item class_id_reference="20" object_id="_1486"> <id>1675</id> <edge_type>1</edge_type> <source_obj>263</source_obj> <sink_obj>285</sink_obj> </item> <item class_id_reference="20" object_id="_1487"> <id>1676</id> <edge_type>1</edge_type> <source_obj>281</source_obj> <sink_obj>285</sink_obj> </item> <item class_id_reference="20" object_id="_1488"> <id>1677</id> <edge_type>1</edge_type> <source_obj>261</source_obj> <sink_obj>286</sink_obj> </item> <item class_id_reference="20" object_id="_1489"> <id>1678</id> <edge_type>1</edge_type> <source_obj>279</source_obj> <sink_obj>287</sink_obj> </item> <item class_id_reference="20" object_id="_1490"> <id>1680</id> <edge_type>1</edge_type> <source_obj>285</source_obj> <sink_obj>288</sink_obj> </item> <item class_id_reference="20" object_id="_1491"> <id>1681</id> <edge_type>1</edge_type> <source_obj>863</source_obj> <sink_obj>288</sink_obj> </item> <item class_id_reference="20" object_id="_1492"> <id>1682</id> <edge_type>1</edge_type> <source_obj>904</source_obj> <sink_obj>288</sink_obj> </item> <item class_id_reference="20" object_id="_1493"> <id>1683</id> <edge_type>1</edge_type> <source_obj>288</source_obj> <sink_obj>289</sink_obj> </item> <item class_id_reference="20" object_id="_1494"> <id>1684</id> <edge_type>1</edge_type> <source_obj>283</source_obj> <sink_obj>290</sink_obj> </item> <item class_id_reference="20" object_id="_1495"> <id>1685</id> <edge_type>1</edge_type> <source_obj>282</source_obj> <sink_obj>290</sink_obj> </item> <item class_id_reference="20" object_id="_1496"> <id>1686</id> <edge_type>1</edge_type> <source_obj>290</source_obj> <sink_obj>291</sink_obj> </item> <item class_id_reference="20" object_id="_1497"> <id>1687</id> <edge_type>1</edge_type> <source_obj>289</source_obj> <sink_obj>291</sink_obj> </item> <item class_id_reference="20" object_id="_1498"> <id>1689</id> <edge_type>1</edge_type> <source_obj>284</source_obj> <sink_obj>292</sink_obj> </item> <item class_id_reference="20" object_id="_1499"> <id>1690</id> <edge_type>1</edge_type> <source_obj>863</source_obj> <sink_obj>292</sink_obj> </item> <item class_id_reference="20" object_id="_1500"> <id>1691</id> <edge_type>1</edge_type> <source_obj>504</source_obj> <sink_obj>292</sink_obj> </item> <item class_id_reference="20" object_id="_1501"> <id>1693</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>293</sink_obj> </item> <item class_id_reference="20" object_id="_1502"> <id>1694</id> <edge_type>1</edge_type> <source_obj>799</source_obj> <sink_obj>293</sink_obj> </item> <item class_id_reference="20" object_id="_1503"> <id>1695</id> <edge_type>1</edge_type> <source_obj>607</source_obj> <sink_obj>293</sink_obj> </item> <item class_id_reference="20" object_id="_1504"> <id>1697</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>294</sink_obj> </item> <item class_id_reference="20" object_id="_1505"> <id>1698</id> <edge_type>1</edge_type> <source_obj>809</source_obj> <sink_obj>294</sink_obj> </item> <item class_id_reference="20" object_id="_1506"> <id>1699</id> <edge_type>1</edge_type> <source_obj>623</source_obj> <sink_obj>294</sink_obj> </item> <item class_id_reference="20" object_id="_1507"> <id>1701</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>295</sink_obj> </item> <item class_id_reference="20" object_id="_1508"> <id>1702</id> <edge_type>1</edge_type> <source_obj>819</source_obj> <sink_obj>295</sink_obj> </item> <item class_id_reference="20" object_id="_1509"> <id>1703</id> <edge_type>1</edge_type> <source_obj>639</source_obj> <sink_obj>295</sink_obj> </item> <item class_id_reference="20" object_id="_1510"> <id>1705</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>296</sink_obj> </item> <item class_id_reference="20" object_id="_1511"> <id>1706</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>296</sink_obj> </item> <item class_id_reference="20" object_id="_1512"> <id>1707</id> <edge_type>1</edge_type> <source_obj>655</source_obj> <sink_obj>296</sink_obj> </item> <item class_id_reference="20" object_id="_1513"> <id>1709</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>297</sink_obj> </item> <item class_id_reference="20" object_id="_1514"> <id>1710</id> <edge_type>1</edge_type> <source_obj>839</source_obj> <sink_obj>297</sink_obj> </item> <item class_id_reference="20" object_id="_1515"> <id>1711</id> <edge_type>1</edge_type> <source_obj>671</source_obj> <sink_obj>297</sink_obj> </item> <item class_id_reference="20" object_id="_1516"> <id>1713</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>298</sink_obj> </item> <item class_id_reference="20" object_id="_1517"> <id>1714</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>298</sink_obj> </item> <item class_id_reference="20" object_id="_1518"> <id>1715</id> <edge_type>1</edge_type> <source_obj>686</source_obj> <sink_obj>298</sink_obj> </item> <item class_id_reference="20" object_id="_1519"> <id>1717</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>299</sink_obj> </item> <item class_id_reference="20" object_id="_1520"> <id>1718</id> <edge_type>1</edge_type> <source_obj>858</source_obj> <sink_obj>299</sink_obj> </item> <item class_id_reference="20" object_id="_1521"> <id>1719</id> <edge_type>1</edge_type> <source_obj>701</source_obj> <sink_obj>299</sink_obj> </item> <item class_id_reference="20" object_id="_1522"> <id>1720</id> <edge_type>1</edge_type> <source_obj>291</source_obj> <sink_obj>300</sink_obj> </item> <item class_id_reference="20" object_id="_1523"> <id>1722</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1524"> <id>1723</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1525"> <id>1724</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1526"> <id>1725</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1527"> <id>1726</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1528"> <id>1727</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1529"> <id>1728</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1530"> <id>1729</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1531"> <id>1730</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1532"> <id>1731</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1533"> <id>1732</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1534"> <id>1733</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1535"> <id>1734</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1536"> <id>1735</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1537"> <id>1736</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>301</sink_obj> </item> <item class_id_reference="20" object_id="_1538"> <id>1737</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>302</sink_obj> </item> <item class_id_reference="20" object_id="_1539"> <id>1739</id> <edge_type>1</edge_type> <source_obj>293</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1540"> <id>1740</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1541"> <id>1741</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1542"> <id>1742</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1543"> <id>1743</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1544"> <id>1744</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1545"> <id>1745</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1546"> <id>1746</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1547"> <id>1747</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1548"> <id>1748</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1549"> <id>1749</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1550"> <id>1750</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1551"> <id>1751</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>303</sink_obj> </item> <item class_id_reference="20" object_id="_1552"> <id>1752</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>304</sink_obj> </item> <item class_id_reference="20" object_id="_1553"> <id>1753</id> <edge_type>1</edge_type> <source_obj>303</source_obj> <sink_obj>305</sink_obj> </item> <item class_id_reference="20" object_id="_1554"> <id>1754</id> <edge_type>1</edge_type> <source_obj>292</source_obj> <sink_obj>306</sink_obj> </item> <item class_id_reference="20" object_id="_1555"> <id>1755</id> <edge_type>1</edge_type> <source_obj>286</source_obj> <sink_obj>306</sink_obj> </item> <item class_id_reference="20" object_id="_1556"> <id>1756</id> <edge_type>1</edge_type> <source_obj>287</source_obj> <sink_obj>307</sink_obj> </item> <item class_id_reference="20" object_id="_1557"> <id>1757</id> <edge_type>1</edge_type> <source_obj>306</source_obj> <sink_obj>307</sink_obj> </item> <item class_id_reference="20" object_id="_1558"> <id>1759</id> <edge_type>1</edge_type> <source_obj>1170</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1559"> <id>1760</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1560"> <id>1761</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1561"> <id>1762</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1562"> <id>1763</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1563"> <id>1764</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1564"> <id>1765</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1565"> <id>1766</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1566"> <id>1767</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1567"> <id>1768</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1568"> <id>1769</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1569"> <id>1770</id> <edge_type>1</edge_type> <source_obj>300</source_obj> <sink_obj>308</sink_obj> </item> <item class_id_reference="20" object_id="_1570"> <id>1772</id> <edge_type>1</edge_type> <source_obj>1170</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1571"> <id>1773</id> <edge_type>1</edge_type> <source_obj>294</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1572"> <id>1774</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1573"> <id>1775</id> <edge_type>1</edge_type> <source_obj>295</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1574"> <id>1776</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1575"> <id>1777</id> <edge_type>1</edge_type> <source_obj>296</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1576"> <id>1778</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1577"> <id>1779</id> <edge_type>1</edge_type> <source_obj>297</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1578"> <id>1780</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1579"> <id>1781</id> <edge_type>1</edge_type> <source_obj>298</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1580"> <id>1782</id> <edge_type>1</edge_type> <source_obj>1131</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1581"> <id>1783</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>309</sink_obj> </item> <item class_id_reference="20" object_id="_1582"> <id>1784</id> <edge_type>1</edge_type> <source_obj>304</source_obj> <sink_obj>310</sink_obj> </item> <item class_id_reference="20" object_id="_1583"> <id>1785</id> <edge_type>1</edge_type> <source_obj>301</source_obj> <sink_obj>310</sink_obj> </item> <item class_id_reference="20" object_id="_1584"> <id>1786</id> <edge_type>1</edge_type> <source_obj>302</source_obj> <sink_obj>311</sink_obj> </item> <item class_id_reference="20" object_id="_1585"> <id>1787</id> <edge_type>1</edge_type> <source_obj>305</source_obj> <sink_obj>311</sink_obj> </item> <item class_id_reference="20" object_id="_1586"> <id>1788</id> <edge_type>1</edge_type> <source_obj>309</source_obj> <sink_obj>312</sink_obj> </item> <item class_id_reference="20" object_id="_1587"> <id>1789</id> <edge_type>1</edge_type> <source_obj>308</source_obj> <sink_obj>312</sink_obj> </item> <item class_id_reference="20" object_id="_1588"> <id>1791</id> <edge_type>1</edge_type> <source_obj>311</source_obj> <sink_obj>313</sink_obj> </item> <item class_id_reference="20" object_id="_1589"> <id>1792</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>313</sink_obj> </item> <item class_id_reference="20" object_id="_1590"> <id>1793</id> <edge_type>1</edge_type> <source_obj>794</source_obj> <sink_obj>313</sink_obj> </item> <item class_id_reference="20" object_id="_1591"> <id>1794</id> <edge_type>1</edge_type> <source_obj>313</source_obj> <sink_obj>314</sink_obj> </item> <item class_id_reference="20" object_id="_1592"> <id>1795</id> <edge_type>1</edge_type> <source_obj>312</source_obj> <sink_obj>315</sink_obj> </item> <item class_id_reference="20" object_id="_1593"> <id>1796</id> <edge_type>1</edge_type> <source_obj>314</source_obj> <sink_obj>315</sink_obj> </item> <item class_id_reference="20" object_id="_1594"> <id>1797</id> <edge_type>1</edge_type> <source_obj>307</source_obj> <sink_obj>316</sink_obj> </item> <item class_id_reference="20" object_id="_1595"> <id>1799</id> <edge_type>1</edge_type> <source_obj>1170</source_obj> <sink_obj>317</sink_obj> </item> <item class_id_reference="20" object_id="_1596"> <id>1800</id> <edge_type>1</edge_type> <source_obj>299</source_obj> <sink_obj>317</sink_obj> </item> <item class_id_reference="20" object_id="_1597"> <id>1802</id> <edge_type>1</edge_type> <source_obj>315</source_obj> <sink_obj>318</sink_obj> </item> <item class_id_reference="20" object_id="_1598"> <id>1803</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>318</sink_obj> </item> <item class_id_reference="20" object_id="_1599"> <id>1804</id> <edge_type>1</edge_type> <source_obj>934</source_obj> <sink_obj>318</sink_obj> </item> <item class_id_reference="20" object_id="_1600"> <id>1806</id> <edge_type>1</edge_type> <source_obj>310</source_obj> <sink_obj>319</sink_obj> </item> <item class_id_reference="20" object_id="_1601"> <id>1807</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>319</sink_obj> </item> <item class_id_reference="20" object_id="_1602"> <id>1808</id> <edge_type>1</edge_type> <source_obj>954</source_obj> <sink_obj>319</sink_obj> </item> <item class_id_reference="20" object_id="_1603"> <id>1809</id> <edge_type>1</edge_type> <source_obj>319</source_obj> <sink_obj>320</sink_obj> </item> <item class_id_reference="20" object_id="_1604"> <id>1810</id> <edge_type>1</edge_type> <source_obj>318</source_obj> <sink_obj>320</sink_obj> </item> <item class_id_reference="20" object_id="_1605"> <id>1811</id> <edge_type>1</edge_type> <source_obj>317</source_obj> <sink_obj>321</sink_obj> </item> <item class_id_reference="20" object_id="_1606"> <id>1812</id> <edge_type>1</edge_type> <source_obj>316</source_obj> <sink_obj>321</sink_obj> </item> <item class_id_reference="20" object_id="_1607"> <id>1813</id> <edge_type>1</edge_type> <source_obj>320</source_obj> <sink_obj>322</sink_obj> </item> <item class_id_reference="20" object_id="_1608"> <id>1814</id> <edge_type>1</edge_type> <source_obj>321</source_obj> <sink_obj>322</sink_obj> </item> <item class_id_reference="20" object_id="_1609"> <id>1816</id> <edge_type>1</edge_type> <source_obj>322</source_obj> <sink_obj>323</sink_obj> </item> <item class_id_reference="20" object_id="_1610"> <id>1817</id> <edge_type>1</edge_type> <source_obj>725</source_obj> <sink_obj>323</sink_obj> </item> <item class_id_reference="20" object_id="_1611"> <id>1818</id> <edge_type>1</edge_type> <source_obj>323</source_obj> <sink_obj>324</sink_obj> </item> <item class_id_reference="20" object_id="_1612"> <id>1819</id> <edge_type>1</edge_type> <source_obj>1236</source_obj> <sink_obj>325</sink_obj> </item> <item class_id_reference="20" object_id="_1613"> <id>1820</id> <edge_type>1</edge_type> <source_obj>324</source_obj> <sink_obj>325</sink_obj> </item> <item class_id_reference="20" object_id="_1614"> <id>1821</id> <edge_type>1</edge_type> <source_obj>325</source_obj> <sink_obj>326</sink_obj> </item> <item class_id_reference="20" object_id="_1615"> <id>1822</id> <edge_type>1</edge_type> <source_obj>202</source_obj> <sink_obj>327</sink_obj> </item> <item class_id_reference="20" object_id="_1616"> <id>1823</id> <edge_type>1</edge_type> <source_obj>326</source_obj> <sink_obj>327</sink_obj> </item> <item class_id_reference="20" object_id="_1617"> <id>1824</id> <edge_type>1</edge_type> <source_obj>327</source_obj> <sink_obj>328</sink_obj> </item> <item class_id_reference="20" object_id="_1618"> <id>1825</id> <edge_type>1</edge_type> <source_obj>328</source_obj> <sink_obj>329</sink_obj> </item> <item class_id_reference="20" object_id="_1619"> <id>1826</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>329</sink_obj> </item> <item class_id_reference="20" object_id="_1620"> <id>1828</id> <edge_type>1</edge_type> <source_obj>1827</source_obj> <sink_obj>331</sink_obj> </item> <item class_id_reference="20" object_id="_1621"> <id>1829</id> <edge_type>1</edge_type> <source_obj>65</source_obj> <sink_obj>331</sink_obj> </item> <item class_id_reference="20" object_id="_1622"> <id>1830</id> <edge_type>2</edge_type> <source_obj>68</source_obj> <sink_obj>332</sink_obj> </item> <item class_id_reference="20" object_id="_1623"> <id>1833</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>334</sink_obj> </item> <item class_id_reference="20" object_id="_1624"> <id>1834</id> <edge_type>1</edge_type> <source_obj>978</source_obj> <sink_obj>334</sink_obj> </item> <item class_id_reference="20" object_id="_1625"> <id>1835</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>334</sink_obj> </item> <item class_id_reference="20" object_id="_1626"> <id>1836</id> <edge_type>1</edge_type> <source_obj>334</source_obj> <sink_obj>335</sink_obj> </item> <item class_id_reference="20" object_id="_1627"> <id>1837</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>336</sink_obj> </item> <item class_id_reference="20" object_id="_1628"> <id>1838</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>336</sink_obj> </item> <item class_id_reference="20" object_id="_1629"> <id>1839</id> <edge_type>1</edge_type> <source_obj>335</source_obj> <sink_obj>336</sink_obj> </item> <item class_id_reference="20" object_id="_1630"> <id>1840</id> <edge_type>1</edge_type> <source_obj>336</source_obj> <sink_obj>337</sink_obj> </item> <item class_id_reference="20" object_id="_1631"> <id>1841</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>338</sink_obj> </item> <item class_id_reference="20" object_id="_1632"> <id>1842</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>339</sink_obj> </item> <item class_id_reference="20" object_id="_1633"> <id>1843</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>340</sink_obj> </item> <item class_id_reference="20" object_id="_1634"> <id>1844</id> <edge_type>1</edge_type> <source_obj>870</source_obj> <sink_obj>340</sink_obj> </item> <item class_id_reference="20" object_id="_1635"> <id>1847</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>341</sink_obj> </item> <item class_id_reference="20" object_id="_1636"> <id>1848</id> <edge_type>1</edge_type> <source_obj>720</source_obj> <sink_obj>341</sink_obj> </item> <item class_id_reference="20" object_id="_1637"> <id>1849</id> <edge_type>1</edge_type> <source_obj>569</source_obj> <sink_obj>341</sink_obj> </item> <item class_id_reference="20" object_id="_1638"> <id>1850</id> <edge_type>1</edge_type> <source_obj>341</source_obj> <sink_obj>342</sink_obj> </item> <item class_id_reference="20" object_id="_1639"> <id>1851</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>343</sink_obj> </item> <item class_id_reference="20" object_id="_1640"> <id>1852</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>343</sink_obj> </item> <item class_id_reference="20" object_id="_1641"> <id>1853</id> <edge_type>1</edge_type> <source_obj>342</source_obj> <sink_obj>343</sink_obj> </item> <item class_id_reference="20" object_id="_1642"> <id>1854</id> <edge_type>1</edge_type> <source_obj>343</source_obj> <sink_obj>344</sink_obj> </item> <item class_id_reference="20" object_id="_1643"> <id>1855</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>345</sink_obj> </item> <item class_id_reference="20" object_id="_1644"> <id>1856</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>346</sink_obj> </item> <item class_id_reference="20" object_id="_1645"> <id>1858</id> <edge_type>1</edge_type> <source_obj>1857</source_obj> <sink_obj>346</sink_obj> </item> <item class_id_reference="20" object_id="_1646"> <id>1859</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>347</sink_obj> </item> <item class_id_reference="20" object_id="_1647"> <id>1862</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>348</sink_obj> </item> <item class_id_reference="20" object_id="_1648"> <id>1863</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>348</sink_obj> </item> <item class_id_reference="20" object_id="_1649"> <id>1864</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>348</sink_obj> </item> <item class_id_reference="20" object_id="_1650"> <id>1866</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>349</sink_obj> </item> <item class_id_reference="20" object_id="_1651"> <id>1867</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>349</sink_obj> </item> <item class_id_reference="20" object_id="_1652"> <id>1868</id> <edge_type>1</edge_type> <source_obj>663</source_obj> <sink_obj>349</sink_obj> </item> <item class_id_reference="20" object_id="_1653"> <id>1869</id> <edge_type>1</edge_type> <source_obj>339</source_obj> <sink_obj>350</sink_obj> </item> <item class_id_reference="20" object_id="_1654"> <id>1870</id> <edge_type>1</edge_type> <source_obj>454</source_obj> <sink_obj>350</sink_obj> </item> <item class_id_reference="20" object_id="_1655"> <id>1871</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>351</sink_obj> </item> <item class_id_reference="20" object_id="_1656"> <id>1872</id> <edge_type>1</edge_type> <source_obj>348</source_obj> <sink_obj>351</sink_obj> </item> <item class_id_reference="20" object_id="_1657"> <id>1873</id> <edge_type>1</edge_type> <source_obj>347</source_obj> <sink_obj>351</sink_obj> </item> <item class_id_reference="20" object_id="_1658"> <id>1874</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>352</sink_obj> </item> <item class_id_reference="20" object_id="_1659"> <id>1877</id> <edge_type>1</edge_type> <source_obj>352</source_obj> <sink_obj>353</sink_obj> </item> <item class_id_reference="20" object_id="_1660"> <id>1879</id> <edge_type>1</edge_type> <source_obj>1878</source_obj> <sink_obj>353</sink_obj> </item> <item class_id_reference="20" object_id="_1661"> <id>1880</id> <edge_type>1</edge_type> <source_obj>353</source_obj> <sink_obj>354</sink_obj> </item> <item class_id_reference="20" object_id="_1662"> <id>1881</id> <edge_type>1</edge_type> <source_obj>351</source_obj> <sink_obj>355</sink_obj> </item> <item class_id_reference="20" object_id="_1663"> <id>1882</id> <edge_type>1</edge_type> <source_obj>354</source_obj> <sink_obj>356</sink_obj> </item> <item class_id_reference="20" object_id="_1664"> <id>1883</id> <edge_type>1</edge_type> <source_obj>355</source_obj> <sink_obj>356</sink_obj> </item> <item class_id_reference="20" object_id="_1665"> <id>1884</id> <edge_type>1</edge_type> <source_obj>356</source_obj> <sink_obj>357</sink_obj> </item> <item class_id_reference="20" object_id="_1666"> <id>1886</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>358</sink_obj> </item> <item class_id_reference="20" object_id="_1667"> <id>1887</id> <edge_type>1</edge_type> <source_obj>809</source_obj> <sink_obj>358</sink_obj> </item> <item class_id_reference="20" object_id="_1668"> <id>1888</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>358</sink_obj> </item> <item class_id_reference="20" object_id="_1669"> <id>1890</id> <edge_type>1</edge_type> <source_obj>344</source_obj> <sink_obj>359</sink_obj> </item> <item class_id_reference="20" object_id="_1670"> <id>1891</id> <edge_type>1</edge_type> <source_obj>506</source_obj> <sink_obj>359</sink_obj> </item> <item class_id_reference="20" object_id="_1671"> <id>1892</id> <edge_type>1</edge_type> <source_obj>663</source_obj> <sink_obj>359</sink_obj> </item> <item class_id_reference="20" object_id="_1672"> <id>1893</id> <edge_type>1</edge_type> <source_obj>338</source_obj> <sink_obj>360</sink_obj> </item> <item class_id_reference="20" object_id="_1673"> <id>1894</id> <edge_type>1</edge_type> <source_obj>358</source_obj> <sink_obj>360</sink_obj> </item> <item class_id_reference="20" object_id="_1674"> <id>1895</id> <edge_type>1</edge_type> <source_obj>359</source_obj> <sink_obj>360</sink_obj> </item> <item class_id_reference="20" object_id="_1675"> <id>1898</id> <edge_type>1</edge_type> <source_obj>360</source_obj> <sink_obj>361</sink_obj> </item> <item class_id_reference="20" object_id="_1676"> <id>1900</id> <edge_type>1</edge_type> <source_obj>1899</source_obj> <sink_obj>361</sink_obj> </item> <item class_id_reference="20" object_id="_1677"> <id>1901</id> <edge_type>1</edge_type> <source_obj>361</source_obj> <sink_obj>362</sink_obj> </item> <item class_id_reference="20" object_id="_1678"> <id>1902</id> <edge_type>1</edge_type> <source_obj>362</source_obj> <sink_obj>363</sink_obj> </item> <item class_id_reference="20" object_id="_1679"> <id>1903</id> <edge_type>1</edge_type> <source_obj>357</source_obj> <sink_obj>363</sink_obj> </item> <item class_id_reference="20" object_id="_1680"> <id>1906</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>364</sink_obj> </item> <item class_id_reference="20" object_id="_1681"> <id>1907</id> <edge_type>1</edge_type> <source_obj>964</source_obj> <sink_obj>364</sink_obj> </item> <item class_id_reference="20" object_id="_1682"> <id>1908</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>364</sink_obj> </item> <item class_id_reference="20" object_id="_1683"> <id>1909</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>365</sink_obj> </item> <item class_id_reference="20" object_id="_1684"> <id>1910</id> <edge_type>1</edge_type> <source_obj>473</source_obj> <sink_obj>365</sink_obj> </item> <item class_id_reference="20" object_id="_1685"> <id>1912</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>366</sink_obj> </item> <item class_id_reference="20" object_id="_1686"> <id>1913</id> <edge_type>1</edge_type> <source_obj>829</source_obj> <sink_obj>366</sink_obj> </item> <item class_id_reference="20" object_id="_1687"> <id>1914</id> <edge_type>1</edge_type> <source_obj>631</source_obj> <sink_obj>366</sink_obj> </item> <item class_id_reference="20" object_id="_1688"> <id>1916</id> <edge_type>1</edge_type> <source_obj>337</source_obj> <sink_obj>367</sink_obj> </item> <item class_id_reference="20" object_id="_1689"> <id>1917</id> <edge_type>1</edge_type> <source_obj>809</source_obj> <sink_obj>367</sink_obj> </item> <item class_id_reference="20" object_id="_1690"> <id>1918</id> <edge_type>1</edge_type> <source_obj>599</source_obj> <sink_obj>367</sink_obj> </item> <item class_id_reference="20" object_id="_1691"> <id>1919</id> <edge_type>1</edge_type> <source_obj>364</source_obj> <sink_obj>368</sink_obj> </item> <item class_id_reference="20" object_id="_1692"> <id>1922</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>369</sink_obj> </item> <item class_id_reference="20" object_id="_1693"> <id>1924</id> <edge_type>1</edge_type> <source_obj>1923</source_obj> <sink_obj>369</sink_obj> </item> <item class_id_reference="20" object_id="_1694"> <id>1925</id> <edge_type>1</edge_type> <source_obj>368</source_obj> <sink_obj>370</sink_obj> </item> <item class_id_reference="20" object_id="_1695"> <id>1926</id> <edge_type>1</edge_type> <source_obj>369</source_obj> <sink_obj>370</sink_obj> </item> <item class_id_reference="20" object_id="_1696"> <id>1927</id> <edge_type>1</edge_type> <source_obj>340</source_obj> <sink_obj>371</sink_obj> </item> <item class_id_reference="20" object_id="_1697"> <id>1928</id> <edge_type>1</edge_type> <source_obj>459</source_obj> <sink_obj>371</sink_obj> </item> <item class_id_reference="20" object_id="_1698"> <id>1929</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>372</sink_obj> </item> <item class_id_reference="20" object_id="_1699"> <id>1930</id> <edge_type>1</edge_type> <source_obj>371</source_obj> <sink_obj>372</sink_obj> </item> <item class_id_reference="20" object_id="_1700"> <id>1931</id> <edge_type>1</edge_type> <source_obj>340</source_obj> <sink_obj>373</sink_obj> </item> <item class_id_reference="20" object_id="_1701"> <id>1932</id> <edge_type>1</edge_type> <source_obj>346</source_obj> <sink_obj>373</sink_obj> </item> <item class_id_reference="20" object_id="_1702"> <id>1933</id> <edge_type>1</edge_type> <source_obj>373</source_obj> <sink_obj>374</sink_obj> </item> <item class_id_reference="20" object_id="_1703"> <id>1934</id> <edge_type>1</edge_type> <source_obj>459</source_obj> <sink_obj>374</sink_obj> </item> <item class_id_reference="20" object_id="_1704"> <id>1935</id> <edge_type>1</edge_type> <source_obj>350</source_obj> <sink_obj>375</sink_obj> </item> <item class_id_reference="20" object_id="_1705"> <id>1936</id> <edge_type>1</edge_type> <source_obj>374</source_obj> <sink_obj>375</sink_obj> </item> <item class_id_reference="20" object_id="_1706"> <id>1937</id> <edge_type>1</edge_type> <source_obj>375</source_obj> <sink_obj>376</sink_obj> </item> <item class_id_reference="20" object_id="_1707"> <id>1938</id> <edge_type>1</edge_type> <source_obj>366</source_obj> <sink_obj>376</sink_obj> </item> <item class_id_reference="20" object_id="_1708"> <id>1939</id> <edge_type>1</edge_type> <source_obj>349</source_obj> <sink_obj>376</sink_obj> </item> <item class_id_reference="20" object_id="_1709"> <id>1940</id> <edge_type>1</edge_type> <source_obj>375</source_obj> <sink_obj>377</sink_obj> </item> <item class_id_reference="20" object_id="_1710"> <id>1941</id> <edge_type>1</edge_type> <source_obj>372</source_obj> <sink_obj>377</sink_obj> </item> <item class_id_reference="20" object_id="_1711"> <id>1942</id> <edge_type>1</edge_type> <source_obj>340</source_obj> <sink_obj>378</sink_obj> </item> <item class_id_reference="20" object_id="_1712"> <id>1943</id> <edge_type>1</edge_type> <source_obj>345</source_obj> <sink_obj>378</sink_obj> </item> <item class_id_reference="20" object_id="_1713"> <id>1944</id> <edge_type>1</edge_type> <source_obj>367</source_obj> <sink_obj>378</sink_obj> </item> <item class_id_reference="20" object_id="_1714"> <id>1945</id> <edge_type>1</edge_type> <source_obj>377</source_obj> <sink_obj>379</sink_obj> </item> <item class_id_reference="20" object_id="_1715"> <id>1946</id> <edge_type>1</edge_type> <source_obj>376</source_obj> <sink_obj>379</sink_obj> </item> <item class_id_reference="20" object_id="_1716"> <id>1947</id> <edge_type>1</edge_type> <source_obj>378</source_obj> <sink_obj>379</sink_obj> </item> <item class_id_reference="20" object_id="_1717"> <id>1948</id> <edge_type>1</edge_type> <source_obj>43</source_obj> <sink_obj>380</sink_obj> </item> <item class_id_reference="20" object_id="_1718"> <id>1949</id> <edge_type>1</edge_type> <source_obj>64</source_obj> <sink_obj>381</sink_obj> </item> <item class_id_reference="20" object_id="_1719"> <id>1950</id> <edge_type>1</edge_type> <source_obj>379</source_obj> <sink_obj>381</sink_obj> </item> <item class_id_reference="20" object_id="_1720"> <id>1951</id> <edge_type>1</edge_type> <source_obj>381</source_obj> <sink_obj>382</sink_obj> </item> <item class_id_reference="20" object_id="_1721"> <id>1954</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>383</sink_obj> </item> <item class_id_reference="20" object_id="_1722"> <id>1955</id> <edge_type>1</edge_type> <source_obj>380</source_obj> <sink_obj>383</sink_obj> </item> <item class_id_reference="20" object_id="_1723"> <id>1956</id> <edge_type>1</edge_type> <source_obj>382</source_obj> <sink_obj>383</sink_obj> </item> <item class_id_reference="20" object_id="_1724"> <id>1957</id> <edge_type>1</edge_type> <source_obj>29</source_obj> <sink_obj>384</sink_obj> </item> <item class_id_reference="20" object_id="_1725"> <id>1960</id> <edge_type>1</edge_type> <source_obj>363</source_obj> <sink_obj>385</sink_obj> </item> <item class_id_reference="20" object_id="_1726"> <id>1961</id> <edge_type>1</edge_type> <source_obj>844</source_obj> <sink_obj>385</sink_obj> </item> <item class_id_reference="20" object_id="_1727"> <id>1962</id> <edge_type>1</edge_type> <source_obj>659</source_obj> <sink_obj>385</sink_obj> </item> <item class_id_reference="20" object_id="_1728"> <id>1963</id> <edge_type>1</edge_type> <source_obj>385</source_obj> <sink_obj>386</sink_obj> </item> <item class_id_reference="20" object_id="_1729"> <id>1964</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>387</sink_obj> </item> <item class_id_reference="20" object_id="_1730"> <id>1965</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>387</sink_obj> </item> <item class_id_reference="20" object_id="_1731"> <id>1966</id> <edge_type>1</edge_type> <source_obj>386</source_obj> <sink_obj>387</sink_obj> </item> <item class_id_reference="20" object_id="_1732"> <id>1967</id> <edge_type>1</edge_type> <source_obj>365</source_obj> <sink_obj>388</sink_obj> </item> <item class_id_reference="20" object_id="_1733"> <id>1968</id> <edge_type>1</edge_type> <source_obj>370</source_obj> <sink_obj>388</sink_obj> </item> <item class_id_reference="20" object_id="_1734"> <id>1969</id> <edge_type>1</edge_type> <source_obj>388</source_obj> <sink_obj>389</sink_obj> </item> <item class_id_reference="20" object_id="_1735"> <id>1970</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>389</sink_obj> </item> <item class_id_reference="20" object_id="_1736"> <id>1971</id> <edge_type>1</edge_type> <source_obj>389</source_obj> <sink_obj>390</sink_obj> </item> <item class_id_reference="20" object_id="_1737"> <id>1972</id> <edge_type>1</edge_type> <source_obj>387</source_obj> <sink_obj>390</sink_obj> </item> <item class_id_reference="20" object_id="_1738"> <id>1973</id> <edge_type>1</edge_type> <source_obj>27</source_obj> <sink_obj>390</sink_obj> </item> <item class_id_reference="20" object_id="_1739"> <id>1974</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>391</sink_obj> </item> <item class_id_reference="20" object_id="_1740"> <id>1975</id> <edge_type>1</edge_type> <source_obj>383</source_obj> <sink_obj>391</sink_obj> </item> <item class_id_reference="20" object_id="_1741"> <id>1976</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>391</sink_obj> </item> <item class_id_reference="20" object_id="_1742"> <id>1977</id> <edge_type>1</edge_type> <source_obj>389</source_obj> <sink_obj>392</sink_obj> </item> <item class_id_reference="20" object_id="_1743"> <id>1978</id> <edge_type>1</edge_type> <source_obj>391</source_obj> <sink_obj>392</sink_obj> </item> <item class_id_reference="20" object_id="_1744"> <id>1979</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>392</sink_obj> </item> <item class_id_reference="20" object_id="_1745"> <id>1980</id> <edge_type>1</edge_type> <source_obj>20</source_obj> <sink_obj>393</sink_obj> </item> <item class_id_reference="20" object_id="_1746"> <id>1981</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>393</sink_obj> </item> <item class_id_reference="20" object_id="_1747"> <id>1982</id> <edge_type>1</edge_type> <source_obj>384</source_obj> <sink_obj>393</sink_obj> </item> <item class_id_reference="20" object_id="_1748"> <id>1983</id> <edge_type>1</edge_type> <source_obj>389</source_obj> <sink_obj>394</sink_obj> </item> <item class_id_reference="20" object_id="_1749"> <id>1984</id> <edge_type>1</edge_type> <source_obj>393</source_obj> <sink_obj>394</sink_obj> </item> <item class_id_reference="20" object_id="_1750"> <id>1985</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>394</sink_obj> </item> <item class_id_reference="20" object_id="_1751"> <id>1986</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>395</sink_obj> </item> <item class_id_reference="20" object_id="_1752"> <id>1987</id> <edge_type>2</edge_type> <source_obj>398</source_obj> <sink_obj>395</sink_obj> </item> <item class_id_reference="20" object_id="_1753"> <id>1988</id> <edge_type>2</edge_type> <source_obj>408</source_obj> <sink_obj>395</sink_obj> </item> <item class_id_reference="20" object_id="_1754"> <id>1989</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>418</sink_obj> </item> <item class_id_reference="20" object_id="_1755"> <id>1990</id> <edge_type>1</edge_type> <source_obj>19</source_obj> <sink_obj>420</sink_obj> </item> <item class_id_reference="20" object_id="_1756"> <id>1992</id> <edge_type>1</edge_type> <source_obj>1991</source_obj> <sink_obj>420</sink_obj> </item> <item class_id_reference="20" object_id="_1757"> <id>1993</id> <edge_type>1</edge_type> <source_obj>420</source_obj> <sink_obj>421</sink_obj> </item> <item class_id_reference="20" object_id="_1758"> <id>1994</id> <edge_type>2</edge_type> <source_obj>437</source_obj> <sink_obj>421</sink_obj> </item> <item class_id_reference="20" object_id="_1759"> <id>1995</id> <edge_type>2</edge_type> <source_obj>427</source_obj> <sink_obj>421</sink_obj> </item> <item class_id_reference="20" object_id="_1760"> <id>1999</id> <edge_type>1</edge_type> <source_obj>1998</source_obj> <sink_obj>423</sink_obj> </item> <item class_id_reference="20" object_id="_1761"> <id>2000</id> <edge_type>1</edge_type> <source_obj>28</source_obj> <sink_obj>423</sink_obj> </item> <item class_id_reference="20" object_id="_1762"> <id>2001</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>424</sink_obj> </item> <item class_id_reference="20" object_id="_1763"> <id>2002</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>424</sink_obj> </item> <item class_id_reference="20" object_id="_1764"> <id>2003</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>424</sink_obj> </item> <item class_id_reference="20" object_id="_1765"> <id>2004</id> <edge_type>1</edge_type> <source_obj>6</source_obj> <sink_obj>425</sink_obj> </item> <item class_id_reference="20" object_id="_1766"> <id>2005</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>425</sink_obj> </item> <item class_id_reference="20" object_id="_1767"> <id>2006</id> <edge_type>1</edge_type> <source_obj>515</source_obj> <sink_obj>425</sink_obj> </item> <item class_id_reference="20" object_id="_1768"> <id>2007</id> <edge_type>1</edge_type> <source_obj>17</source_obj> <sink_obj>426</sink_obj> </item> <item class_id_reference="20" object_id="_1769"> <id>2008</id> <edge_type>2</edge_type> <source_obj>430</source_obj> <sink_obj>426</sink_obj> </item> <item class_id_reference="20" object_id="_1770"> <id>2009</id> <edge_type>2</edge_type> <source_obj>433</source_obj> <sink_obj>426</sink_obj> </item> <item class_id_reference="20" object_id="_1771"> <id>2010</id> <edge_type>2</edge_type> <source_obj>437</source_obj> <sink_obj>434</sink_obj> </item> <item class_id_reference="20" object_id="_1772"> <id>2011</id> <edge_type>1</edge_type> <source_obj>423</source_obj> <sink_obj>428</sink_obj> </item> <item class_id_reference="20" object_id="_1773"> <id>2012</id> <edge_type>1</edge_type> <source_obj>424</source_obj> <sink_obj>428</sink_obj> </item> <item class_id_reference="20" object_id="_1774"> <id>2013</id> <edge_type>2</edge_type> <source_obj>435</source_obj> <sink_obj>429</sink_obj> </item> <item class_id_reference="20" object_id="_1775"> <id>2014</id> <edge_type>1</edge_type> <source_obj>423</source_obj> <sink_obj>431</sink_obj> </item> <item class_id_reference="20" object_id="_1776"> <id>2015</id> <edge_type>1</edge_type> <source_obj>425</source_obj> <sink_obj>431</sink_obj> </item> <item class_id_reference="20" object_id="_1777"> <id>2016</id> <edge_type>2</edge_type> <source_obj>435</source_obj> <sink_obj>432</sink_obj> </item> <item class_id_reference="20" object_id="_1778"> <id>2017</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>397</sink_obj> </item> <item class_id_reference="20" object_id="_1779"> <id>2018</id> <edge_type>2</edge_type> <source_obj>401</source_obj> <sink_obj>397</sink_obj> </item> <item class_id_reference="20" object_id="_1780"> <id>2019</id> <edge_type>2</edge_type> <source_obj>404</source_obj> <sink_obj>397</sink_obj> </item> <item class_id_reference="20" object_id="_1781"> <id>2020</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>405</sink_obj> </item> <item class_id_reference="20" object_id="_1782"> <id>2021</id> <edge_type>1</edge_type> <source_obj>46</source_obj> <sink_obj>407</sink_obj> </item> <item class_id_reference="20" object_id="_1783"> <id>2022</id> <edge_type>2</edge_type> <source_obj>411</source_obj> <sink_obj>407</sink_obj> </item> <item class_id_reference="20" object_id="_1784"> <id>2023</id> <edge_type>2</edge_type> <source_obj>414</source_obj> <sink_obj>407</sink_obj> </item> <item class_id_reference="20" object_id="_1785"> <id>2024</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>415</sink_obj> </item> <item class_id_reference="20" object_id="_1786"> <id>2025</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>399</sink_obj> </item> <item class_id_reference="20" object_id="_1787"> <id>2026</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>399</sink_obj> </item> <item class_id_reference="20" object_id="_1788"> <id>2027</id> <edge_type>2</edge_type> <source_obj>406</source_obj> <sink_obj>400</sink_obj> </item> <item class_id_reference="20" object_id="_1789"> <id>2028</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>402</sink_obj> </item> <item class_id_reference="20" object_id="_1790"> <id>2029</id> <edge_type>1</edge_type> <source_obj>48</source_obj> <sink_obj>402</sink_obj> </item> <item class_id_reference="20" object_id="_1791"> <id>2030</id> <edge_type>2</edge_type> <source_obj>406</source_obj> <sink_obj>403</sink_obj> </item> <item class_id_reference="20" object_id="_1792"> <id>2031</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>409</sink_obj> </item> <item class_id_reference="20" object_id="_1793"> <id>2032</id> <edge_type>1</edge_type> <source_obj>49</source_obj> <sink_obj>409</sink_obj> </item> <item class_id_reference="20" object_id="_1794"> <id>2033</id> <edge_type>2</edge_type> <source_obj>416</source_obj> <sink_obj>410</sink_obj> </item> <item class_id_reference="20" object_id="_1795"> <id>2034</id> <edge_type>1</edge_type> <source_obj>392</source_obj> <sink_obj>412</sink_obj> </item> <item class_id_reference="20" object_id="_1796"> <id>2035</id> <edge_type>1</edge_type> <source_obj>50</source_obj> <sink_obj>412</sink_obj> </item> <item class_id_reference="20" object_id="_1797"> <id>2036</id> <edge_type>2</edge_type> <source_obj>416</source_obj> <sink_obj>413</sink_obj> </item> <item class_id_reference="20" object_id="_1798"> <id>2077</id> <edge_type>2</edge_type> <source_obj>26</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_1799"> <id>2078</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>422</sink_obj> </item> <item class_id_reference="20" object_id="_1800"> <id>2079</id> <edge_type>2</edge_type> <source_obj>35</source_obj> <sink_obj>63</sink_obj> </item> <item class_id_reference="20" object_id="_1801"> <id>2080</id> <edge_type>2</edge_type> <source_obj>63</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_1802"> <id>2081</id> <edge_type>2</edge_type> <source_obj>68</source_obj> <sink_obj>333</sink_obj> </item> <item class_id_reference="20" object_id="_1803"> <id>2082</id> <edge_type>2</edge_type> <source_obj>68</source_obj> <sink_obj>396</sink_obj> </item> <item class_id_reference="20" object_id="_1804"> <id>2083</id> <edge_type>2</edge_type> <source_obj>333</source_obj> <sink_obj>68</sink_obj> </item> <item class_id_reference="20" object_id="_1805"> <id>2084</id> <edge_type>2</edge_type> <source_obj>396</source_obj> <sink_obj>408</sink_obj> </item> <item class_id_reference="20" object_id="_1806"> <id>2085</id> <edge_type>2</edge_type> <source_obj>396</source_obj> <sink_obj>398</sink_obj> </item> <item class_id_reference="20" object_id="_1807"> <id>2086</id> <edge_type>2</edge_type> <source_obj>398</source_obj> <sink_obj>404</sink_obj> </item> <item class_id_reference="20" object_id="_1808"> <id>2087</id> <edge_type>2</edge_type> <source_obj>398</source_obj> <sink_obj>401</sink_obj> </item> <item class_id_reference="20" object_id="_1809"> <id>2088</id> <edge_type>2</edge_type> <source_obj>401</source_obj> <sink_obj>406</sink_obj> </item> <item class_id_reference="20" object_id="_1810"> <id>2089</id> <edge_type>2</edge_type> <source_obj>404</source_obj> <sink_obj>406</sink_obj> </item> <item class_id_reference="20" object_id="_1811"> <id>2090</id> <edge_type>2</edge_type> <source_obj>406</source_obj> <sink_obj>419</sink_obj> </item> <item class_id_reference="20" object_id="_1812"> <id>2091</id> <edge_type>2</edge_type> <source_obj>408</source_obj> <sink_obj>414</sink_obj> </item> <item class_id_reference="20" object_id="_1813"> <id>2092</id> <edge_type>2</edge_type> <source_obj>408</source_obj> <sink_obj>411</sink_obj> </item> <item class_id_reference="20" object_id="_1814"> <id>2093</id> <edge_type>2</edge_type> <source_obj>411</source_obj> <sink_obj>416</sink_obj> </item> <item class_id_reference="20" object_id="_1815"> <id>2094</id> <edge_type>2</edge_type> <source_obj>414</source_obj> <sink_obj>416</sink_obj> </item> <item class_id_reference="20" object_id="_1816"> <id>2095</id> <edge_type>2</edge_type> <source_obj>416</source_obj> <sink_obj>419</sink_obj> </item> <item class_id_reference="20" object_id="_1817"> <id>2096</id> <edge_type>2</edge_type> <source_obj>419</source_obj> <sink_obj>35</sink_obj> </item> <item class_id_reference="20" object_id="_1818"> <id>2097</id> <edge_type>2</edge_type> <source_obj>422</source_obj> <sink_obj>427</sink_obj> </item> <item class_id_reference="20" object_id="_1819"> <id>2098</id> <edge_type>2</edge_type> <source_obj>422</source_obj> <sink_obj>437</sink_obj> </item> <item class_id_reference="20" object_id="_1820"> <id>2099</id> <edge_type>2</edge_type> <source_obj>427</source_obj> <sink_obj>433</sink_obj> </item> <item class_id_reference="20" object_id="_1821"> <id>2100</id> <edge_type>2</edge_type> <source_obj>427</source_obj> <sink_obj>430</sink_obj> </item> <item class_id_reference="20" object_id="_1822"> <id>2101</id> <edge_type>2</edge_type> <source_obj>430</source_obj> <sink_obj>435</sink_obj> </item> <item class_id_reference="20" object_id="_1823"> <id>2102</id> <edge_type>2</edge_type> <source_obj>433</source_obj> <sink_obj>435</sink_obj> </item> <item class_id_reference="20" object_id="_1824"> <id>2103</id> <edge_type>2</edge_type> <source_obj>435</source_obj> <sink_obj>437</sink_obj> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>7</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_1825"> <mId>1</mId> <mTag>bin_dense</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>7</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>79</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1826"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>26</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1827"> <mId>3</mId> <mTag>LOOP_DENSE_O</mTag> <mType>1</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>4</item> <item>5</item> <item>6</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>1</mMinTripCount> <mMaxTripCount>1</mMaxTripCount> <mMinLatency>78</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1828"> <mId>4</mId> <mTag>Region 1</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>35</item> <item>63</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>2</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1829"> <mId>5</mId> <mTag>LOOP_DENSE_I</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>68</item> <item>333</item> </basic_blocks> <mII>1</mII> <mDepth>7</mDepth> <mMinTripCount>1</mMinTripCount> <mMaxTripCount>64</mMaxTripCount> <mMinLatency>69</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1830"> <mId>6</mId> <mTag>Region 2</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>10</count> <item_version>0</item_version> <item>396</item> <item>398</item> <item>401</item> <item>404</item> <item>406</item> <item>408</item> <item>411</item> <item>414</item> <item>416</item> <item>419</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>4</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> <item class_id_reference="22" object_id="_1831"> <mId>7</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>6</count> <item_version>0</item_version> <item>422</item> <item>427</item> <item>430</item> <item>433</item> <item>435</item> <item>437</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"></mDfPipe> </item> </cdfg_regions> <fsm class_id="-1"></fsm> <res class_id="-1"></res> <node_label_latency class_id="26" tracking_level="0" version="0"> <count>394</count> <item_version>0</item_version> <item class_id="27" tracking_level="0" version="0"> <first>14</first> <second class_id="28" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>15</first> <second> <first>0</first> <second>0</second> </second> </item> <item> <first>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>27</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>28</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>29</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>30</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>31</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>34</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>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>1</first> <second>0</second> </second> </item> <item> <first>42</first> <second> <first>3</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>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>1</first> <second>0</second> </second> </item> <item> <first>50</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>51</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>52</first> <second> <first>2</first> <second>1</second> </second> </item> <item> <first>53</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>54</first> <second> <first>1</first> <second>1</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>3</first> <second>0</second> </second> </item> <item> <first>58</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>59</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>60</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>61</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>62</first> <second> <first>3</first> <second>0</second> </second> </item> <item> <first>64</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>65</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>66</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>67</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>73</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>74</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>75</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>76</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>77</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>78</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>79</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>80</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>81</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>82</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>83</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>84</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>85</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>86</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>87</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>88</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>89</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>90</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>91</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>92</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>93</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>94</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>95</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>96</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>97</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>98</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>99</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>100</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>101</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>102</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>103</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>104</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>105</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>106</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>107</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>108</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>109</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>110</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>111</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>112</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>113</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>114</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>115</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>116</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>117</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>118</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>119</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>120</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>121</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>122</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>123</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>124</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>125</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>126</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>127</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>128</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>129</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>130</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>131</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>132</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>133</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>134</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>135</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>136</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>137</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>138</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>139</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>140</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>141</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>142</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>143</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>144</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>145</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>146</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>147</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>148</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>149</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>150</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>151</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>152</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>153</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>154</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>155</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>156</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>157</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>158</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>159</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>160</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>161</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>162</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>163</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>164</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>165</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>166</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>167</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>168</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>169</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>170</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>171</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>172</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>173</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>174</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>175</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>176</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>177</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>178</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>179</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>180</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>181</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>182</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>183</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>184</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>185</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>186</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>187</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>188</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>189</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>190</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>191</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>192</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>193</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>194</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>195</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>196</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>197</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>198</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>199</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>200</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>201</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>202</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>203</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>204</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>205</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>206</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>207</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>208</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>209</first> <second> <first>4</first> <second>1</second> </second> </item> <item> <first>210</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>211</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>212</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>213</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>214</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>215</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>216</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>217</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>218</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>219</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>220</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>221</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>222</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>223</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>224</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>225</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>226</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>227</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>228</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>229</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>230</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>231</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>232</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>233</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>234</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>235</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>236</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>237</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>238</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>239</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>240</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>241</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>242</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>243</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>244</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>245</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>246</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>247</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>248</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>249</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>250</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>251</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>252</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>253</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>254</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>255</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>256</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>257</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>258</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>259</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>260</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>261</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>262</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>263</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>264</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>265</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>266</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>267</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>268</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>269</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>270</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>271</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>272</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>273</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>274</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>275</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>276</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>277</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>278</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>279</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>280</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>281</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>282</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>283</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>284</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>285</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>286</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>287</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>288</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>289</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>290</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>291</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>292</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>293</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>294</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>295</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>296</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>297</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>298</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>299</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>300</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>301</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>302</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>303</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>304</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>305</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>306</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>307</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>308</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>309</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>310</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>311</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>312</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>313</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>314</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>315</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>316</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>317</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>318</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>319</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>320</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>321</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>322</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>323</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>324</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>325</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>326</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>327</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>328</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>329</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>331</first> <second> <first>4</first> <second>0</second> </second> </item> <item> <first>332</first> <second> <first>10</first> <second>0</second> </second> </item> <item> <first>334</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>335</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>336</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>337</first> <second> <first>7</first> <second>1</second> </second> </item> <item> <first>338</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>339</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>340</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>341</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>342</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>343</first> <second> <first>5</first> <second>0</second> </second> </item> <item> <first>344</first> <second> <first>5</first> <second>1</second> </second> </item> <item> <first>345</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>346</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>347</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>348</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>349</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>350</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>351</first> <second> <first>6</first> <second>0</second> </second> </item> <item> <first>352</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>353</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>354</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>355</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>356</first> <second> <first>7</first> <second>0</second> </second> </item> <item> <first>357</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>358</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>359</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>360</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>361</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>362</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>363</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>364</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>365</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>366</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>367</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>368</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>369</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>370</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>371</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>372</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>373</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>374</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>375</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>376</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>377</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>378</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>379</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>380</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>381</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>382</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>383</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>384</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>385</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>386</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>387</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>388</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>389</first> <second> <first>8</first> <second>0</second> </second> </item> <item> <first>390</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>391</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>392</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>393</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>394</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>395</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>397</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>399</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>400</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>402</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>403</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>405</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>407</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>409</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>410</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>412</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>413</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>415</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>418</first> <second> <first>9</first> <second>0</second> </second> </item> <item> <first>420</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>421</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>423</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>424</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>425</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>426</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>428</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>429</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>431</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>432</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>434</first> <second> <first>1</first> <second>0</second> </second> </item> <item> <first>436</first> <second> <first>1</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="29" tracking_level="0" version="0"> <count>21</count> <item_version>0</item_version> <item class_id="30" tracking_level="0" version="0"> <first>26</first> <second class_id="31" tracking_level="0" version="0"> <first>0</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>63</first> <second> <first>1</first> <second>3</second> </second> </item> <item> <first>68</first> <second> <first>4</first> <second>4</second> </second> </item> <item> <first>333</first> <second> <first>4</first> <second>10</second> </second> </item> <item> <first>396</first> <second> <first>5</first> <second>9</second> </second> </item> <item> <first>398</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>401</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>404</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>406</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>408</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>411</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>414</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>416</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>419</first> <second> <first>9</first> <second>9</second> </second> </item> <item> <first>422</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>427</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>430</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>433</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>435</first> <second> <first>1</first> <second>1</second> </second> </item> <item> <first>437</first> <second> <first>1</first> <second>1</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="_1832"> <region_name>LOOP_DENSE_I</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>68</item> <item>333</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>7</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>
27.916525
110
0.599015
18f13e2819dc87f246cb1394b4af2bf3447d14c6
61
ads
Ada
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/parameter_declaration.ads
ucd-plse/rose
17db6454e8baba0014e30a8ec23df1a11ac55a0c
[ "BSD-3-Clause" ]
488
2015-01-09T08:54:48.000Z
2022-03-30T07:15:46.000Z
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/parameter_declaration.ads
ucd-plse/rose
17db6454e8baba0014e30a8ec23df1a11ac55a0c
[ "BSD-3-Clause" ]
174
2015-01-28T18:41:32.000Z
2022-03-31T16:51:05.000Z
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/parameter_declaration.ads
passlab/rexompiler
5494df3766ab606e230c5f1785b438a019c9e353
[ "BSD-3-Clause" ]
146
2015-04-27T02:48:34.000Z
2022-03-04T07:32:53.000Z
procedure Parameter_Declaration (The_Parameter : Integer);
20.333333
31
0.819672
2099cd8b6ff424be34d323802e2e3d234efc9c11
2,957
adb
Ada
llvm-gcc-4.2-2.9/gcc/ada/a-intsig.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/a-intsig.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/a-intsig.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS -- -- -- -- A D A . I N T E R R U P T S . S I G N A L -- -- -- -- B o d y -- -- -- -- Copyright (C) 2000-2005, Free Software Foundation, Inc. -- -- -- -- GNARL is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNARL is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNARL; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNARL was developed by the GNARL team at Florida State University. -- -- Extensive contributions were provided by Ada Core Technologies, Inc. -- -- -- ------------------------------------------------------------------------------ with System.Interrupt_Management.Operations; package body Ada.Interrupts.Signal is ------------------------ -- Generate_Interrupt -- ------------------------ procedure Generate_Interrupt (Interrupt : Interrupt_ID) is begin System.Interrupt_Management.Operations.Interrupt_Self_Process (System.Interrupt_Management.Interrupt_ID (Interrupt)); end Generate_Interrupt; end Ada.Interrupts.Signal;
60.346939
78
0.453838
dc2d672991a7150e035f7ee260cff63066e6d24d
7,995
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c37213d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c37213d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c3/c37213d.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C37213D.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT IF -- AN INDEX CONSTRAINT -- DEPENDS ON A DISCRIMINANT, THE NON-DISCRIMINANT EXPRESSIONS IN THE -- CONSTRAINT ARE EVALUATED WHEN THE COMPONENT SUBTYPE DEFINITION IS -- ELABORATED, BUT THE VALUES ARE CHECKED WHEN THE RECORD TYPE IS: -- -- CASE B: USED WITHOUT A CONSTRAINT ONLY IN AN ALLOCATOR OR OBJECT -- DECLARATION. -- JBG 10/17/86 WITH REPORT; USE REPORT; PROCEDURE C37213D IS SUBTYPE SM IS INTEGER RANGE 1..10; TYPE MY_ARR IS ARRAY (SM RANGE <>) OF INTEGER; F1_CONS : INTEGER := 2; FUNCTION CHK ( CONS : INTEGER; VALUE : INTEGER; MESSAGE : STRING) RETURN BOOLEAN IS BEGIN IF CONS /= VALUE THEN FAILED (MESSAGE & ": CONS IS " & INTEGER'IMAGE(CONS)); END IF; RETURN TRUE; END CHK; FUNCTION F1 RETURN INTEGER IS BEGIN F1_CONS := F1_CONS - IDENT_INT(1); RETURN F1_CONS; END F1; BEGIN TEST ("C37213D", "CHECK EVALUATION OF INDEX BOUNDS " & "WHEN CONSTRAINT DEPENDS ON DISCRIMINANT, " & "AND DISCRIMINANTS HAVE DEFAULTS"); -- CASE B DECLARE TYPE CONS (D3 : INTEGER := 1) IS RECORD C1 : MY_ARR (F1..D3); -- F1 EVALUATED. END RECORD; CHK1 : BOOLEAN := CHK (F1_CONS, 1, "F1 NOT EVALUATED"); X : CONS; -- F1 NOT EVALUATED AGAIN Y : CONS; -- F1 NOT EVALUATED AGAIN CHK2 : BOOLEAN := CHK (F1_CONS, 1, "F1 EVALUATED"); BEGIN IF X.C1'FIRST /= 1 OR Y.C1'LAST /= 1 THEN FAILED ("INDEX BOUNDS NOT CORRECT"); END IF; END; F1_CONS := 12; DECLARE TYPE CONS (D3 : INTEGER := 1) IS RECORD C1 : MY_ARR(D3..F1); END RECORD; BEGIN BEGIN DECLARE X : CONS; BEGIN FAILED ("INDEX CHECK NOT PERFORMED - 1"); IF X /= (1, (1, 1)) THEN COMMENT ("SHOULDN'T GET HERE"); END IF; END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION - 1"); END; BEGIN DECLARE TYPE ACC_CONS IS ACCESS CONS; X : ACC_CONS; BEGIN X := NEW CONS; FAILED ("INDEX CHECK NOT PERFORMED - 2"); BEGIN IF X.ALL /= (1, (1 => 1)) THEN COMMENT ("IRRELEVANT"); END IF; END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED - 2"); END; EXCEPTION WHEN OTHERS => FAILED ("CONSTRAINT CHECKED TOO SOON - 2"); END; BEGIN DECLARE SUBTYPE SCONS IS CONS; BEGIN DECLARE X : SCONS; BEGIN FAILED ("INDEX CHECK NOT " & "PERFORMED - 3"); IF X /= (1, (1 => 1)) THEN COMMENT ("IRRELEVANT"); END IF; END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED - 3"); END; EXCEPTION WHEN OTHERS => FAILED ("CONSTRAINT CHECKED TOO SOON - 3"); END; BEGIN DECLARE TYPE ARR IS ARRAY (1..5) OF CONS; BEGIN DECLARE X : ARR; BEGIN FAILED ("INDEX CHECK NOT " & "PERFORMED - 4"); IF X /= (1..5 => (1, (1 => 1))) THEN COMMENT ("IRRELEVANT"); END IF; END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED - 4"); END; EXCEPTION WHEN OTHERS => FAILED ("CONSTRAINT CHECKED TOO SOON - 4"); END; BEGIN DECLARE TYPE NREC IS RECORD C1 : CONS; END RECORD; BEGIN DECLARE X : NREC; BEGIN FAILED ("INDEX CHECK NOT " & "PERFORMED - 5"); IF X /= (C1 => (1, (1 => 1))) THEN COMMENT ("IRRELEVANT"); END IF; END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED - 5"); END; EXCEPTION WHEN OTHERS => FAILED ("CONSTRAINT CHECKED TOO SOON - 5"); END; BEGIN DECLARE TYPE DREC IS NEW CONS; BEGIN DECLARE X : DREC; BEGIN FAILED ("INDEX CHECK NOT " & "PERFORMED - 6"); IF X /= (1, (1 => 1)) THEN COMMENT ("IRRELEVANT"); END IF; END; EXCEPTION WHEN CONSTRAINT_ERROR => NULL; WHEN OTHERS => FAILED ("UNEXPECTED EXCEPTION RAISED - 6"); END; EXCEPTION WHEN OTHERS => FAILED ("CONSTRAINT CHECKED TOO SOON - 6"); END; END; RESULT; EXCEPTION WHEN OTHERS => FAILED ("CONSTRAINT CHECK DONE TOO EARLY"); RESULT; END C37213D;
33.174274
79
0.422014
20b7596046437e7b7e29323bcc2fecdcb0a0f596
4,924
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-widenu.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-widenu.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/libgnat/s-widenu.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . W I D _ E N U M -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Ada.Unchecked_Conversion; package body System.Wid_Enum is ------------------------- -- Width_Enumeration_8 -- ------------------------- function Width_Enumeration_8 (Names : String; Indexes : System.Address; Lo, Hi : Natural) return Natural is pragma Warnings (Off, Names); W : Natural; type Natural_8 is range 0 .. 2 ** 7 - 1; type Index_Table is array (Natural) of Natural_8; type Index_Table_Ptr is access Index_Table; function To_Index_Table_Ptr is new Ada.Unchecked_Conversion (System.Address, Index_Table_Ptr); IndexesT : constant Index_Table_Ptr := To_Index_Table_Ptr (Indexes); begin W := 0; for J in Lo .. Hi loop W := Natural'Max (W, Natural (IndexesT (J + 1) - IndexesT (J))); end loop; return W; end Width_Enumeration_8; -------------------------- -- Width_Enumeration_16 -- -------------------------- function Width_Enumeration_16 (Names : String; Indexes : System.Address; Lo, Hi : Natural) return Natural is pragma Warnings (Off, Names); W : Natural; type Natural_16 is range 0 .. 2 ** 15 - 1; type Index_Table is array (Natural) of Natural_16; type Index_Table_Ptr is access Index_Table; function To_Index_Table_Ptr is new Ada.Unchecked_Conversion (System.Address, Index_Table_Ptr); IndexesT : constant Index_Table_Ptr := To_Index_Table_Ptr (Indexes); begin W := 0; for J in Lo .. Hi loop W := Natural'Max (W, Natural (IndexesT (J + 1) - IndexesT (J))); end loop; return W; end Width_Enumeration_16; -------------------------- -- Width_Enumeration_32 -- -------------------------- function Width_Enumeration_32 (Names : String; Indexes : System.Address; Lo, Hi : Natural) return Natural is pragma Warnings (Off, Names); W : Natural; type Natural_32 is range 0 .. 2 ** 31 - 1; type Index_Table is array (Natural) of Natural_32; type Index_Table_Ptr is access Index_Table; function To_Index_Table_Ptr is new Ada.Unchecked_Conversion (System.Address, Index_Table_Ptr); IndexesT : constant Index_Table_Ptr := To_Index_Table_Ptr (Indexes); begin W := 0; for J in Lo .. Hi loop W := Natural'Max (W, Natural (IndexesT (J + 1) - IndexesT (J))); end loop; return W; end Width_Enumeration_32; end System.Wid_Enum;
36.205882
78
0.47766
20b7ca2d803749dc21409dee073c14c032c58716
3,817
adb
Ada
examples/msg_producer.adb
HeisenbugLtd/msg_passing
985d9065bae68fb8dace8b8dcadd1a7e6f5a9fbe
[ "WTFPL" ]
null
null
null
examples/msg_producer.adb
HeisenbugLtd/msg_passing
985d9065bae68fb8dace8b8dcadd1a7e6f5a9fbe
[ "WTFPL" ]
null
null
null
examples/msg_producer.adb
HeisenbugLtd/msg_passing
985d9065bae68fb8dace8b8dcadd1a7e6f5a9fbe
[ "WTFPL" ]
null
null
null
------------------------------------------------------------------------ -- Copyright (C) 2010-2020 by Heisenbug Ltd. ([email protected]) -- -- 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); with Ada.Synchronous_Task_Control; with Ada.Numerics.Discrete_Random; with Ada.Real_Time; with Ada.Text_IO; package body Msg_Producer is subtype Random_Int is Message range 10 .. 99; package Msg_Random is new Ada.Numerics.Discrete_Random (Random_Int); --------------------------------------------------------------------- -- Messenger -- -- No entry, the whole activation is done via suspension object. --------------------------------------------------------------------- task type Messenger; -- The cycle time for the intended message rate. Cycle_Time : Ada.Real_Time.Time_Span; -- Administration data. Message boards and appropriate suspension -- objects. type Board_Ref is access all Int_Messaging.Object'Class; Msg_Board : Board_Ref; Init_Done : Ada.Synchronous_Task_Control.Suspension_Object; --------------------------------------------------------------------- -- Messenger --------------------------------------------------------------------- task body Messenger is use type Ada.Real_Time.Time; Gen : Msg_Random.Generator; Next_Activation : Ada.Real_Time.Time; begin ------------------------------------------------------------------ -- "entry" Messenger.Init ------------------------------------------------------------------ Ada.Synchronous_Task_Control.Suspend_Until_True (Init_Done); Next_Activation := Ada.Real_Time.Clock; Msg_Random.Reset (Gen); loop Int_Messaging.Write (Msg_Board.all, Msg_Random.Random (Gen)); Next_Activation := Next_Activation + Cycle_Time; delay until Next_Activation; end loop; end Messenger; --------------------------------------------------------------------- -- the messenger task --------------------------------------------------------------------- My_Task : Messenger; --------------------------------------------------------------------- -- Start --------------------------------------------------------------------- procedure Start (Msg_Rate : in Integer; MB : in out Int_Messaging.Object'Class) is begin Msg_Board := MB'Unchecked_Access; Cycle_Time := Ada.Real_Time.Nanoseconds (1_000_000_000 / Msg_Rate); -- Initialization of package state is done, release task. Ada.Synchronous_Task_Control.Set_True (Init_Done); end Start; package Test is function Constant_Result return Boolean; end Test; pragma Unreferenced (Test); package body Test is Start_Time : constant Ada.Real_Time.Time := Ada.Real_Time.Clock; function Constant_Result return Boolean is use Ada.Real_Time; Result : constant Boolean := (Clock - Start_Time) < Milliseconds (5000); begin Ada.Text_IO.Put_Line (Boolean'Image (Result)); return Result; end Constant_Result; task Test_Task is entry Init; pragma Unreferenced (Init); end Test_Task; task body Test_Task is begin loop select when Constant_Result => delay 0.0; or accept Init; end select; end loop; end Test_Task; end Test; end Msg_Producer;
31.545455
72
0.504061
20ba5e935cdbaa66744e587efc7a46677d4a2121
1,230
adb
Ada
arch/ARM/STM32/driversWL5x/stm32-subghzphy.adb
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
2
2018-05-16T03:56:39.000Z
2019-07-31T13:53:56.000Z
arch/ARM/STM32/driversWL5x/stm32-subghzphy.adb
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
arch/ARM/STM32/driversWL5x/stm32-subghzphy.adb
morbos/Ada_Drivers_Library
a4ab26799be60997c38735f4056160c4af597ef7
[ "BSD-3-Clause" ]
null
null
null
with STM32_SVD.RCC; use STM32_SVD.RCC; with STM32_SVD.PWR; use STM32_SVD.PWR; package body STM32.SubGhzPhy is procedure SubGhzPhy_Init is Config : SPI_Configuration; begin Enable_Clock (SubGhzPhyPort.all); RCC_Periph.CSR.RFRST := False; loop exit when not RCC_Periph.CSR.RFRSTF; end loop; Enable (SubGhzPhyPort.all); STM32.Device.Reset (SubGhzPhyPort.all); -- RCC_Periph.APB3RSTR.SUBGHZSPIRST := True; Config.Mode := Master; Config.Baud_Rate_Prescaler := BRP_4; Config.Clock_Polarity := Low; Config.Clock_Phase := P1Edge; Config.First_Bit := MSB; Config.CRC_Poly := 7; Config.Slave_Management := Software_Managed; -- essential!! Config.Slave_Internal := Internal_NSS; Config.Direction := D2Lines_FullDuplex; Config.Data_Size := HAL.SPI.Data_Size_8b; Config.Fifo_Level := True; Config.Transmit_DMA := False; Config.Receive_DMA := False; Disable (SubGhzPhyPort.all); Configure (SubGhzPhyPort.all, Config); Enable (SubGhzPhyPort.all); PWR_Periph.CR3.EWRFBUSY := True; PWR_Periph.SCR.CWRFBUSYF := True; end SubGhzPhy_Init; end STM32.SubGhzPhy;
26.73913
67
0.665041
dc917a47e9c06562e2921c3bcd8c0ce7fdbcaf7b
3,109
adb
Ada
aunit/aunit-test_cases-registration.adb
btmalone/alog
164a0a3e82aee414dc6125b64cd8ccc3a01876f9
[ "Apache-2.0" ]
null
null
null
aunit/aunit-test_cases-registration.adb
btmalone/alog
164a0a3e82aee414dc6125b64cd8ccc3a01876f9
[ "Apache-2.0" ]
3
2018-12-23T03:07:49.000Z
2019-06-03T20:16:30.000Z
aunit/aunit-test_cases-registration.adb
btmalone/alog
164a0a3e82aee414dc6125b64cd8ccc3a01876f9
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- A U N I T . T E S T _ C A S E S . R E G I S T R A T I O N -- -- -- -- B o d y -- -- -- -- -- -- Copyright (C) 2000-2017, 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. -- -- -- -- -- -- -- -- -- -- -- -- 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 is maintained by AdaCore (http://www.adacore.com) -- -- -- ------------------------------------------------------------------------------ -- Test routine registration separate (AUnit.Test_Cases) package body Registration is ---------------------- -- Register_Routine -- ---------------------- procedure Register_Routine (Test : in out Test_Case'Class; Routine : Test_Routine; Name : String) is Formatted_Name : constant Message_String := Format (Name); Val : Routine_Spec; begin Val := (Routine, Formatted_Name); Add_Routine (Test, Val); end Register_Routine; ------------------- -- Routine_Count -- ------------------- function Routine_Count (Test : Test_Case'Class) return Count_Type is begin return Routine_Lists.Length (Test.Routines); end Routine_Count; end Registration;
48.578125
78
0.339981
20815af4775f0feff340d4ec36df3f13acf01cce
135
adb
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/loop_optimization17_pkg.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/loop_optimization17_pkg.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/loop_optimization17_pkg.adb
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
package body Loop_Optimization17_Pkg is function F (V : Vector) return Vector is begin return V; end; end Loop_Optimization17_Pkg;
22.5
63
0.792593
1837188ab9526f03490055b2a634ab277a902fb0
574
ads
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/self.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/self.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/self.ads
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
with System; package Self is type Lim is limited private; type Lim_Ref is access all Lim; function G (X : Integer) return lim; procedure Change (X : in out Lim; Incr : Integer); function Get (X : Lim) return Integer; private type Lim is limited record Comp : Integer; Self_Default : Lim_Ref := Lim'Unchecked_Access; Self_Unrestricted_Default : Lim_Ref := Lim'Unrestricted_Access; Self_Anon_Default : access Lim := Lim'Unchecked_Access; Self_Anon_Unrestricted_Default : access Lim := Lim'Unrestricted_Access; end record; end Self;
31.888889
76
0.721254
c5cfd8fa75339cdbbe779609a65b5741f6225716
4,036
ada
Ada
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c46051c.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
7
2020-05-02T17:34:05.000Z
2021-10-17T10:15:18.000Z
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c46051c.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
null
null
null
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c4/c46051c.ada
best08618/asylo
5a520a9f5c461ede0f32acc284017b737a43898c
[ "Apache-2.0" ]
2
2020-07-27T00:22:36.000Z
2021-04-01T09:41:02.000Z
-- C46051C.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 RECORD VALUES CAN BE CONVERTED IF THE OPERAND -- AND TARGET TYPES ARE RELATED BY DERIVATION, EVEN IF THE OPERAND -- AND TARGET TYPES HAVE DIFFERENT REPRESENTATIONS. -- HISTORY: -- JET 07/13/88 CREATED ORIGINAL TEST. -- RJW 08/28/89 REMOVED APPLICABILITY CRITERIA AND CHANGED -- EXTENSION TO 'ADA'. WITH REPORT; USE REPORT; WITH SYSTEM; PROCEDURE C46051C IS UNITS_PER_INTEGER : CONSTANT := (INTEGER'SIZE+SYSTEM.STORAGE_UNIT-1) / SYSTEM.STORAGE_UNIT; TYPE ARR IS ARRAY (1..2) OF INTEGER; TYPE REC IS RECORD F1 : INTEGER; F2 : INTEGER; F3 : INTEGER; END RECORD; TYPE REC1 IS NEW REC; FOR REC1 USE RECORD F1 AT 0 RANGE 0 .. INTEGER'SIZE - 1; F2 AT 1*UNITS_PER_INTEGER RANGE 0..INTEGER'SIZE - 1; F3 AT 3*UNITS_PER_INTEGER RANGE 0..INTEGER'SIZE - 1; END RECORD; TYPE REC2 IS NEW REC; FOR REC2 USE RECORD F1 AT 0 RANGE 0 .. INTEGER'SIZE - 1; F2 AT 2*UNITS_PER_INTEGER RANGE 0..INTEGER'SIZE - 1; F3 AT 3*UNITS_PER_INTEGER RANGE 0..INTEGER'SIZE - 1; END RECORD; TYPE REC3 IS NEW REC1; R : REC := (IDENT_INT (0), 1, 2); R1 : REC1 := (IDENT_INT (1), 2, 3); R2 : REC2 := (IDENT_INT (2), 3, 4); R3 : REC3 := (IDENT_INT (3), 4, 5); BEGIN TEST ( "C46051C", "CHECK THAT RECORD VALUES CAN BE " & "CONVERTED IF THE OPERAND AND TARGET TYPES " & "ARE RELATED BY DERIVATION, EVEN IF THE " & "OPERAND AND TARGET TYPES HAVE DIFFERENT " & "REPRESENTATIONS"); IF REC1(R) /= (0,1,2) THEN FAILED ( "INCORRECT CONVERSION OF 'REC1 (R)'" ); END IF; IF REC (R1) /= (1,2,3) THEN FAILED ( "INCORRECT CONVERSION OF 'REC (R1)'" ); END IF; IF REC1 (R2) /= (2,3,4) THEN FAILED ( "INCORRECT CONVERSION OF 'REC1 (R2)'" ); END IF; IF REC2 (R3) /= (3,4,5) THEN FAILED ( "INCORRECT CONVERSION OF 'REC2 (R3)'" ); END IF; IF REC (R) /= (0,1,2) THEN FAILED ( "INCORRECT CONVERSION OF 'REC (R)'" ); END IF; IF REC2 (R1) /= (1,2,3) THEN FAILED ( "INCORRECT CONVERSION OF 'REC2 (R1)'" ); END IF; IF REC3 (R2) /= (2,3,4) THEN FAILED ( "INCORRECT CONVERSION OF 'REC3 (R2)'" ); END IF; IF REC (R3) /= (3,4,5) THEN FAILED ( "INCORRECT CONVERSION OF 'REC (R3)'" ); END IF; RESULT; EXCEPTION WHEN OTHERS => FAILED ( "EXCEPTION RAISED DURING CONVERSION OF " & "RECORD TYPES" ); RESULT; END C46051C;
33.355372
79
0.5778
4a1fad58020b1d7823b5dd999cb96905fed2e728
416
adb
Ada
1A/S5/PIM/projet/src/alea.adb
MOUDDENEHamza/ENSEEIHT
a90b1dee0c8d18a9578153a357278d99405bb534
[ "Apache-2.0" ]
4
2020-05-02T12:32:32.000Z
2022-01-12T20:20:35.000Z
PIM/TP10/alea.adb
Hathoute/ENSEEIHT
d42f0b0dedb269e6df3b1c006d4d45e52fc518b8
[ "MIT" ]
2
2021-01-14T20:03:26.000Z
2022-01-30T01:10:00.000Z
PIM/TP10/alea.adb
Hathoute/ENSEEIHT
d42f0b0dedb269e6df3b1c006d4d45e52fc518b8
[ "MIT" ]
13
2020-11-11T21:28:11.000Z
2022-02-19T13:54:22.000Z
with Ada.Numerics.Discrete_Random; package body Alea is subtype Intervalle is Integer range Lower_Bound..Upper_Bound; package Generateur_P is new Ada.Numerics.Discrete_Random (Intervalle); use Generateur_P; Generateur : Generateur_P.Generator; procedure Get_Random_Number (Resultat : out Integer) is begin Resultat := Random (Generateur); end Get_Random_Number; begin Reset(Generateur); end Alea;
19.809524
62
0.788462
2063a058978e6c45902589de24f248aae7ed56d4
204,662
adb
Ada
ctrl_broadcast/eg1_stencil_computation/optimize/jacobi2d_kernel/solution/.autopilot/db/load37.adb
Licheng-Guo/vivado-hls-broadcast-optimization
6df922aaab9463fe78bb8216c976e525e6626f9b
[ "MIT" ]
24
2020-06-17T22:57:36.000Z
2021-09-14T03:37:45.000Z
ctrl_broadcast/eg1_stencil_computation/optimize/jacobi2d_kernel/solution/.autopilot/db/load37.adb
Licheng-Guo/vivado-hls-broadcast-optimization
6df922aaab9463fe78bb8216c976e525e6626f9b
[ "MIT" ]
null
null
null
ctrl_broadcast/eg1_stencil_computation/optimize/jacobi2d_kernel/solution/.autopilot/db/load37.adb
Licheng-Guo/vivado-hls-broadcast-optimization
6df922aaab9463fe78bb8216c976e525e6626f9b
[ "MIT" ]
7
2020-06-17T22:40:10.000Z
2021-09-14T03:37:53.000Z
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?> <!DOCTYPE boost_serialization> <boost_serialization signature="serialization::archive" version="15"> <syndb class_id="0" tracking_level="0" version="0"> <userIPLatency>-1</userIPLatency> <userIPName/> <cdfg class_id="1" tracking_level="1" version="0" object_id="_0"> <name>load37</name> <ret_bitwidth>0</ret_bitwidth> <ports class_id="2" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="3" tracking_level="1" version="0" object_id="_1"> <Value class_id="4" tracking_level="0" version="0"> <Obj class_id="5" tracking_level="0" version="0"> <type>1</type> <id>1</id> <name>input_stream_0_2_V_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo class_id="6" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>to.V.V</originalName> <rtlName/> <coreName>FIFO_SRL</coreName> </Obj> <bitwidth>512</bitwidth> </Value> <direction>1</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs class_id="7" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_2"> <Value> <Obj> <type>1</type> <id>2</id> <name>var_input_0_2_V</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>from.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <direction>0</direction> <if_type>4</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>var_input_0_2_V_offset</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>32</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> <item class_id_reference="3" object_id="_4"> <Value> <Obj> <type>1</type> <id>4</id> <name>coalesced_data_num</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName>FIFO</coreName> </Obj> <bitwidth>64</bitwidth> </Value> <direction>0</direction> <if_type>3</if_type> <array_size>0</array_size> <bit_vecs> <count>0</count> <item_version>0</item_version> </bit_vecs> </item> </ports> <nodes class_id="8" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="9" tracking_level="1" version="0" object_id="_5"> <Value> <Obj> <type>0</type> <id>10</id> <name>var_input_0_2_V_offset_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>40</item> <item>41</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.21</m_delay> </item> <item class_id_reference="9" object_id="_6"> <Value> <Obj> <type>0</type> <id>11</id> <name>var_input_0_2_V_offset1_i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>var_input_0_2_V_offset1_i_reg_178</rtlName> <coreName/> </Obj> <bitwidth>26</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>43</item> <item>44</item> <item>46</item> <item>48</item> </oprand_edges> <opcode>partselect</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_7"> <Value> <Obj> <type>0</type> <id>12</id> <name>tmp_i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName>tmp_i_fu_153_p1</rtlName> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>49</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_8"> <Value> <Obj> <type>0</type> <id>13</id> <name>var_input_0_2_V_addr</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>50</item> <item>51</item> </oprand_edges> <opcode>getelementptr</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_9"> <Value> <Obj> <type>0</type> <id>17</id> <name>coalesced_data_num_read</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>64</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>53</item> <item>54</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.21</m_delay> </item> <item class_id_reference="9" object_id="_10"> <Value> <Obj> <type>0</type> <id>18</id> <name>tmp</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>9718</lineNumber> <contextFuncName>jacobi2d_kernel</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item class_id="11" tracking_level="0" version="0"> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second class_id="12" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="13" tracking_level="0" version="0"> <first class_id="14" tracking_level="0" version="0"> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9718</second> </item> </second> </item> </inlineStackInfo> <originalName>data_num</originalName> <rtlName>tmp_fu_149_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>55</item> </oprand_edges> <opcode>trunc</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_11"> <Value> <Obj> <type>0</type> <id>20</id> <name>var_input_0_2_V_addr_i_rd_req</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>35</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>35</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>57</item> <item>58</item> <item>59</item> </oprand_edges> <opcode>readreq</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.43</m_delay> </item> <item class_id_reference="9" object_id="_12"> <Value> <Obj> <type>0</type> <id>21</id> <name/> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>32</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>60</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.60</m_delay> </item> <item class_id_reference="9" object_id="_13"> <Value> <Obj> <type>0</type> <id>23</id> <name>i_i_i_i</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName>i</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>4</count> <item_version>0</item_version> <item>62</item> <item>63</item> <item>64</item> <item>65</item> </oprand_edges> <opcode>phi</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_14"> <Value> <Obj> <type>0</type> <id>24</id> <name>i_cast_i_i_i</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>32</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>i_cast_i_i_i_fu_163_p1</rtlName> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>66</item> </oprand_edges> <opcode>zext</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_15"> <Value> <Obj> <type>0</type> <id>25</id> <name>tmp_i_i_i</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>32</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName>tmp_i_i_i_fu_167_p2</rtlName> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>67</item> <item>68</item> </oprand_edges> <opcode>icmp</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.85</m_delay> </item> <item class_id_reference="9" object_id="_16"> <Value> <Obj> <type>0</type> <id>26</id> <name>i</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>32</second> </item> </second> </item> </inlineStackInfo> <originalName>i</originalName> <rtlName>i_fu_172_p2</rtlName> <coreName/> </Obj> <bitwidth>31</bitwidth> </Value> <oprand_edges> <count>2</count> <item_version>0</item_version> <item>69</item> <item>71</item> </oprand_edges> <opcode>add</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.87</m_delay> </item> <item class_id_reference="9" object_id="_17"> <Value> <Obj> <type>0</type> <id>27</id> <name/> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>32</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>72</item> <item>73</item> <item>74</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_18"> <Value> <Obj> <type>0</type> <id>32</id> <name>tmp_V</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>35</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>35</second> </item> </second> </item> </inlineStackInfo> <originalName>tmp.V</originalName> <rtlName/> <coreName/> </Obj> <bitwidth>512</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>76</item> <item>77</item> <item>288</item> </oprand_edges> <opcode>read</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>2.43</m_delay> </item> <item class_id_reference="9" object_id="_19"> <Value> <Obj> <type>0</type> <id>33</id> <name>empty</name> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>35</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>35</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>1</bitwidth> </Value> <oprand_edges> <count>3</count> <item_version>0</item_version> <item>79</item> <item>80</item> <item>81</item> </oprand_edges> <opcode>nbwrite</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>1.21</m_delay> </item> <item class_id_reference="9" object_id="_20"> <Value> <Obj> <type>0</type> <id>35</id> <name/> <fileName>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</fileName> <fileDirectory>..</fileDirectory> <lineNumber>32</lineNumber> <contextFuncName>load</contextFuncName> <inlineStackInfo> <count>1</count> <item_version>0</item_version> <item> <first>/home/einsx7/broadcast/vivado-hls-broadcast-optimization/ctrl_broadcast/eg2_stencil_computation/optimize</first> <second> <count>2</count> <item_version>0</item_version> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>jacobi2d_kernel</second> </first> <second>9720</second> </item> <item> <first> <first>non_blocking_jacobi2d_kernel-tile8000-unroll64-4ddr-iterate8.cpp</first> <second>load</second> </first> <second>32</second> </item> </second> </item> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>1</count> <item_version>0</item_version> <item>82</item> </oprand_edges> <opcode>br</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> <item class_id_reference="9" object_id="_21"> <Value> <Obj> <type>0</type> <id>37</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>0</bitwidth> </Value> <oprand_edges> <count>0</count> <item_version>0</item_version> </oprand_edges> <opcode>ret</opcode> <m_Display>0</m_Display> <m_isOnCriticalPath>0</m_isOnCriticalPath> <m_isLCDNode>0</m_isLCDNode> <m_delay>0.00</m_delay> </item> </nodes> <consts class_id="15" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="16" tracking_level="1" version="0" object_id="_22"> <Value> <Obj> <type>2</type> <id>45</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>6</content> </item> <item class_id_reference="16" object_id="_23"> <Value> <Obj> <type>2</type> <id>47</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>32</bitwidth> </Value> <const_type>0</const_type> <content>31</content> </item> <item class_id_reference="16" object_id="_24"> <Value> <Obj> <type>2</type> <id>61</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>31</bitwidth> </Value> <const_type>0</const_type> <content>0</content> </item> <item class_id_reference="16" object_id="_25"> <Value> <Obj> <type>2</type> <id>70</id> <name>empty</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <bitwidth>31</bitwidth> </Value> <const_type>0</const_type> <content>1</content> </item> </consts> <blocks class_id="17" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="18" tracking_level="1" version="0" object_id="_26"> <Obj> <type>3</type> <id>22</id> <name>entry</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>8</count> <item_version>0</item_version> <item>10</item> <item>11</item> <item>12</item> <item>13</item> <item>17</item> <item>18</item> <item>20</item> <item>21</item> </node_objs> </item> <item class_id_reference="18" object_id="_27"> <Obj> <type>3</type> <id>28</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>5</count> <item_version>0</item_version> <item>23</item> <item>24</item> <item>25</item> <item>26</item> <item>27</item> </node_objs> </item> <item class_id_reference="18" object_id="_28"> <Obj> <type>3</type> <id>36</id> <name/> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>3</count> <item_version>0</item_version> <item>32</item> <item>33</item> <item>35</item> </node_objs> </item> <item class_id_reference="18" object_id="_29"> <Obj> <type>3</type> <id>38</id> <name>.exit</name> <fileName/> <fileDirectory/> <lineNumber>0</lineNumber> <contextFuncName/> <inlineStackInfo> <count>0</count> <item_version>0</item_version> </inlineStackInfo> <originalName/> <rtlName/> <coreName/> </Obj> <node_objs> <count>1</count> <item_version>0</item_version> <item>37</item> </node_objs> </item> </blocks> <edges class_id="19" tracking_level="0" version="0"> <count>33</count> <item_version>0</item_version> <item class_id="20" tracking_level="1" version="0" object_id="_30"> <id>41</id> <edge_type>1</edge_type> <source_obj>3</source_obj> <sink_obj>10</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_31"> <id>44</id> <edge_type>1</edge_type> <source_obj>10</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_32"> <id>46</id> <edge_type>1</edge_type> <source_obj>45</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_33"> <id>48</id> <edge_type>1</edge_type> <source_obj>47</source_obj> <sink_obj>11</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_34"> <id>49</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="_35"> <id>50</id> <edge_type>1</edge_type> <source_obj>2</source_obj> <sink_obj>13</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_36"> <id>51</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="_37"> <id>54</id> <edge_type>1</edge_type> <source_obj>4</source_obj> <sink_obj>17</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_38"> <id>55</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="_39"> <id>58</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_40"> <id>59</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>20</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_41"> <id>60</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>21</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_42"> <id>62</id> <edge_type>1</edge_type> <source_obj>61</source_obj> <sink_obj>23</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_43"> <id>63</id> <edge_type>2</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="_44"> <id>64</id> <edge_type>1</edge_type> <source_obj>26</source_obj> <sink_obj>23</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_45"> <id>65</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>23</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_46"> <id>66</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="_47"> <id>67</id> <edge_type>1</edge_type> <source_obj>24</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_48"> <id>68</id> <edge_type>1</edge_type> <source_obj>18</source_obj> <sink_obj>25</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_49"> <id>69</id> <edge_type>1</edge_type> <source_obj>23</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_50"> <id>71</id> <edge_type>1</edge_type> <source_obj>70</source_obj> <sink_obj>26</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_51"> <id>72</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="_52"> <id>73</id> <edge_type>2</edge_type> <source_obj>38</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_53"> <id>74</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>27</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_54"> <id>77</id> <edge_type>1</edge_type> <source_obj>13</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_55"> <id>80</id> <edge_type>1</edge_type> <source_obj>1</source_obj> <sink_obj>33</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_56"> <id>81</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="_57"> <id>82</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>35</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_58"> <id>284</id> <edge_type>2</edge_type> <source_obj>22</source_obj> <sink_obj>28</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_59"> <id>285</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>36</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_60"> <id>286</id> <edge_type>2</edge_type> <source_obj>28</source_obj> <sink_obj>38</sink_obj> <is_back_edge>0</is_back_edge> </item> <item class_id_reference="20" object_id="_61"> <id>287</id> <edge_type>2</edge_type> <source_obj>36</source_obj> <sink_obj>28</sink_obj> <is_back_edge>1</is_back_edge> </item> <item class_id_reference="20" object_id="_62"> <id>288</id> <edge_type>4</edge_type> <source_obj>20</source_obj> <sink_obj>32</sink_obj> <is_back_edge>0</is_back_edge> </item> </edges> </cdfg> <cdfg_regions class_id="21" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="22" tracking_level="1" version="0" object_id="_63"> <mId>1</mId> <mTag>load37</mTag> <mType>0</mType> <sub_regions> <count>3</count> <item_version>0</item_version> <item>2</item> <item>3</item> <item>4</item> </sub_regions> <basic_blocks> <count>0</count> <item_version>0</item_version> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_64"> <mId>2</mId> <mTag>Entry</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>22</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>126</mMinLatency> <mMaxLatency>126</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_65"> <mId>3</mId> <mTag>load_epoch</mTag> <mType>1</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>28</item> <item>36</item> </basic_blocks> <mII>1</mII> <mDepth>3</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>-1</mMinLatency> <mMaxLatency>-1</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> <item class_id_reference="22" object_id="_66"> <mId>4</mId> <mTag>Return</mTag> <mType>0</mType> <sub_regions> <count>0</count> <item_version>0</item_version> </sub_regions> <basic_blocks> <count>1</count> <item_version>0</item_version> <item>38</item> </basic_blocks> <mII>-1</mII> <mDepth>-1</mDepth> <mMinTripCount>-1</mMinTripCount> <mMaxTripCount>-1</mMaxTripCount> <mMinLatency>0</mMinLatency> <mMaxLatency>0</mMaxLatency> <mIsDfPipe>0</mIsDfPipe> <mDfPipe class_id="-1"/> </item> </cdfg_regions> <fsm class_id="24" tracking_level="1" version="0" object_id="_67"> <states class_id="25" tracking_level="0" version="0"> <count>131</count> <item_version>0</item_version> <item class_id="26" tracking_level="1" version="0" object_id="_68"> <id>1</id> <operations class_id="27" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="28" tracking_level="1" version="0" object_id="_69"> <id>10</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_70"> <id>11</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_71"> <id>17</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_72"> <id>18</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_73"> <id>2</id> <operations> <count>3</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_74"> <id>12</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_75"> <id>13</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_76"> <id>20</id> <stage>126</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_77"> <id>3</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_78"> <id>20</id> <stage>125</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_79"> <id>4</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_80"> <id>20</id> <stage>124</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_81"> <id>5</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_82"> <id>20</id> <stage>123</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_83"> <id>6</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_84"> <id>20</id> <stage>122</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_85"> <id>7</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_86"> <id>20</id> <stage>121</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_87"> <id>8</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_88"> <id>20</id> <stage>120</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_89"> <id>9</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_90"> <id>20</id> <stage>119</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_91"> <id>10</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_92"> <id>20</id> <stage>118</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_93"> <id>11</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_94"> <id>20</id> <stage>117</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_95"> <id>12</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_96"> <id>20</id> <stage>116</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_97"> <id>13</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_98"> <id>20</id> <stage>115</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_99"> <id>14</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_100"> <id>20</id> <stage>114</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_101"> <id>15</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_102"> <id>20</id> <stage>113</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_103"> <id>16</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_104"> <id>20</id> <stage>112</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_105"> <id>17</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_106"> <id>20</id> <stage>111</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_107"> <id>18</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_108"> <id>20</id> <stage>110</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_109"> <id>19</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_110"> <id>20</id> <stage>109</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_111"> <id>20</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_112"> <id>20</id> <stage>108</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_113"> <id>21</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_114"> <id>20</id> <stage>107</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_115"> <id>22</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_116"> <id>20</id> <stage>106</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_117"> <id>23</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_118"> <id>20</id> <stage>105</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_119"> <id>24</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_120"> <id>20</id> <stage>104</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_121"> <id>25</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_122"> <id>20</id> <stage>103</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_123"> <id>26</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_124"> <id>20</id> <stage>102</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_125"> <id>27</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_126"> <id>20</id> <stage>101</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_127"> <id>28</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_128"> <id>20</id> <stage>100</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_129"> <id>29</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_130"> <id>20</id> <stage>99</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_131"> <id>30</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_132"> <id>20</id> <stage>98</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_133"> <id>31</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_134"> <id>20</id> <stage>97</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_135"> <id>32</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_136"> <id>20</id> <stage>96</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_137"> <id>33</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_138"> <id>20</id> <stage>95</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_139"> <id>34</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_140"> <id>20</id> <stage>94</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_141"> <id>35</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_142"> <id>20</id> <stage>93</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_143"> <id>36</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_144"> <id>20</id> <stage>92</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_145"> <id>37</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_146"> <id>20</id> <stage>91</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_147"> <id>38</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_148"> <id>20</id> <stage>90</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_149"> <id>39</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_150"> <id>20</id> <stage>89</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_151"> <id>40</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_152"> <id>20</id> <stage>88</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_153"> <id>41</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_154"> <id>20</id> <stage>87</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_155"> <id>42</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_156"> <id>20</id> <stage>86</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_157"> <id>43</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_158"> <id>20</id> <stage>85</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_159"> <id>44</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_160"> <id>20</id> <stage>84</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_161"> <id>45</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_162"> <id>20</id> <stage>83</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_163"> <id>46</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_164"> <id>20</id> <stage>82</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_165"> <id>47</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_166"> <id>20</id> <stage>81</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_167"> <id>48</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_168"> <id>20</id> <stage>80</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_169"> <id>49</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_170"> <id>20</id> <stage>79</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_171"> <id>50</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_172"> <id>20</id> <stage>78</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_173"> <id>51</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_174"> <id>20</id> <stage>77</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_175"> <id>52</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_176"> <id>20</id> <stage>76</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_177"> <id>53</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_178"> <id>20</id> <stage>75</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_179"> <id>54</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_180"> <id>20</id> <stage>74</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_181"> <id>55</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_182"> <id>20</id> <stage>73</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_183"> <id>56</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_184"> <id>20</id> <stage>72</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_185"> <id>57</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_186"> <id>20</id> <stage>71</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_187"> <id>58</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_188"> <id>20</id> <stage>70</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_189"> <id>59</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_190"> <id>20</id> <stage>69</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_191"> <id>60</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_192"> <id>20</id> <stage>68</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_193"> <id>61</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_194"> <id>20</id> <stage>67</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_195"> <id>62</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_196"> <id>20</id> <stage>66</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_197"> <id>63</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_198"> <id>20</id> <stage>65</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_199"> <id>64</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_200"> <id>20</id> <stage>64</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_201"> <id>65</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_202"> <id>20</id> <stage>63</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_203"> <id>66</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_204"> <id>20</id> <stage>62</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_205"> <id>67</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_206"> <id>20</id> <stage>61</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_207"> <id>68</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_208"> <id>20</id> <stage>60</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_209"> <id>69</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_210"> <id>20</id> <stage>59</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_211"> <id>70</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_212"> <id>20</id> <stage>58</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_213"> <id>71</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_214"> <id>20</id> <stage>57</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_215"> <id>72</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_216"> <id>20</id> <stage>56</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_217"> <id>73</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_218"> <id>20</id> <stage>55</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_219"> <id>74</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_220"> <id>20</id> <stage>54</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_221"> <id>75</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_222"> <id>20</id> <stage>53</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_223"> <id>76</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_224"> <id>20</id> <stage>52</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_225"> <id>77</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_226"> <id>20</id> <stage>51</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_227"> <id>78</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_228"> <id>20</id> <stage>50</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_229"> <id>79</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_230"> <id>20</id> <stage>49</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_231"> <id>80</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_232"> <id>20</id> <stage>48</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_233"> <id>81</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_234"> <id>20</id> <stage>47</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_235"> <id>82</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_236"> <id>20</id> <stage>46</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_237"> <id>83</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_238"> <id>20</id> <stage>45</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_239"> <id>84</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_240"> <id>20</id> <stage>44</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_241"> <id>85</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_242"> <id>20</id> <stage>43</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_243"> <id>86</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_244"> <id>20</id> <stage>42</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_245"> <id>87</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_246"> <id>20</id> <stage>41</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_247"> <id>88</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_248"> <id>20</id> <stage>40</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_249"> <id>89</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_250"> <id>20</id> <stage>39</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_251"> <id>90</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_252"> <id>20</id> <stage>38</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_253"> <id>91</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_254"> <id>20</id> <stage>37</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_255"> <id>92</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_256"> <id>20</id> <stage>36</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_257"> <id>93</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_258"> <id>20</id> <stage>35</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_259"> <id>94</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_260"> <id>20</id> <stage>34</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_261"> <id>95</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_262"> <id>20</id> <stage>33</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_263"> <id>96</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_264"> <id>20</id> <stage>32</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_265"> <id>97</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_266"> <id>20</id> <stage>31</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_267"> <id>98</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_268"> <id>20</id> <stage>30</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_269"> <id>99</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_270"> <id>20</id> <stage>29</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_271"> <id>100</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_272"> <id>20</id> <stage>28</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_273"> <id>101</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_274"> <id>20</id> <stage>27</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_275"> <id>102</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_276"> <id>20</id> <stage>26</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_277"> <id>103</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_278"> <id>20</id> <stage>25</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_279"> <id>104</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_280"> <id>20</id> <stage>24</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_281"> <id>105</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_282"> <id>20</id> <stage>23</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_283"> <id>106</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_284"> <id>20</id> <stage>22</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_285"> <id>107</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_286"> <id>20</id> <stage>21</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_287"> <id>108</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_288"> <id>20</id> <stage>20</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_289"> <id>109</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_290"> <id>20</id> <stage>19</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_291"> <id>110</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_292"> <id>20</id> <stage>18</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_293"> <id>111</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_294"> <id>20</id> <stage>17</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_295"> <id>112</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_296"> <id>20</id> <stage>16</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_297"> <id>113</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_298"> <id>20</id> <stage>15</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_299"> <id>114</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_300"> <id>20</id> <stage>14</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_301"> <id>115</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_302"> <id>20</id> <stage>13</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_303"> <id>116</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_304"> <id>20</id> <stage>12</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_305"> <id>117</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_306"> <id>20</id> <stage>11</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_307"> <id>118</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_308"> <id>20</id> <stage>10</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_309"> <id>119</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_310"> <id>20</id> <stage>9</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_311"> <id>120</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_312"> <id>20</id> <stage>8</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_313"> <id>121</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_314"> <id>20</id> <stage>7</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_315"> <id>122</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_316"> <id>20</id> <stage>6</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_317"> <id>123</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_318"> <id>20</id> <stage>5</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_319"> <id>124</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_320"> <id>20</id> <stage>4</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_321"> <id>125</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_322"> <id>20</id> <stage>3</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_323"> <id>126</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_324"> <id>20</id> <stage>2</stage> <latency>126</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_325"> <id>127</id> <operations> <count>11</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_326"> <id>5</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_327"> <id>6</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_328"> <id>7</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_329"> <id>8</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_330"> <id>9</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_331"> <id>14</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_332"> <id>15</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_333"> <id>16</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_334"> <id>19</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_335"> <id>20</id> <stage>1</stage> <latency>126</latency> </item> <item class_id_reference="28" object_id="_336"> <id>21</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_337"> <id>128</id> <operations> <count>5</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_338"> <id>23</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_339"> <id>24</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_340"> <id>25</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_341"> <id>26</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_342"> <id>27</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_343"> <id>129</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_344"> <id>32</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_345"> <id>130</id> <operations> <count>6</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_346"> <id>29</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_347"> <id>30</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_348"> <id>31</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_349"> <id>33</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_350"> <id>34</id> <stage>1</stage> <latency>1</latency> </item> <item class_id_reference="28" object_id="_351"> <id>35</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> <item class_id_reference="26" object_id="_352"> <id>131</id> <operations> <count>1</count> <item_version>0</item_version> <item class_id_reference="28" object_id="_353"> <id>37</id> <stage>1</stage> <latency>1</latency> </item> </operations> </item> </states> <transitions class_id="29" tracking_level="0" version="0"> <count>131</count> <item_version>0</item_version> <item class_id="30" tracking_level="1" version="0" object_id="_354"> <inState>1</inState> <outState>2</outState> <condition class_id="31" tracking_level="0" version="0"> <id>137</id> <sop class_id="32" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="33" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_355"> <inState>2</inState> <outState>3</outState> <condition> <id>138</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_356"> <inState>3</inState> <outState>4</outState> <condition> <id>139</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_357"> <inState>4</inState> <outState>5</outState> <condition> <id>140</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_358"> <inState>5</inState> <outState>6</outState> <condition> <id>141</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_359"> <inState>6</inState> <outState>7</outState> <condition> <id>142</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_360"> <inState>7</inState> <outState>8</outState> <condition> <id>143</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_361"> <inState>8</inState> <outState>9</outState> <condition> <id>144</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_362"> <inState>9</inState> <outState>10</outState> <condition> <id>145</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_363"> <inState>10</inState> <outState>11</outState> <condition> <id>146</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_364"> <inState>11</inState> <outState>12</outState> <condition> <id>147</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_365"> <inState>12</inState> <outState>13</outState> <condition> <id>148</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_366"> <inState>13</inState> <outState>14</outState> <condition> <id>149</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_367"> <inState>14</inState> <outState>15</outState> <condition> <id>150</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_368"> <inState>15</inState> <outState>16</outState> <condition> <id>151</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_369"> <inState>16</inState> <outState>17</outState> <condition> <id>152</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_370"> <inState>17</inState> <outState>18</outState> <condition> <id>153</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_371"> <inState>18</inState> <outState>19</outState> <condition> <id>154</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_372"> <inState>19</inState> <outState>20</outState> <condition> <id>155</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_373"> <inState>20</inState> <outState>21</outState> <condition> <id>156</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_374"> <inState>21</inState> <outState>22</outState> <condition> <id>157</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_375"> <inState>22</inState> <outState>23</outState> <condition> <id>158</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_376"> <inState>23</inState> <outState>24</outState> <condition> <id>159</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_377"> <inState>24</inState> <outState>25</outState> <condition> <id>160</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_378"> <inState>25</inState> <outState>26</outState> <condition> <id>161</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_379"> <inState>26</inState> <outState>27</outState> <condition> <id>162</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_380"> <inState>27</inState> <outState>28</outState> <condition> <id>163</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_381"> <inState>28</inState> <outState>29</outState> <condition> <id>164</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_382"> <inState>29</inState> <outState>30</outState> <condition> <id>165</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_383"> <inState>30</inState> <outState>31</outState> <condition> <id>166</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_384"> <inState>31</inState> <outState>32</outState> <condition> <id>167</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_385"> <inState>32</inState> <outState>33</outState> <condition> <id>168</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_386"> <inState>33</inState> <outState>34</outState> <condition> <id>169</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_387"> <inState>34</inState> <outState>35</outState> <condition> <id>170</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_388"> <inState>35</inState> <outState>36</outState> <condition> <id>171</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_389"> <inState>36</inState> <outState>37</outState> <condition> <id>172</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_390"> <inState>37</inState> <outState>38</outState> <condition> <id>173</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_391"> <inState>38</inState> <outState>39</outState> <condition> <id>174</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_392"> <inState>39</inState> <outState>40</outState> <condition> <id>175</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_393"> <inState>40</inState> <outState>41</outState> <condition> <id>176</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_394"> <inState>41</inState> <outState>42</outState> <condition> <id>177</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_395"> <inState>42</inState> <outState>43</outState> <condition> <id>178</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_396"> <inState>43</inState> <outState>44</outState> <condition> <id>179</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_397"> <inState>44</inState> <outState>45</outState> <condition> <id>180</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_398"> <inState>45</inState> <outState>46</outState> <condition> <id>181</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_399"> <inState>46</inState> <outState>47</outState> <condition> <id>182</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_400"> <inState>47</inState> <outState>48</outState> <condition> <id>183</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_401"> <inState>48</inState> <outState>49</outState> <condition> <id>184</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_402"> <inState>49</inState> <outState>50</outState> <condition> <id>185</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_403"> <inState>50</inState> <outState>51</outState> <condition> <id>186</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_404"> <inState>51</inState> <outState>52</outState> <condition> <id>187</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_405"> <inState>52</inState> <outState>53</outState> <condition> <id>188</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_406"> <inState>53</inState> <outState>54</outState> <condition> <id>189</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_407"> <inState>54</inState> <outState>55</outState> <condition> <id>190</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_408"> <inState>55</inState> <outState>56</outState> <condition> <id>191</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_409"> <inState>56</inState> <outState>57</outState> <condition> <id>192</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_410"> <inState>57</inState> <outState>58</outState> <condition> <id>193</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_411"> <inState>58</inState> <outState>59</outState> <condition> <id>194</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_412"> <inState>59</inState> <outState>60</outState> <condition> <id>195</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_413"> <inState>60</inState> <outState>61</outState> <condition> <id>196</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_414"> <inState>61</inState> <outState>62</outState> <condition> <id>197</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_415"> <inState>62</inState> <outState>63</outState> <condition> <id>198</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_416"> <inState>63</inState> <outState>64</outState> <condition> <id>199</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_417"> <inState>64</inState> <outState>65</outState> <condition> <id>200</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_418"> <inState>65</inState> <outState>66</outState> <condition> <id>201</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_419"> <inState>66</inState> <outState>67</outState> <condition> <id>202</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_420"> <inState>67</inState> <outState>68</outState> <condition> <id>203</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_421"> <inState>68</inState> <outState>69</outState> <condition> <id>204</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_422"> <inState>69</inState> <outState>70</outState> <condition> <id>205</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_423"> <inState>70</inState> <outState>71</outState> <condition> <id>206</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_424"> <inState>71</inState> <outState>72</outState> <condition> <id>207</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_425"> <inState>72</inState> <outState>73</outState> <condition> <id>208</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_426"> <inState>73</inState> <outState>74</outState> <condition> <id>209</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_427"> <inState>74</inState> <outState>75</outState> <condition> <id>210</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_428"> <inState>75</inState> <outState>76</outState> <condition> <id>211</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_429"> <inState>76</inState> <outState>77</outState> <condition> <id>212</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_430"> <inState>77</inState> <outState>78</outState> <condition> <id>213</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_431"> <inState>78</inState> <outState>79</outState> <condition> <id>214</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_432"> <inState>79</inState> <outState>80</outState> <condition> <id>215</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_433"> <inState>80</inState> <outState>81</outState> <condition> <id>216</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_434"> <inState>81</inState> <outState>82</outState> <condition> <id>217</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_435"> <inState>82</inState> <outState>83</outState> <condition> <id>218</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_436"> <inState>83</inState> <outState>84</outState> <condition> <id>219</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_437"> <inState>84</inState> <outState>85</outState> <condition> <id>220</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_438"> <inState>85</inState> <outState>86</outState> <condition> <id>221</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_439"> <inState>86</inState> <outState>87</outState> <condition> <id>222</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_440"> <inState>87</inState> <outState>88</outState> <condition> <id>223</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_441"> <inState>88</inState> <outState>89</outState> <condition> <id>224</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_442"> <inState>89</inState> <outState>90</outState> <condition> <id>225</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_443"> <inState>90</inState> <outState>91</outState> <condition> <id>226</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_444"> <inState>91</inState> <outState>92</outState> <condition> <id>227</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_445"> <inState>92</inState> <outState>93</outState> <condition> <id>228</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_446"> <inState>93</inState> <outState>94</outState> <condition> <id>229</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_447"> <inState>94</inState> <outState>95</outState> <condition> <id>230</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_448"> <inState>95</inState> <outState>96</outState> <condition> <id>231</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_449"> <inState>96</inState> <outState>97</outState> <condition> <id>232</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_450"> <inState>97</inState> <outState>98</outState> <condition> <id>233</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_451"> <inState>98</inState> <outState>99</outState> <condition> <id>234</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_452"> <inState>99</inState> <outState>100</outState> <condition> <id>235</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_453"> <inState>100</inState> <outState>101</outState> <condition> <id>236</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_454"> <inState>101</inState> <outState>102</outState> <condition> <id>237</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_455"> <inState>102</inState> <outState>103</outState> <condition> <id>238</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_456"> <inState>103</inState> <outState>104</outState> <condition> <id>239</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_457"> <inState>104</inState> <outState>105</outState> <condition> <id>240</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_458"> <inState>105</inState> <outState>106</outState> <condition> <id>241</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_459"> <inState>106</inState> <outState>107</outState> <condition> <id>242</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_460"> <inState>107</inState> <outState>108</outState> <condition> <id>243</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_461"> <inState>108</inState> <outState>109</outState> <condition> <id>244</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_462"> <inState>109</inState> <outState>110</outState> <condition> <id>245</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_463"> <inState>110</inState> <outState>111</outState> <condition> <id>246</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_464"> <inState>111</inState> <outState>112</outState> <condition> <id>247</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_465"> <inState>112</inState> <outState>113</outState> <condition> <id>248</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_466"> <inState>113</inState> <outState>114</outState> <condition> <id>249</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_467"> <inState>114</inState> <outState>115</outState> <condition> <id>250</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_468"> <inState>115</inState> <outState>116</outState> <condition> <id>251</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_469"> <inState>116</inState> <outState>117</outState> <condition> <id>252</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_470"> <inState>117</inState> <outState>118</outState> <condition> <id>253</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_471"> <inState>118</inState> <outState>119</outState> <condition> <id>254</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_472"> <inState>119</inState> <outState>120</outState> <condition> <id>255</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_473"> <inState>120</inState> <outState>121</outState> <condition> <id>256</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_474"> <inState>121</inState> <outState>122</outState> <condition> <id>257</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_475"> <inState>122</inState> <outState>123</outState> <condition> <id>258</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_476"> <inState>123</inState> <outState>124</outState> <condition> <id>259</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_477"> <inState>124</inState> <outState>125</outState> <condition> <id>260</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_478"> <inState>125</inState> <outState>126</outState> <condition> <id>261</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_479"> <inState>126</inState> <outState>127</outState> <condition> <id>262</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_480"> <inState>127</inState> <outState>128</outState> <condition> <id>264</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_481"> <inState>129</inState> <outState>130</outState> <condition> <id>272</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_482"> <inState>130</inState> <outState>128</outState> <condition> <id>273</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>0</count> <item_version>0</item_version> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_483"> <inState>128</inState> <outState>131</outState> <condition> <id>271</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item class_id="34" tracking_level="0" version="0"> <first class_id="35" tracking_level="0" version="0"> <first>25</first> <second>0</second> </first> <second>1</second> </item> </item> </sop> </condition> </item> <item class_id_reference="30" object_id="_484"> <inState>128</inState> <outState>129</outState> <condition> <id>274</id> <sop> <count>1</count> <item_version>0</item_version> <item> <count>1</count> <item_version>0</item_version> <item> <first> <first>25</first> <second>0</second> </first> <second>0</second> </item> </item> </sop> </condition> </item> </transitions> </fsm> <res class_id="36" tracking_level="1" version="0" object_id="_485"> <dp_component_resource class_id="37" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_resource> <dp_expression_resource> <count>7</count> <item_version>0</item_version> <item class_id="38" tracking_level="0" version="0"> <first>ap_block_pp0_stage0_01001 ( and ) </first> <second class_id="39" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="40" tracking_level="0" version="0"> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state1 ( or ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_block_state129_pp0_stage0_iter1 ( and ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_pp0 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>1</second> </item> <item> <first>(1P1)</first> <second>2</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1 ( xor ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>2</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>2</second> </item> </second> </item> <item> <first>i_fu_172_p2 ( + ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>31</second> </item> <item> <first>(1P1)</first> <second>1</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>38</second> </item> </second> </item> <item> <first>tmp_i_i_i_fu_167_p2 ( icmp ) </first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0P0)</first> <second>32</second> </item> <item> <first>(1P1)</first> <second>32</second> </item> <item> <first>FF</first> <second>0</second> </item> <item> <first>LUT</first> <second>20</second> </item> </second> </item> </dp_expression_resource> <dp_fifo_resource> <count>0</count> <item_version>0</item_version> </dp_fifo_resource> <dp_memory_resource> <count>0</count> <item_version>0</item_version> </dp_memory_resource> <dp_multiplexer_resource> <count>10</count> <item_version>0</item_version> <item> <first>ap_NS_fsm</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>130</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>130</second> </item> <item> <first>LUT</first> <second>585</second> </item> </second> </item> <item> <first>ap_done</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>ap_sig_ioackin_m_axi_var_input_0_2_V_ARREADY</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>coalesced_data_num_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>i_i_i_i_reg_128</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>31</second> </item> <item> <first>(2Count)</first> <second>62</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>var_input_0_2_V_blk_n_AR</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>var_input_0_2_V_blk_n_R</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> <item> <first>var_input_0_2_V_offset_blk_n</first> <second> <count>4</count> <item_version>0</item_version> <item> <first>(0Size)</first> <second>2</second> </item> <item> <first>(1Bits)</first> <second>1</second> </item> <item> <first>(2Count)</first> <second>2</second> </item> <item> <first>LUT</first> <second>9</second> </item> </second> </item> </dp_multiplexer_resource> <dp_register_resource> <count>12</count> <item_version>0</item_version> <item> <first>ap_CS_fsm</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>129</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>129</second> </item> </second> </item> <item> <first>ap_done_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter0</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter1</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_enable_reg_pp0_iter2</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>ap_reg_ioackin_m_axi_var_input_0_2_V_ARREADY</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>i_i_i_i_reg_128</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>31</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>31</second> </item> </second> </item> <item> <first>tmp_V_reg_204</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>512</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>512</second> </item> </second> </item> <item> <first>tmp_i_i_i_reg_195</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_i_i_i_reg_195_pp0_iter1_reg</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>1</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>1</second> </item> </second> </item> <item> <first>tmp_reg_183</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>32</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>32</second> </item> </second> </item> <item> <first>var_input_0_2_V_offset1_i_reg_178</first> <second> <count>3</count> <item_version>0</item_version> <item> <first>(Bits)</first> <second>26</second> </item> <item> <first>(Consts)</first> <second>0</second> </item> <item> <first>FF</first> <second>26</second> </item> </second> </item> </dp_register_resource> <dp_dsp_resource> <count>0</count> <item_version>0</item_version> </dp_dsp_resource> <dp_component_map class_id="41" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_component_map> <dp_expression_map> <count>2</count> <item_version>0</item_version> <item class_id="42" tracking_level="0" version="0"> <first>i_fu_172_p2 ( + ) </first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_i_i_i_fu_167_p2 ( icmp ) </first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> </dp_expression_map> <dp_fifo_map> <count>0</count> <item_version>0</item_version> </dp_fifo_map> <dp_memory_map> <count>0</count> <item_version>0</item_version> </dp_memory_map> </res> <node_label_latency class_id="43" tracking_level="0" version="0"> <count>17</count> <item_version>0</item_version> <item class_id="44" tracking_level="0" version="0"> <first>10</first> <second class_id="45" 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>1</first> <second>0</second> </second> </item> <item> <first>13</first> <second> <first>1</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>20</first> <second> <first>1</first> <second>125</second> </second> </item> <item> <first>21</first> <second> <first>126</first> <second>0</second> </second> </item> <item> <first>23</first> <second> <first>127</first> <second>0</second> </second> </item> <item> <first>24</first> <second> <first>127</first> <second>0</second> </second> </item> <item> <first>25</first> <second> <first>127</first> <second>0</second> </second> </item> <item> <first>26</first> <second> <first>127</first> <second>0</second> </second> </item> <item> <first>27</first> <second> <first>127</first> <second>0</second> </second> </item> <item> <first>32</first> <second> <first>128</first> <second>0</second> </second> </item> <item> <first>33</first> <second> <first>129</first> <second>0</second> </second> </item> <item> <first>35</first> <second> <first>129</first> <second>0</second> </second> </item> <item> <first>37</first> <second> <first>130</first> <second>0</second> </second> </item> </node_label_latency> <bblk_ent_exit class_id="46" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="47" tracking_level="0" version="0"> <first>22</first> <second class_id="48" tracking_level="0" version="0"> <first>0</first> <second>126</second> </second> </item> <item> <first>28</first> <second> <first>127</first> <second>127</second> </second> </item> <item> <first>36</first> <second> <first>128</first> <second>129</second> </second> </item> <item> <first>38</first> <second> <first>128</first> <second>128</second> </second> </item> </bblk_ent_exit> <regions class_id="49" tracking_level="0" version="0"> <count>1</count> <item_version>0</item_version> <item class_id="50" tracking_level="1" version="0" object_id="_486"> <region_name>load_epoch</region_name> <basic_blocks> <count>2</count> <item_version>0</item_version> <item>28</item> <item>36</item> </basic_blocks> <nodes> <count>0</count> <item_version>0</item_version> </nodes> <anchor_node>-1</anchor_node> <region_type>8</region_type> <interval>1</interval> <pipe_depth>3</pipe_depth> </item> </regions> <dp_fu_nodes class_id="51" tracking_level="0" version="0"> <count>13</count> <item_version>0</item_version> <item class_id="52" tracking_level="0" version="0"> <first>98</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> <item> <first>104</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>110</first> <second> <count>126</count> <item_version>0</item_version> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> </second> </item> <item> <first>116</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>121</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>132</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>139</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>149</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>153</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>156</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>163</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>167</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>172</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> </dp_fu_nodes> <dp_fu_nodes_expression class_id="54" tracking_level="0" version="0"> <count>8</count> <item_version>0</item_version> <item class_id="55" tracking_level="0" version="0"> <first>i_cast_i_i_i_fu_163</first> <second> <count>1</count> <item_version>0</item_version> <item>24</item> </second> </item> <item> <first>i_fu_172</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>i_i_i_i_phi_fu_132</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>tmp_fu_149</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>tmp_i_fu_153</first> <second> <count>1</count> <item_version>0</item_version> <item>12</item> </second> </item> <item> <first>tmp_i_i_i_fu_167</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>var_input_0_2_V_addr_fu_156</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>var_input_0_2_V_offset1_i_fu_139</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_fu_nodes_expression> <dp_fu_nodes_module> <count>0</count> <item_version>0</item_version> </dp_fu_nodes_module> <dp_fu_nodes_io> <count>5</count> <item_version>0</item_version> <item> <first>coalesced_data_num_read_read_fu_104</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> <item> <first>empty_nbwrite_fu_121</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> <item> <first>grp_readreq_fu_110</first> <second> <count>126</count> <item_version>0</item_version> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> <item>20</item> </second> </item> <item> <first>tmp_V_read_fu_116</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>var_input_0_2_V_offset_read_read_fu_98</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </dp_fu_nodes_io> <return_ports> <count>0</count> <item_version>0</item_version> </return_ports> <dp_mem_port_nodes class_id="56" tracking_level="0" version="0"> <count>0</count> <item_version>0</item_version> </dp_mem_port_nodes> <dp_reg_nodes> <count>7</count> <item_version>0</item_version> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>178</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> <item> <first>183</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>189</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>195</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>199</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>204</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> </dp_reg_nodes> <dp_regname_nodes> <count>7</count> <item_version>0</item_version> <item> <first>i_i_i_i_reg_128</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> <item> <first>i_reg_199</first> <second> <count>1</count> <item_version>0</item_version> <item>26</item> </second> </item> <item> <first>tmp_V_reg_204</first> <second> <count>1</count> <item_version>0</item_version> <item>32</item> </second> </item> <item> <first>tmp_i_i_i_reg_195</first> <second> <count>1</count> <item_version>0</item_version> <item>25</item> </second> </item> <item> <first>tmp_reg_183</first> <second> <count>1</count> <item_version>0</item_version> <item>18</item> </second> </item> <item> <first>var_input_0_2_V_addr_reg_189</first> <second> <count>1</count> <item_version>0</item_version> <item>13</item> </second> </item> <item> <first>var_input_0_2_V_offset1_i_reg_178</first> <second> <count>1</count> <item_version>0</item_version> <item>11</item> </second> </item> </dp_regname_nodes> <dp_reg_phi> <count>1</count> <item_version>0</item_version> <item> <first>128</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_reg_phi> <dp_regname_phi> <count>1</count> <item_version>0</item_version> <item> <first>i_i_i_i_reg_128</first> <second> <count>1</count> <item_version>0</item_version> <item>23</item> </second> </item> </dp_regname_phi> <dp_port_io_nodes class_id="57" tracking_level="0" version="0"> <count>4</count> <item_version>0</item_version> <item class_id="58" tracking_level="0" version="0"> <first>coalesced_data_num</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>17</item> </second> </item> </second> </item> <item> <first>input_stream_0_2_V_V</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>nbwrite</first> <second> <count>1</count> <item_version>0</item_version> <item>33</item> </second> </item> </second> </item> <item> <first>var_input_0_2_V</first> <second> <count>0</count> <item_version>0</item_version> </second> </item> <item> <first>var_input_0_2_V_offset</first> <second> <count>1</count> <item_version>0</item_version> <item> <first>read</first> <second> <count>1</count> <item_version>0</item_version> <item>10</item> </second> </item> </second> </item> </dp_port_io_nodes> <port2core class_id="59" tracking_level="0" version="0"> <count>3</count> <item_version>0</item_version> <item class_id="60" tracking_level="0" version="0"> <first>1</first> <second>FIFO_SRL</second> </item> <item> <first>3</first> <second>FIFO</second> </item> <item> <first>4</first> <second>FIFO</second> </item> </port2core> <node2core> <count>0</count> <item_version>0</item_version> </node2core> </syndb> </boost_serialization>
30.748498
137
0.445452
4a16c124823e7766a54aa335d2ada09862e47b45
52,163
adb
Ada
Validation/pyFrame3DD-master/gcc-master/gcc/ada/sem_aux.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/sem_aux.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
Validation/pyFrame3DD-master/gcc-master/gcc/ada/sem_aux.adb
djamal2727/Main-Bearing-Analytical-Model
2f00c2219c71be0175c6f4f8f1d4cca231d97096
[ "Apache-2.0" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S E M _ A U X -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ with Atree; use Atree; with Einfo; use Einfo; with Nlists; use Nlists; with Snames; use Snames; with Stand; use Stand; with Uintp; use Uintp; package body Sem_Aux is ---------------------- -- Ancestor_Subtype -- ---------------------- function Ancestor_Subtype (Typ : Entity_Id) return Entity_Id is begin -- If this is first subtype, or is a base type, then there is no -- ancestor subtype, so we return Empty to indicate this fact. if Is_First_Subtype (Typ) or else Is_Base_Type (Typ) then return Empty; end if; declare D : constant Node_Id := Declaration_Node (Typ); begin -- If we have a subtype declaration, get the ancestor subtype if Nkind (D) = N_Subtype_Declaration then if Nkind (Subtype_Indication (D)) = N_Subtype_Indication then return Entity (Subtype_Mark (Subtype_Indication (D))); else return Entity (Subtype_Indication (D)); end if; -- If not, then no subtype indication is available else return Empty; end if; end; end Ancestor_Subtype; -------------------- -- Available_View -- -------------------- function Available_View (Ent : Entity_Id) return Entity_Id is begin -- Obtain the non-limited view (if available) if Has_Non_Limited_View (Ent) then return Get_Full_View (Non_Limited_View (Ent)); -- In all other cases, return entity unchanged else return Ent; end if; end Available_View; -------------------- -- Constant_Value -- -------------------- function Constant_Value (Ent : Entity_Id) return Node_Id is D : constant Node_Id := Declaration_Node (Ent); Full_D : Node_Id; begin -- If we have no declaration node, then return no constant value. Not -- clear how this can happen, but it does sometimes and this is the -- safest approach. if No (D) then return Empty; -- Normal case where a declaration node is present elsif Nkind (D) = N_Object_Renaming_Declaration then return Renamed_Object (Ent); -- If this is a component declaration whose entity is a constant, it is -- a prival within a protected function (and so has no constant value). elsif Nkind (D) = N_Component_Declaration then return Empty; -- If there is an expression, return it elsif Present (Expression (D)) then return Expression (D); -- For a constant, see if we have a full view elsif Ekind (Ent) = E_Constant and then Present (Full_View (Ent)) then Full_D := Parent (Full_View (Ent)); -- The full view may have been rewritten as an object renaming if Nkind (Full_D) = N_Object_Renaming_Declaration then return Name (Full_D); else return Expression (Full_D); end if; -- Otherwise we have no expression to return else return Empty; end if; end Constant_Value; --------------------------------- -- Corresponding_Unsigned_Type -- --------------------------------- function Corresponding_Unsigned_Type (Typ : Entity_Id) return Entity_Id is pragma Assert (Is_Signed_Integer_Type (Typ)); Siz : constant Uint := Esize (Base_Type (Typ)); begin if Siz = Esize (Standard_Short_Short_Integer) then return Standard_Short_Short_Unsigned; elsif Siz = Esize (Standard_Short_Integer) then return Standard_Short_Unsigned; elsif Siz = Esize (Standard_Unsigned) then return Standard_Unsigned; elsif Siz = Esize (Standard_Long_Integer) then return Standard_Long_Unsigned; elsif Siz = Esize (Standard_Long_Long_Integer) then return Standard_Long_Long_Unsigned; else raise Program_Error; end if; end Corresponding_Unsigned_Type; ----------------------------- -- Enclosing_Dynamic_Scope -- ----------------------------- function Enclosing_Dynamic_Scope (Ent : Entity_Id) return Entity_Id is S : Entity_Id; begin -- The following test is an error defense against some syntax errors -- that can leave scopes very messed up. if Ent = Standard_Standard then return Ent; end if; -- Normal case, search enclosing scopes -- Note: the test for Present (S) should not be required, it defends -- against an ill-formed tree. S := Scope (Ent); loop -- If we somehow got an empty value for Scope, the tree must be -- malformed. Rather than blow up we return Standard in this case. if No (S) then return Standard_Standard; -- Quit if we get to standard or a dynamic scope. We must also -- handle enclosing scopes that have a full view; required to -- locate enclosing scopes that are synchronized private types -- whose full view is a task type. elsif S = Standard_Standard or else Is_Dynamic_Scope (S) or else (Is_Private_Type (S) and then Present (Full_View (S)) and then Is_Dynamic_Scope (Full_View (S))) then return S; -- Otherwise keep climbing else S := Scope (S); end if; end loop; end Enclosing_Dynamic_Scope; ------------------------ -- First_Discriminant -- ------------------------ function First_Discriminant (Typ : Entity_Id) return Entity_Id is Ent : Entity_Id; begin pragma Assert (Has_Discriminants (Typ) or else Has_Unknown_Discriminants (Typ)); Ent := First_Entity (Typ); -- The discriminants are not necessarily contiguous, because access -- discriminants will generate itypes. They are not the first entities -- either because the tag must be ahead of them. if Chars (Ent) = Name_uTag then Next_Entity (Ent); end if; -- Skip all hidden stored discriminants if any while Present (Ent) loop exit when Ekind (Ent) = E_Discriminant and then not Is_Completely_Hidden (Ent); Next_Entity (Ent); end loop; -- Call may be on a private type with unknown discriminants, in which -- case Ent is Empty, and as per the spec, we return Empty in this case. -- Historical note: The assertion in previous versions that Ent is a -- discriminant was overly cautious and prevented convenient application -- of this function in the gnatprove context. return Ent; end First_Discriminant; ------------------------------- -- First_Stored_Discriminant -- ------------------------------- function First_Stored_Discriminant (Typ : Entity_Id) return Entity_Id is Ent : Entity_Id; function Has_Completely_Hidden_Discriminant (Typ : Entity_Id) return Boolean; -- Scans the Discriminants to see whether any are Completely_Hidden -- (the mechanism for describing non-specified stored discriminants) -- Note that the entity list for the type may contain anonymous access -- types created by expressions that constrain access discriminants. ---------------------------------------- -- Has_Completely_Hidden_Discriminant -- ---------------------------------------- function Has_Completely_Hidden_Discriminant (Typ : Entity_Id) return Boolean is Ent : Entity_Id; begin pragma Assert (Ekind (Typ) = E_Discriminant); Ent := Typ; while Present (Ent) loop -- Skip anonymous types that may be created by expressions -- used as discriminant constraints on inherited discriminants. if Is_Itype (Ent) then null; elsif Ekind (Ent) = E_Discriminant and then Is_Completely_Hidden (Ent) then return True; end if; Next_Entity (Ent); end loop; return False; end Has_Completely_Hidden_Discriminant; -- Start of processing for First_Stored_Discriminant begin pragma Assert (Has_Discriminants (Typ) or else Has_Unknown_Discriminants (Typ)); Ent := First_Entity (Typ); if Chars (Ent) = Name_uTag then Next_Entity (Ent); end if; if Has_Completely_Hidden_Discriminant (Ent) then while Present (Ent) loop exit when Ekind (Ent) = E_Discriminant and then Is_Completely_Hidden (Ent); Next_Entity (Ent); end loop; end if; pragma Assert (Ekind (Ent) = E_Discriminant); return Ent; end First_Stored_Discriminant; ------------------- -- First_Subtype -- ------------------- function First_Subtype (Typ : Entity_Id) return Entity_Id is B : constant Entity_Id := Base_Type (Typ); F : constant Node_Id := Freeze_Node (B); Ent : Entity_Id; begin -- If the base type has no freeze node, it is a type in Standard, and -- always acts as its own first subtype, except where it is one of the -- predefined integer types. If the type is formal, it is also a first -- subtype, and its base type has no freeze node. On the other hand, a -- subtype of a generic formal is not its own first subtype. Its base -- type, if anonymous, is attached to the formal type declaration from -- which the first subtype is obtained. if No (F) then if B = Base_Type (Standard_Integer) then return Standard_Integer; elsif B = Base_Type (Standard_Long_Integer) then return Standard_Long_Integer; elsif B = Base_Type (Standard_Short_Short_Integer) then return Standard_Short_Short_Integer; elsif B = Base_Type (Standard_Short_Integer) then return Standard_Short_Integer; elsif B = Base_Type (Standard_Long_Long_Integer) then return Standard_Long_Long_Integer; elsif Is_Generic_Type (Typ) then if Present (Parent (B)) then return Defining_Identifier (Parent (B)); else return Defining_Identifier (Associated_Node_For_Itype (B)); end if; else return B; end if; -- Otherwise we check the freeze node, if it has a First_Subtype_Link -- then we use that link, otherwise (happens with some Itypes), we use -- the base type itself. else Ent := First_Subtype_Link (F); if Present (Ent) then return Ent; else return B; end if; end if; end First_Subtype; ------------------------- -- First_Tag_Component -- ------------------------- function First_Tag_Component (Typ : Entity_Id) return Entity_Id is Comp : Entity_Id; Ctyp : Entity_Id; begin Ctyp := Typ; pragma Assert (Is_Tagged_Type (Ctyp)); if Is_Class_Wide_Type (Ctyp) then Ctyp := Root_Type (Ctyp); end if; if Is_Private_Type (Ctyp) then Ctyp := Underlying_Type (Ctyp); -- If the underlying type is missing then the source program has -- errors and there is nothing else to do (the full-type declaration -- associated with the private type declaration is missing). if No (Ctyp) then return Empty; end if; end if; Comp := First_Entity (Ctyp); while Present (Comp) loop if Is_Tag (Comp) then return Comp; end if; Next_Entity (Comp); end loop; -- No tag component found return Empty; end First_Tag_Component; --------------------- -- Get_Binary_Nkind -- --------------------- function Get_Binary_Nkind (Op : Entity_Id) return Node_Kind is begin case Chars (Op) is when Name_Op_Add => return N_Op_Add; when Name_Op_Concat => return N_Op_Concat; when Name_Op_Expon => return N_Op_Expon; when Name_Op_Subtract => return N_Op_Subtract; when Name_Op_Mod => return N_Op_Mod; when Name_Op_Multiply => return N_Op_Multiply; when Name_Op_Divide => return N_Op_Divide; when Name_Op_Rem => return N_Op_Rem; when Name_Op_And => return N_Op_And; when Name_Op_Eq => return N_Op_Eq; when Name_Op_Ge => return N_Op_Ge; when Name_Op_Gt => return N_Op_Gt; when Name_Op_Le => return N_Op_Le; when Name_Op_Lt => return N_Op_Lt; when Name_Op_Ne => return N_Op_Ne; when Name_Op_Or => return N_Op_Or; when Name_Op_Xor => return N_Op_Xor; when others => raise Program_Error; end case; end Get_Binary_Nkind; ----------------------- -- Get_Called_Entity -- ----------------------- function Get_Called_Entity (Call : Node_Id) return Entity_Id is Nam : constant Node_Id := Name (Call); Id : Entity_Id; begin if Nkind (Nam) = N_Explicit_Dereference then Id := Etype (Nam); pragma Assert (Ekind (Id) = E_Subprogram_Type); elsif Nkind (Nam) = N_Selected_Component then Id := Entity (Selector_Name (Nam)); elsif Nkind (Nam) = N_Indexed_Component then Id := Entity (Selector_Name (Prefix (Nam))); else Id := Entity (Nam); end if; return Id; end Get_Called_Entity; ------------------ -- Get_Rep_Item -- ------------------ function Get_Rep_Item (E : Entity_Id; Nam : Name_Id; Check_Parents : Boolean := True) return Node_Id is N : Node_Id; begin N := First_Rep_Item (E); while Present (N) loop -- Only one of Priority / Interrupt_Priority can be specified, so -- return whichever one is present to catch illegal duplication. if Nkind (N) = N_Pragma and then (Pragma_Name_Unmapped (N) = Nam or else (Nam = Name_Priority and then Pragma_Name (N) = Name_Interrupt_Priority) or else (Nam = Name_Interrupt_Priority and then Pragma_Name (N) = Name_Priority)) then if Check_Parents then return N; -- If Check_Parents is False, return N if the pragma doesn't -- appear in the Rep_Item chain of the parent. else declare Par : constant Entity_Id := Nearest_Ancestor (E); -- This node represents the parent type of type E (if any) begin if No (Par) then return N; elsif not Present_In_Rep_Item (Par, N) then return N; end if; end; end if; elsif Nkind (N) = N_Attribute_Definition_Clause and then (Chars (N) = Nam or else (Nam = Name_Priority and then Chars (N) = Name_Interrupt_Priority)) then if Check_Parents or else Entity (N) = E then return N; end if; elsif Nkind (N) = N_Aspect_Specification and then (Chars (Identifier (N)) = Nam or else (Nam = Name_Priority and then Chars (Identifier (N)) = Name_Interrupt_Priority)) then if Check_Parents then return N; elsif Entity (N) = E then return N; end if; -- A Ghost-related aspect, if disabled, may have been replaced by a -- null statement. elsif Nkind (N) = N_Null_Statement then N := Original_Node (N); end if; Next_Rep_Item (N); end loop; return Empty; end Get_Rep_Item; function Get_Rep_Item (E : Entity_Id; Nam1 : Name_Id; Nam2 : Name_Id; Check_Parents : Boolean := True) return Node_Id is Nam1_Item : constant Node_Id := Get_Rep_Item (E, Nam1, Check_Parents); Nam2_Item : constant Node_Id := Get_Rep_Item (E, Nam2, Check_Parents); N : Node_Id; begin -- Check both Nam1_Item and Nam2_Item are present if No (Nam1_Item) then return Nam2_Item; elsif No (Nam2_Item) then return Nam1_Item; end if; -- Return the first node encountered in the list N := First_Rep_Item (E); while Present (N) loop if N = Nam1_Item or else N = Nam2_Item then return N; end if; Next_Rep_Item (N); end loop; return Empty; end Get_Rep_Item; -------------------- -- Get_Rep_Pragma -- -------------------- function Get_Rep_Pragma (E : Entity_Id; Nam : Name_Id; Check_Parents : Boolean := True) return Node_Id is N : constant Node_Id := Get_Rep_Item (E, Nam, Check_Parents); begin if Present (N) and then Nkind (N) = N_Pragma then return N; end if; return Empty; end Get_Rep_Pragma; function Get_Rep_Pragma (E : Entity_Id; Nam1 : Name_Id; Nam2 : Name_Id; Check_Parents : Boolean := True) return Node_Id is Nam1_Item : constant Node_Id := Get_Rep_Pragma (E, Nam1, Check_Parents); Nam2_Item : constant Node_Id := Get_Rep_Pragma (E, Nam2, Check_Parents); N : Node_Id; begin -- Check both Nam1_Item and Nam2_Item are present if No (Nam1_Item) then return Nam2_Item; elsif No (Nam2_Item) then return Nam1_Item; end if; -- Return the first node encountered in the list N := First_Rep_Item (E); while Present (N) loop if N = Nam1_Item or else N = Nam2_Item then return N; end if; Next_Rep_Item (N); end loop; return Empty; end Get_Rep_Pragma; --------------------- -- Get_Unary_Nkind -- --------------------- function Get_Unary_Nkind (Op : Entity_Id) return Node_Kind is begin case Chars (Op) is when Name_Op_Abs => return N_Op_Abs; when Name_Op_Subtract => return N_Op_Minus; when Name_Op_Not => return N_Op_Not; when Name_Op_Add => return N_Op_Plus; when others => raise Program_Error; end case; end Get_Unary_Nkind; --------------------------------- -- Has_External_Tag_Rep_Clause -- --------------------------------- function Has_External_Tag_Rep_Clause (T : Entity_Id) return Boolean is begin pragma Assert (Is_Tagged_Type (T)); return Has_Rep_Item (T, Name_External_Tag, Check_Parents => False); end Has_External_Tag_Rep_Clause; ------------------ -- Has_Rep_Item -- ------------------ function Has_Rep_Item (E : Entity_Id; Nam : Name_Id; Check_Parents : Boolean := True) return Boolean is begin return Present (Get_Rep_Item (E, Nam, Check_Parents)); end Has_Rep_Item; function Has_Rep_Item (E : Entity_Id; Nam1 : Name_Id; Nam2 : Name_Id; Check_Parents : Boolean := True) return Boolean is begin return Present (Get_Rep_Item (E, Nam1, Nam2, Check_Parents)); end Has_Rep_Item; function Has_Rep_Item (E : Entity_Id; N : Node_Id) return Boolean is Item : Node_Id; begin pragma Assert (Nkind (N) in N_Aspect_Specification | N_Attribute_Definition_Clause | N_Enumeration_Representation_Clause | N_Pragma | N_Record_Representation_Clause); Item := First_Rep_Item (E); while Present (Item) loop if Item = N then return True; end if; Next_Rep_Item (Item); end loop; return False; end Has_Rep_Item; -------------------- -- Has_Rep_Pragma -- -------------------- function Has_Rep_Pragma (E : Entity_Id; Nam : Name_Id; Check_Parents : Boolean := True) return Boolean is begin return Present (Get_Rep_Pragma (E, Nam, Check_Parents)); end Has_Rep_Pragma; function Has_Rep_Pragma (E : Entity_Id; Nam1 : Name_Id; Nam2 : Name_Id; Check_Parents : Boolean := True) return Boolean is begin return Present (Get_Rep_Pragma (E, Nam1, Nam2, Check_Parents)); end Has_Rep_Pragma; -------------------------------- -- Has_Unconstrained_Elements -- -------------------------------- function Has_Unconstrained_Elements (T : Entity_Id) return Boolean is U_T : constant Entity_Id := Underlying_Type (T); begin if No (U_T) then return False; elsif Is_Record_Type (U_T) then return Has_Discriminants (U_T) and then not Is_Constrained (U_T); elsif Is_Array_Type (U_T) then return Has_Unconstrained_Elements (Component_Type (U_T)); else return False; end if; end Has_Unconstrained_Elements; ---------------------- -- Has_Variant_Part -- ---------------------- function Has_Variant_Part (Typ : Entity_Id) return Boolean is FSTyp : Entity_Id; Decl : Node_Id; TDef : Node_Id; CList : Node_Id; begin if not Is_Type (Typ) then return False; end if; FSTyp := First_Subtype (Typ); if not Has_Discriminants (FSTyp) then return False; end if; -- Proceed with cautious checks here, return False if tree is not -- as expected (may be caused by prior errors). Decl := Declaration_Node (FSTyp); if Nkind (Decl) /= N_Full_Type_Declaration then return False; end if; TDef := Type_Definition (Decl); if Nkind (TDef) /= N_Record_Definition then return False; end if; CList := Component_List (TDef); if Nkind (CList) /= N_Component_List then return False; else return Present (Variant_Part (CList)); end if; end Has_Variant_Part; --------------------- -- In_Generic_Body -- --------------------- function In_Generic_Body (Id : Entity_Id) return Boolean is S : Entity_Id; begin -- Climb scopes looking for generic body S := Id; while Present (S) and then S /= Standard_Standard loop -- Generic package body if Ekind (S) = E_Generic_Package and then In_Package_Body (S) then return True; -- Generic subprogram body elsif Is_Subprogram (S) and then Nkind (Unit_Declaration_Node (S)) = N_Generic_Subprogram_Declaration then return True; end if; S := Scope (S); end loop; -- False if top of scope stack without finding a generic body return False; end In_Generic_Body; ------------------------------- -- Initialization_Suppressed -- ------------------------------- function Initialization_Suppressed (Typ : Entity_Id) return Boolean is begin return Suppress_Initialization (Typ) or else Suppress_Initialization (Base_Type (Typ)); end Initialization_Suppressed; ---------------- -- Initialize -- ---------------- procedure Initialize is begin Obsolescent_Warnings.Init; end Initialize; ------------- -- Is_Body -- ------------- function Is_Body (N : Node_Id) return Boolean is begin return Nkind (N) in N_Body_Stub | N_Entry_Body | N_Package_Body | N_Protected_Body | N_Subprogram_Body | N_Task_Body; end Is_Body; --------------------- -- Is_By_Copy_Type -- --------------------- function Is_By_Copy_Type (Ent : Entity_Id) return Boolean is begin -- If Id is a private type whose full declaration has not been seen, -- we assume for now that it is not a By_Copy type. Clearly this -- attribute should not be used before the type is frozen, but it is -- needed to build the associated record of a protected type. Another -- place where some lookahead for a full view is needed ??? return Is_Elementary_Type (Ent) or else (Is_Private_Type (Ent) and then Present (Underlying_Type (Ent)) and then Is_Elementary_Type (Underlying_Type (Ent))); end Is_By_Copy_Type; -------------------------- -- Is_By_Reference_Type -- -------------------------- function Is_By_Reference_Type (Ent : Entity_Id) return Boolean is Btype : constant Entity_Id := Base_Type (Ent); begin if Error_Posted (Ent) or else Error_Posted (Btype) then return False; elsif Is_Private_Type (Btype) then declare Utyp : constant Entity_Id := Underlying_Type (Btype); begin if No (Utyp) then return False; else return Is_By_Reference_Type (Utyp); end if; end; elsif Is_Incomplete_Type (Btype) then declare Ftyp : constant Entity_Id := Full_View (Btype); begin -- Return true for a tagged incomplete type built as a shadow -- entity in Build_Limited_Views. It can appear in the profile -- of a thunk and the back end needs to know how it is passed. if No (Ftyp) then return Is_Tagged_Type (Btype); else return Is_By_Reference_Type (Ftyp); end if; end; elsif Is_Concurrent_Type (Btype) then return True; elsif Is_Record_Type (Btype) then if Is_Limited_Record (Btype) or else Is_Tagged_Type (Btype) or else Is_Volatile (Btype) then return True; else declare C : Entity_Id; begin C := First_Component (Btype); while Present (C) loop -- For each component, test if its type is a by reference -- type and if its type is volatile. Also test the component -- itself for being volatile. This happens for example when -- a Volatile aspect is added to a component. if Is_By_Reference_Type (Etype (C)) or else Is_Volatile (Etype (C)) or else Is_Volatile (C) then return True; end if; Next_Component (C); end loop; end; return False; end if; elsif Is_Array_Type (Btype) then return Is_Volatile (Btype) or else Is_By_Reference_Type (Component_Type (Btype)) or else Is_Volatile (Component_Type (Btype)) or else Has_Volatile_Components (Btype); else return False; end if; end Is_By_Reference_Type; ------------------------- -- Is_Definite_Subtype -- ------------------------- function Is_Definite_Subtype (T : Entity_Id) return Boolean is pragma Assert (Is_Type (T)); K : constant Entity_Kind := Ekind (T); begin if Is_Constrained (T) then return True; elsif K in Array_Kind or else K in Class_Wide_Kind or else Has_Unknown_Discriminants (T) then return False; -- Known discriminants: definite if there are default values. Note that -- if any discriminant has a default, they all do. elsif Has_Discriminants (T) then return Present (Discriminant_Default_Value (First_Discriminant (T))); else return True; end if; end Is_Definite_Subtype; --------------------- -- Is_Derived_Type -- --------------------- function Is_Derived_Type (Ent : E) return B is Par : Node_Id; begin if Is_Type (Ent) and then Base_Type (Ent) /= Root_Type (Ent) and then not Is_Class_Wide_Type (Ent) -- An access_to_subprogram whose result type is a limited view can -- appear in a return statement, without the full view of the result -- type being available. Do not interpret this as a derived type. and then Ekind (Ent) /= E_Subprogram_Type then if not Is_Numeric_Type (Root_Type (Ent)) then return True; else Par := Parent (First_Subtype (Ent)); return Present (Par) and then Nkind (Par) = N_Full_Type_Declaration and then Nkind (Type_Definition (Par)) = N_Derived_Type_Definition; end if; else return False; end if; end Is_Derived_Type; ----------------------- -- Is_Generic_Formal -- ----------------------- function Is_Generic_Formal (E : Entity_Id) return Boolean is Kind : Node_Kind; begin if No (E) then return False; else -- Formal derived types are rewritten as private extensions, so -- examine original node. Kind := Nkind (Original_Node (Parent (E))); return Kind in N_Formal_Object_Declaration | N_Formal_Type_Declaration or else Is_Formal_Subprogram (E) or else (Ekind (E) = E_Package and then Nkind (Original_Node (Unit_Declaration_Node (E))) = N_Formal_Package_Declaration); end if; end Is_Generic_Formal; ------------------------------- -- Is_Immutably_Limited_Type -- ------------------------------- function Is_Immutably_Limited_Type (Ent : Entity_Id) return Boolean is Btype : constant Entity_Id := Available_View (Base_Type (Ent)); begin if Is_Limited_Record (Btype) then return True; elsif Ekind (Btype) = E_Limited_Private_Type and then Nkind (Parent (Btype)) = N_Formal_Type_Declaration then return not In_Package_Body (Scope ((Btype))); elsif Is_Private_Type (Btype) then -- AI05-0063: A type derived from a limited private formal type is -- not immutably limited in a generic body. if Is_Derived_Type (Btype) and then Is_Generic_Type (Etype (Btype)) then if not Is_Limited_Type (Etype (Btype)) then return False; -- A descendant of a limited formal type is not immutably limited -- in the generic body, or in the body of a generic child. elsif Ekind (Scope (Etype (Btype))) = E_Generic_Package then return not In_Package_Body (Scope (Btype)); else return False; end if; else declare Utyp : constant Entity_Id := Underlying_Type (Btype); begin if No (Utyp) then return False; else return Is_Immutably_Limited_Type (Utyp); end if; end; end if; elsif Is_Concurrent_Type (Btype) then return True; else return False; end if; end Is_Immutably_Limited_Type; --------------------- -- Is_Limited_Type -- --------------------- function Is_Limited_Type (Ent : Entity_Id) return Boolean is Btype : constant E := Base_Type (Ent); Rtype : constant E := Root_Type (Btype); begin if not Is_Type (Ent) then return False; elsif Ekind (Btype) = E_Limited_Private_Type or else Is_Limited_Composite (Btype) then return True; elsif Is_Concurrent_Type (Btype) then return True; -- The Is_Limited_Record flag normally indicates that the type is -- limited. The exception is that a type does not inherit limitedness -- from its interface ancestor. So the type may be derived from a -- limited interface, but is not limited. elsif Is_Limited_Record (Ent) and then not Is_Interface (Ent) then return True; -- Otherwise we will look around to see if there is some other reason -- for it to be limited, except that if an error was posted on the -- entity, then just assume it is non-limited, because it can cause -- trouble to recurse into a murky entity resulting from other errors. elsif Error_Posted (Ent) then return False; elsif Is_Record_Type (Btype) then if Is_Limited_Interface (Ent) then return True; -- AI-419: limitedness is not inherited from a limited interface elsif Is_Limited_Record (Rtype) then return not Is_Interface (Rtype) or else Is_Protected_Interface (Rtype) or else Is_Synchronized_Interface (Rtype) or else Is_Task_Interface (Rtype); elsif Is_Class_Wide_Type (Btype) then return Is_Limited_Type (Rtype); else declare C : E; begin C := First_Component (Btype); while Present (C) loop if Is_Limited_Type (Etype (C)) then return True; end if; Next_Component (C); end loop; end; return False; end if; elsif Is_Array_Type (Btype) then return Is_Limited_Type (Component_Type (Btype)); else return False; end if; end Is_Limited_Type; --------------------- -- Is_Limited_View -- --------------------- function Is_Limited_View (Ent : Entity_Id) return Boolean is Btype : constant Entity_Id := Available_View (Base_Type (Ent)); begin if Is_Limited_Record (Btype) then return True; elsif Ekind (Btype) = E_Limited_Private_Type and then Nkind (Parent (Btype)) = N_Formal_Type_Declaration then return not In_Package_Body (Scope ((Btype))); elsif Is_Private_Type (Btype) then -- AI05-0063: A type derived from a limited private formal type is -- not immutably limited in a generic body. if Is_Derived_Type (Btype) and then Is_Generic_Type (Etype (Btype)) then if not Is_Limited_Type (Etype (Btype)) then return False; -- A descendant of a limited formal type is not immutably limited -- in the generic body, or in the body of a generic child. elsif Ekind (Scope (Etype (Btype))) = E_Generic_Package then return not In_Package_Body (Scope (Btype)); else return False; end if; else declare Utyp : constant Entity_Id := Underlying_Type (Btype); begin if No (Utyp) then return False; else return Is_Limited_View (Utyp); end if; end; end if; elsif Is_Concurrent_Type (Btype) then return True; elsif Is_Record_Type (Btype) then -- Note that we return True for all limited interfaces, even though -- (unsynchronized) limited interfaces can have descendants that are -- nonlimited, because this is a predicate on the type itself, and -- things like functions with limited interface results need to be -- handled as build in place even though they might return objects -- of a type that is not inherently limited. if Is_Class_Wide_Type (Btype) then return Is_Limited_View (Root_Type (Btype)); else declare C : Entity_Id; begin C := First_Component (Btype); while Present (C) loop -- Don't consider components with interface types (which can -- only occur in the case of a _parent component anyway). -- They don't have any components, plus it would cause this -- function to return true for nonlimited types derived from -- limited interfaces. if not Is_Interface (Etype (C)) and then Is_Limited_View (Etype (C)) then return True; end if; Next_Component (C); end loop; end; return False; end if; elsif Is_Array_Type (Btype) then return Is_Limited_View (Component_Type (Btype)); else return False; end if; end Is_Limited_View; ---------------------------- -- Is_Protected_Operation -- ---------------------------- function Is_Protected_Operation (E : Entity_Id) return Boolean is begin return Is_Entry (E) or else (Is_Subprogram (E) and then Nkind (Parent (Unit_Declaration_Node (E))) = N_Protected_Definition); end Is_Protected_Operation; ------------------------------- -- Is_Record_Or_Limited_Type -- ------------------------------- function Is_Record_Or_Limited_Type (Typ : Entity_Id) return Boolean is begin return Is_Record_Type (Typ) or else Is_Limited_Type (Typ); end Is_Record_Or_Limited_Type; ---------------------- -- Nearest_Ancestor -- ---------------------- function Nearest_Ancestor (Typ : Entity_Id) return Entity_Id is D : constant Node_Id := Original_Node (Declaration_Node (Typ)); -- We use the original node of the declaration, because derived -- types from record subtypes are rewritten as record declarations, -- and it is the original declaration that carries the ancestor. begin -- If we have a subtype declaration, get the ancestor subtype if Nkind (D) = N_Subtype_Declaration then if Nkind (Subtype_Indication (D)) = N_Subtype_Indication then return Entity (Subtype_Mark (Subtype_Indication (D))); else return Entity (Subtype_Indication (D)); end if; -- If derived type declaration, find who we are derived from elsif Nkind (D) = N_Full_Type_Declaration and then Nkind (Type_Definition (D)) = N_Derived_Type_Definition then declare DTD : constant Entity_Id := Type_Definition (D); SI : constant Entity_Id := Subtype_Indication (DTD); begin if Is_Entity_Name (SI) then return Entity (SI); else return Entity (Subtype_Mark (SI)); end if; end; -- If this is a concurrent declaration with a nonempty interface list, -- get the first progenitor. Account for case of a record type created -- for a concurrent type (which is the only case that seems to occur -- in practice). elsif Nkind (D) = N_Full_Type_Declaration and then (Is_Concurrent_Type (Defining_Identifier (D)) or else Is_Concurrent_Record_Type (Defining_Identifier (D))) and then Is_Non_Empty_List (Interface_List (Type_Definition (D))) then return Entity (First (Interface_List (Type_Definition (D)))); -- If derived type and private type, get the full view to find who we -- are derived from. elsif Is_Derived_Type (Typ) and then Is_Private_Type (Typ) and then Present (Full_View (Typ)) then return Nearest_Ancestor (Full_View (Typ)); -- Otherwise, nothing useful to return, return Empty else return Empty; end if; end Nearest_Ancestor; --------------------------- -- Nearest_Dynamic_Scope -- --------------------------- function Nearest_Dynamic_Scope (Ent : Entity_Id) return Entity_Id is begin if Is_Dynamic_Scope (Ent) then return Ent; else return Enclosing_Dynamic_Scope (Ent); end if; end Nearest_Dynamic_Scope; ------------------------ -- Next_Tag_Component -- ------------------------ function Next_Tag_Component (Tag : Entity_Id) return Entity_Id is Comp : Entity_Id; begin pragma Assert (Is_Tag (Tag)); -- Loop to look for next tag component Comp := Next_Entity (Tag); while Present (Comp) loop if Is_Tag (Comp) then pragma Assert (Chars (Comp) /= Name_uTag); return Comp; end if; Next_Entity (Comp); end loop; -- No tag component found return Empty; end Next_Tag_Component; ----------------------- -- Number_Components -- ----------------------- function Number_Components (Typ : Entity_Id) return Nat is N : Nat := 0; Comp : Entity_Id; begin -- We do not call Einfo.First_Component_Or_Discriminant, as this -- function does not skip completely hidden discriminants, which we -- want to skip here. if Has_Discriminants (Typ) then Comp := First_Discriminant (Typ); else Comp := First_Component (Typ); end if; while Present (Comp) loop N := N + 1; Next_Component_Or_Discriminant (Comp); end loop; return N; end Number_Components; -------------------------- -- Number_Discriminants -- -------------------------- function Number_Discriminants (Typ : Entity_Id) return Pos is N : Nat := 0; Discr : Entity_Id := First_Discriminant (Typ); begin while Present (Discr) loop N := N + 1; Next_Discriminant (Discr); end loop; return N; end Number_Discriminants; ---------------------------------------------- -- Object_Type_Has_Constrained_Partial_View -- ---------------------------------------------- function Object_Type_Has_Constrained_Partial_View (Typ : Entity_Id; Scop : Entity_Id) return Boolean is begin return Has_Constrained_Partial_View (Typ) or else (In_Generic_Body (Scop) and then Is_Generic_Type (Base_Type (Typ)) and then (Is_Private_Type (Base_Type (Typ)) or else Is_Derived_Type (Base_Type (Typ))) and then not Is_Tagged_Type (Typ) and then not (Is_Array_Type (Typ) and then not Is_Constrained (Typ)) and then Has_Discriminants (Typ)); end Object_Type_Has_Constrained_Partial_View; ------------------ -- Package_Body -- ------------------ function Package_Body (E : Entity_Id) return Node_Id is N : Node_Id; begin if Ekind (E) = E_Package_Body then N := Parent (E); if Nkind (N) = N_Defining_Program_Unit_Name then N := Parent (N); end if; else N := Package_Spec (E); if Present (Corresponding_Body (N)) then N := Parent (Corresponding_Body (N)); if Nkind (N) = N_Defining_Program_Unit_Name then N := Parent (N); end if; else N := Empty; end if; end if; return N; end Package_Body; ------------------ -- Package_Spec -- ------------------ function Package_Spec (E : Entity_Id) return Node_Id is begin return Parent (Package_Specification (E)); end Package_Spec; --------------------------- -- Package_Specification -- --------------------------- function Package_Specification (E : Entity_Id) return Node_Id is N : Node_Id; begin N := Parent (E); if Nkind (N) = N_Defining_Program_Unit_Name then N := Parent (N); end if; return N; end Package_Specification; --------------------- -- Subprogram_Body -- --------------------- function Subprogram_Body (E : Entity_Id) return Node_Id is Body_E : constant Entity_Id := Subprogram_Body_Entity (E); begin if No (Body_E) then return Empty; else return Parent (Subprogram_Specification (Body_E)); end if; end Subprogram_Body; ---------------------------- -- Subprogram_Body_Entity -- ---------------------------- function Subprogram_Body_Entity (E : Entity_Id) return Entity_Id is N : constant Node_Id := Parent (Subprogram_Specification (E)); -- Declaration for E begin -- If this declaration is not a subprogram body, then it must be a -- subprogram declaration or body stub, from which we can retrieve the -- entity for the corresponding subprogram body if any, or an abstract -- subprogram declaration, for which we return Empty. case Nkind (N) is when N_Subprogram_Body => return E; when N_Subprogram_Body_Stub | N_Subprogram_Declaration => return Corresponding_Body (N); when others => return Empty; end case; end Subprogram_Body_Entity; --------------------- -- Subprogram_Spec -- --------------------- function Subprogram_Spec (E : Entity_Id) return Node_Id is N : constant Node_Id := Parent (Subprogram_Specification (E)); -- Declaration for E begin -- This declaration is either subprogram declaration or a subprogram -- body, in which case return Empty. if Nkind (N) = N_Subprogram_Declaration then return N; else return Empty; end if; end Subprogram_Spec; ------------------------------ -- Subprogram_Specification -- ------------------------------ function Subprogram_Specification (E : Entity_Id) return Node_Id is N : Node_Id; begin N := Parent (E); if Nkind (N) = N_Defining_Program_Unit_Name then N := Parent (N); end if; -- If the Parent pointer of E is not a subprogram specification node -- (going through an intermediate N_Defining_Program_Unit_Name node -- for subprogram units), then E is an inherited operation. Its parent -- points to the type derivation that produces the inheritance: that's -- the node that generates the subprogram specification. Its alias -- is the parent subprogram, and that one points to a subprogram -- declaration, or to another type declaration if this is a hierarchy -- of derivations. if Nkind (N) not in N_Subprogram_Specification then pragma Assert (Present (Alias (E))); N := Subprogram_Specification (Alias (E)); end if; return N; end Subprogram_Specification; -------------------- -- Ultimate_Alias -- -------------------- function Ultimate_Alias (Prim : Entity_Id) return Entity_Id is E : Entity_Id := Prim; begin while Present (Alias (E)) loop pragma Assert (Alias (E) /= E); E := Alias (E); end loop; return E; end Ultimate_Alias; -------------------------- -- Unit_Declaration_Node -- -------------------------- function Unit_Declaration_Node (Unit_Id : Entity_Id) return Node_Id is N : Node_Id := Parent (Unit_Id); begin -- Predefined operators do not have a full function declaration if Ekind (Unit_Id) = E_Operator then return N; end if; -- Isn't there some better way to express the following ??? while Nkind (N) /= N_Abstract_Subprogram_Declaration and then Nkind (N) /= N_Entry_Body and then Nkind (N) /= N_Entry_Declaration and then Nkind (N) /= N_Formal_Package_Declaration and then Nkind (N) /= N_Function_Instantiation and then Nkind (N) /= N_Generic_Package_Declaration and then Nkind (N) /= N_Generic_Subprogram_Declaration and then Nkind (N) /= N_Package_Declaration and then Nkind (N) /= N_Package_Body and then Nkind (N) /= N_Package_Instantiation and then Nkind (N) /= N_Package_Renaming_Declaration and then Nkind (N) /= N_Procedure_Instantiation and then Nkind (N) /= N_Protected_Body and then Nkind (N) /= N_Protected_Type_Declaration and then Nkind (N) /= N_Subprogram_Declaration and then Nkind (N) /= N_Subprogram_Body and then Nkind (N) /= N_Subprogram_Body_Stub and then Nkind (N) /= N_Subprogram_Renaming_Declaration and then Nkind (N) /= N_Task_Body and then Nkind (N) /= N_Task_Type_Declaration and then Nkind (N) not in N_Formal_Subprogram_Declaration and then Nkind (N) not in N_Generic_Renaming_Declaration loop N := Parent (N); -- We don't use Assert here, because that causes an infinite loop -- when assertions are turned off. Better to crash. if No (N) then raise Program_Error; end if; end loop; return N; end Unit_Declaration_Node; end Sem_Aux;
30.2219
79
0.55733
c534c01e56aff3097d219bd67229cc1a8c70cc42
1,980
adb
Ada
c/03-bootstrap/03-joypad/build/main.rgbds.adb
willbr/gameboy-tests
a0d9f68f5a4898067b7993f690d8d4ca6de831c5
[ "MIT" ]
null
null
null
c/03-bootstrap/03-joypad/build/main.rgbds.adb
willbr/gameboy-tests
a0d9f68f5a4898067b7993f690d8d4ca6de831c5
[ "MIT" ]
null
null
null
c/03-bootstrap/03-joypad/build/main.rgbds.adb
willbr/gameboy-tests
a0d9f68f5a4898067b7993f690d8d4ca6de831c5
[ "MIT" ]
null
null
null
M:main F:G$main$0_0$0({2}DF,SV:S),C,0,0,0,0,0 F:G$timer_isr$0_0$0({2}DF,SV:S),C,0,0,1,256,0 F:G$vblank_isr$0_0$0({2}DF,SV:S),C,0,0,1,256,0 F:G$lcd_isr$0_0$0({2}DF,SV:S),C,0,0,1,256,0 F:G$serial_isr$0_0$0({2}DF,SV:S),C,0,0,1,256,0 F:G$joypad_isr$0_0$0({2}DF,SV:S),C,0,0,1,256,0 F:G$poll_joypad$0_0$0({2}DF,SV:S),Z,0,0,0,0,0 S:G$tiles$0_0$0({1}SC:U),E,0,0 S:G$bgmap$0_0$0({1}SC:U),E,0,0 S:G$joypad$0_0$0({1}SC:U),E,0,0 S:G$joypad_dpad_state$0_0$0({1}SC:U),E,0,0 S:G$joypad_btn_state$0_0$0({1}SC:U),E,0,0 S:G$p1_joypad$0_0$0({1}SC:U),I,0,0 S:G$interrupt_flag$0_0$0({1}SC:U),I,0,0 S:G$interrupt_enable$0_0$0({1}SC:U),I,0,0 S:G$NR52$0_0$0({1}SC:U),I,0,0 S:G$LCDC$0_0$0({1}SC:U),I,0,0 S:G$STAT$0_0$0({1}SC:U),I,0,0 S:G$SCY$0_0$0({1}SC:U),I,0,0 S:G$SCX$0_0$0({1}SC:U),I,0,0 S:G$LY$0_0$0({1}SC:U),I,0,0 S:G$LYC$0_0$0({1}SC:U),I,0,0 S:G$BGP$0_0$0({1}SC:U),I,0,0 S:G$memccpy$0_0$0({2}DF,DG,SV:S),C,0,0 S:G$memcpy$0_0$0({2}DF,DG,SV:S),C,0,0 S:G$memmove$0_0$0({2}DF,DG,SV:S),C,0,0 S:G$strcpy$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strncpy$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strcat$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strncat$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strdup$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strndup$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$memcmp$0_0$0({2}DF,SI:S),C,0,0 S:G$strcmp$0_0$0({2}DF,SI:S),C,0,0 S:G$strncmp$0_0$0({2}DF,SI:S),C,0,0 S:G$strxfrm$0_0$0({2}DF,SI:U),C,0,0 S:G$memchr$0_0$0({2}DF,DG,SV:S),C,0,0 S:G$strchr$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strcspn$0_0$0({2}DF,SI:U),C,0,0 S:G$strpbrk$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strrchr$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strspn$0_0$0({2}DF,SI:U),C,0,0 S:G$strstr$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$strtok$0_0$0({2}DF,DG,SC:U),C,0,0 S:G$memset$0_0$0({2}DF,DG,SV:S),C,0,0 S:G$strlen$0_0$0({2}DF,SI:U),C,0,0 S:G$__memcpy$0_0$0({2}DF,DG,SV:S),C,0,0 S:G$main$0_0$0({2}DF,SV:S),C,0,0 S:G$timer_isr$0_0$0({2}DF,SV:S),C,0,0 S:G$vblank_isr$0_0$0({2}DF,SV:S),C,0,0 S:G$lcd_isr$0_0$0({2}DF,SV:S),C,0,0 S:G$serial_isr$0_0$0({2}DF,SV:S),C,0,0 S:G$joypad_isr$0_0$0({2}DF,SV:S),C,0,0
36
46
0.613131
187ece51aace103235836e1b81573a7b55da0bc7
13,971
adb
Ada
regtests/model/regtests-images-model.adb
Letractively/ada-ado
f0863c6975ae1a2c5349daee1e98a04fe11ba11e
[ "Apache-2.0" ]
null
null
null
regtests/model/regtests-images-model.adb
Letractively/ada-ado
f0863c6975ae1a2c5349daee1e98a04fe11ba11e
[ "Apache-2.0" ]
null
null
null
regtests/model/regtests-images-model.adb
Letractively/ada-ado
f0863c6975ae1a2c5349daee1e98a04fe11ba11e
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- Regtests.Images.Model -- Regtests.Images.Model ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-body.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 166 ----------------------------------------------------------------------- -- Copyright (C) 2011 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Unchecked_Deallocation; with Util.Beans.Objects.Time; package body Regtests.Images.Model is use type ADO.Objects.Object_Record_Access; use type ADO.Objects.Object_Ref; use type ADO.Objects.Object_Record; function Image_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_STRING, Of_Class => IMAGE_TABLE'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Image_Key; function Image_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_STRING, Of_Class => IMAGE_TABLE'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end Image_Key; function "=" (Left, Right : Image_Ref'Class) return Boolean is begin return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right); end "="; procedure Set_Field (Object : in out Image_Ref'Class; Impl : out Image_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := Image_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out Image_Ref) is Impl : Image_Access; begin Impl := new Image_Impl; Impl.Version := 0; Impl.Create_Date := ADO.DEFAULT_TIME; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: Image -- ---------------------------------------- procedure Set_Id (Object : in out Image_Ref; Value : in ADO.Identifier) is Impl : Image_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in Image_Ref) return ADO.Identifier is Impl : constant Image_Access := Image_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; function Get_Version (Object : in Image_Ref) return Integer is Impl : constant Image_Access := Image_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Version; end Get_Version; procedure Set_Create_Date (Object : in out Image_Ref; Value : in Ada.Calendar.Time) is Impl : Image_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Time (Impl.all, 3, Impl.Create_Date, Value); end Set_Create_Date; function Get_Create_Date (Object : in Image_Ref) return Ada.Calendar.Time is Impl : constant Image_Access := Image_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Create_Date; end Get_Create_Date; procedure Set_Image (Object : in out Image_Ref; Value : in ADO.Blob_Ref) is Impl : Image_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Blob (Impl.all, 4, Impl.Image, Value); end Set_Image; function Get_Image (Object : in Image_Ref) return ADO.Blob_Ref is Impl : constant Image_Access := Image_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Image; end Get_Image; -- Copy of the object. procedure Copy (Object : in Image_Ref; Into : in out Image_Ref) is Result : Image_Ref; begin if not Object.Is_Null then declare Impl : constant Image_Access := Image_Impl (Object.Get_Load_Object.all)'Access; Copy : constant Image_Access := new Image_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.Version := Impl.Version; Copy.Create_Date := Impl.Create_Date; Copy.Image := Impl.Image; end; end if; Into := Result; end Copy; procedure Find (Object : in out Image_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant Image_Access := new Image_Impl; begin Impl.Find (Session, Query, Found); if Found then ADO.Objects.Set_Object (Object, Impl.all'Access); else ADO.Objects.Set_Object (Object, null); Destroy (Impl); end if; end Find; procedure Load (Object : in out Image_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant Image_Access := new Image_Impl; Found : Boolean; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); raise ADO.Objects.NOT_FOUND; end if; ADO.Objects.Set_Object (Object, Impl.all'Access); end Load; procedure Load (Object : in out Image_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant Image_Access := new Image_Impl; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); else ADO.Objects.Set_Object (Object, Impl.all'Access); end if; end Load; procedure Save (Object : in out Image_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl = null then Impl := new Image_Impl; ADO.Objects.Set_Object (Object, Impl); end if; if not ADO.Objects.Is_Created (Impl.all) then Impl.Create (Session); else Impl.Save (Session); end if; end Save; procedure Delete (Object : in out Image_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl /= null then Impl.Delete (Session); end if; end Delete; -- -------------------- -- Free the object -- -------------------- procedure Destroy (Object : access Image_Impl) is type Image_Impl_Ptr is access all Image_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (Image_Impl, Image_Impl_Ptr); pragma Warnings (Off, "*redundant conversion*"); Ptr : Image_Impl_Ptr := Image_Impl (Object.all)'Access; pragma Warnings (On, "*redundant conversion*"); begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out Image_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (IMAGE_TABLE'Access); begin Stmt.Set_Parameters (Query); Stmt.Execute; if Stmt.Has_Elements then Object.Load (Stmt, Session); Stmt.Next; Found := not Stmt.Has_Elements; else Found := False; end if; end Find; overriding procedure Load (Object : in out Image_Impl; Session : in out ADO.Sessions.Session'Class) is Found : Boolean; Query : ADO.SQL.Query; Id : constant ADO.Identifier := Object.Get_Key_Value; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Object.Find (Session, Query, Found); if not Found then raise ADO.Objects.NOT_FOUND; end if; end Load; procedure Save (Object : in out Image_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (IMAGE_TABLE'Access); begin if Object.Is_Modified (1) then Stmt.Save_Field (Name => COL_0_1_NAME, -- id Value => Object.Get_Key); Object.Clear_Modified (1); end if; if Object.Is_Modified (4) then Stmt.Save_Field (Name => COL_3_1_NAME, -- image Value => Object.Image); Object.Clear_Modified (4); end if; if Stmt.Has_Save_Fields then Object.Version := Object.Version + 1; Stmt.Save_Field (Name => "version", Value => Object.Version); Stmt.Set_Filter (Filter => "id = ? and version = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Add_Param (Value => Object.Version - 1); declare Result : Integer; begin Stmt.Execute (Result); if Result /= 1 then if Result /= 0 then raise ADO.Objects.UPDATE_ERROR; else raise ADO.Objects.LAZY_LOCK; end if; end if; end; end if; end Save; procedure Create (Object : in out Image_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (IMAGE_TABLE'Access); Result : Integer; begin Object.Version := 1; Session.Allocate (Id => Object); Query.Save_Field (Name => COL_0_1_NAME, -- id Value => Object.Get_Key); Query.Save_Field (Name => COL_1_1_NAME, -- version Value => Object.Version); Query.Save_Field (Name => COL_2_1_NAME, -- create_date Value => Object.Create_Date); Query.Save_Field (Name => COL_3_1_NAME, -- image Value => Object.Image); Query.Execute (Result); if Result /= 1 then raise ADO.Objects.INSERT_ERROR; end if; ADO.Objects.Set_Created (Object); end Create; procedure Delete (Object : in out Image_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (IMAGE_TABLE'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; function Get_Value (Item : in Image_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : constant ADO.Objects.Object_Record_Access := Item.Get_Load_Object; Impl : access Image_Impl; begin if Obj = null then return Util.Beans.Objects.Null_Object; end if; Impl := Image_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); end if; if Name = "create_date" then return Util.Beans.Objects.Time.To_Object (Impl.Create_Date); end if; return Util.Beans.Objects.Null_Object; end Get_Value; procedure List (Object : in out Image_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (IMAGE_TABLE'Access); begin Stmt.Set_Parameters (Query); Stmt.Execute; Image_Vectors.Clear (Object); while Stmt.Has_Elements loop declare Item : Image_Ref; Impl : constant Image_Access := new Image_Impl; begin Impl.Load (Stmt, Session); ADO.Objects.Set_Object (Item, Impl.all'Access); Object.Append (Item); end; Stmt.Next; end loop; end List; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out Image_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class) is pragma Unreferenced (Session); begin Object.Set_Key_Value (Stmt.Get_Identifier (0)); Object.Create_Date := Stmt.Get_Time (2); Object.Image := Stmt.Get_Blob (3); Object.Version := Stmt.Get_Integer (1); ADO.Objects.Set_Created (Object); end Load; end Regtests.Images.Model;
35.280303
93
0.584425
0ed3b586e4131b10c607b476277f4ef320bb8e5b
6,464
ads
Ada
src/asf-security-servlets.ads
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
src/asf-security-servlets.ads
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
src/asf-security-servlets.ads
Letractively/ada-asf
da9f85f85666eba7e23fefea661160863b74154d
[ "Apache-2.0" ]
null
null
null
----------------------------------------------------------------------- -- security-openid-servlets - Servlets for OpenID 2.0 Authentication -- Copyright (C) 2010, 2011, 2012, 2013 Stephane Carrez -- Written by Stephane Carrez ([email protected]) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with ASF.Servlets; with ASF.Requests; with ASF.Responses; with ASF.Principals; with Security.Auth; use Security; -- The <b>Security.Openid.Servlets</b> package defines two servlets that can be used -- to implement an OpenID 2.0 authentication with an OpenID provider such as Google, -- Yahoo!, Verisign, Orange, ... -- -- The process to use these servlets is the following: -- <ul> -- <li>Declare and register a <b>Request_Auth_Servlet</b> servlet.</li> -- <li>Map that servlet to an authenticate URL. To authenticate, a user will have -- to click on a link mapped to that servlet. To identify the OpenID provider, -- the URL must contain the name of the provider. Example: -- -- http://localhost:8080/app/openid/auth/google -- -- <li>Declare and register a <b>Verify_Auth_Servlet</b> servlet. -- <li>Map that servlet to the verification URL. This is the URL that the user -- will return to when authentication is done by the OpenID provider. Example: -- -- http://localhost:8080/app/openid/verify -- -- <li>Declare in the application properties a set of configurations: -- <ul> -- <li>The <b>openid.realm</b> must indicate the URL that identifies the -- application the end user will trust. Example: -- -- openid.realm=http://localhost:8080/app -- -- <li>The <b>openid.callback_url</b> must indicate the callback URL to -- which the OpenID provider will redirect the user when authentication -- is finished (successfully or not). The callback URL must match -- the realm. -- -- openid.callback_url=http://localhost:8080/app/openid/verify -- -- <li>For each OpenID provider, a URL to the Yadis entry point of the -- OpenID provider is necessary. This URL is used to get the XRDS -- stream giving endoint of the OpenID provider. Example: -- -- openid.provider.google=https://www.google.com/accounts/o8/id -- </ul> -- -- </ul> -- package ASF.Security.Servlets is -- ------------------------------ -- OpenID Servlet -- ------------------------------ -- The <b>Openid_Servlet</b> is the OpenID root servlet for OpenID 2.0 authentication. -- It is defined to provide a common basis for the authentication and verification servlets. type Openid_Servlet is abstract new ASF.Servlets.Servlet and Auth.Parameters with private; -- Called by the servlet container to indicate to a servlet that the servlet -- is being placed into service. overriding procedure Initialize (Server : in out Openid_Servlet; Context : in ASF.Servlets.Servlet_Registry'Class); -- Get a configuration parameter from the servlet context for the security Auth provider. overriding function Get_Parameter (Server : in Openid_Servlet; Name : in String) return String; -- ------------------------------ -- OpenID Request Servlet -- ------------------------------ -- The <b>Request_Auth_Servlet</b> servlet implements the first steps of an OpenID -- authentication. type Request_Auth_Servlet is new Openid_Servlet with private; -- Proceed to the OpenID authentication with an OpenID provider. -- Find the OpenID provider URL and starts the discovery, association phases -- during which a private key is obtained from the OpenID provider. -- After OpenID discovery and association, the user will be redirected to -- the OpenID provider. overriding procedure Do_Get (Server : in Request_Auth_Servlet; Request : in out ASF.Requests.Request'Class; Response : in out ASF.Responses.Response'Class); -- ------------------------------ -- OpenID Verification Servlet -- ------------------------------ -- The <b>Verify_Auth_Servlet</b> verifies the authentication result and -- extract authentication from the callback URL. type Verify_Auth_Servlet is new Openid_Servlet with private; -- Verify the authentication result that was returned by the OpenID provider. -- If the authentication succeeded and the signature was correct, sets a -- user principals on the session. overriding procedure Do_Get (Server : in Verify_Auth_Servlet; Request : in out ASF.Requests.Request'Class; Response : in out ASF.Responses.Response'Class); -- Create a principal object that correspond to the authenticated user identified -- by the <b>Credential</b> information. The principal will be attached to the session -- and will be destroyed when the session is closed. procedure Create_Principal (Server : in Verify_Auth_Servlet; Credential : in Auth.Authentication; Result : out ASF.Principals.Principal_Access); private function Get_Provider_URL (Server : in Request_Auth_Servlet; Request : in ASF.Requests.Request'Class) return String; procedure Initialize (Server : in Openid_Servlet; Provider : in String; Manager : in out Auth.Manager); type Openid_Servlet is new ASF.Servlets.Servlet and Auth.Parameters with null record; type Request_Auth_Servlet is new Openid_Servlet with null record; type Verify_Auth_Servlet is new Openid_Servlet with null record; end ASF.Security.Servlets;
45.843972
96
0.640006
0edc4449f262c5442afd79c94efd7d3a92cfa7a8
57,948
adb
Ada
llvm-gcc-4.2-2.9/gcc/ada/par-ch9.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
1
2016-04-09T02:58:13.000Z
2016-04-09T02:58:13.000Z
llvm-gcc-4.2-2.9/gcc/ada/par-ch9.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
llvm-gcc-4.2-2.9/gcc/ada/par-ch9.adb
vidkidz/crossbridge
ba0bf94aee0ce6cf7eb5be882382e52bc57ba396
[ "MIT" ]
null
null
null
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R . C H 9 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram body ordering check. Subprograms are in order by RM -- section rather than alphabetical. separate (Par) package body Ch9 is -- Local subprograms, used only in this chapter function P_Accept_Alternative return Node_Id; function P_Delay_Alternative return Node_Id; function P_Delay_Relative_Statement return Node_Id; function P_Delay_Until_Statement return Node_Id; function P_Entry_Barrier return Node_Id; function P_Entry_Body_Formal_Part return Node_Id; function P_Entry_Declaration return Node_Id; function P_Entry_Index_Specification return Node_Id; function P_Protected_Definition return Node_Id; function P_Protected_Operation_Declaration_Opt return Node_Id; function P_Protected_Operation_Items return List_Id; function P_Task_Definition return Node_Id; function P_Task_Items return List_Id; ----------------------------- -- 9.1 Task (also 10.1.3) -- ----------------------------- -- TASK_TYPE_DECLARATION ::= -- task type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART] -- [is [new INTERFACE_LIST with] TASK_DEFINITION]; -- SINGLE_TASK_DECLARATION ::= -- task DEFINING_IDENTIFIER -- [is [new INTERFACE_LIST with] TASK_DEFINITION]; -- TASK_BODY ::= -- task body DEFINING_IDENTIFIER is -- DECLARATIVE_PART -- begin -- HANDLED_SEQUENCE_OF_STATEMENTS -- end [task_IDENTIFIER] -- TASK_BODY_STUB ::= -- task body DEFINING_IDENTIFIER is separate; -- This routine scans out a task declaration, task body, or task stub -- The caller has checked that the initial token is TASK and scanned -- past it, so that Token is set to the token after TASK -- Error recovery: cannot raise Error_Resync function P_Task return Node_Id is Name_Node : Node_Id; Task_Node : Node_Id; Task_Sloc : Source_Ptr; begin Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Lreq := False; Task_Sloc := Prev_Token_Ptr; if Token = Tok_Body then Scan; -- past BODY Name_Node := P_Defining_Identifier (C_Is); Scope.Table (Scope.Last).Labl := Name_Node; if Token = Tok_Left_Paren then Error_Msg_SC ("discriminant part not allowed in task body"); Discard_Junk_List (P_Known_Discriminant_Part_Opt); end if; TF_Is; -- Task stub if Token = Tok_Separate then Scan; -- past SEPARATE Task_Node := New_Node (N_Task_Body_Stub, Task_Sloc); Set_Defining_Identifier (Task_Node, Name_Node); TF_Semicolon; Pop_Scope_Stack; -- remove unused entry -- Task body else Task_Node := New_Node (N_Task_Body, Task_Sloc); Set_Defining_Identifier (Task_Node, Name_Node); Parse_Decls_Begin_End (Task_Node); end if; return Task_Node; -- Otherwise we must have a task declaration else if Token = Tok_Type then Scan; -- past TYPE Task_Node := New_Node (N_Task_Type_Declaration, Task_Sloc); Name_Node := P_Defining_Identifier; Set_Defining_Identifier (Task_Node, Name_Node); Scope.Table (Scope.Last).Labl := Name_Node; Set_Discriminant_Specifications (Task_Node, P_Known_Discriminant_Part_Opt); else Task_Node := New_Node (N_Single_Task_Declaration, Task_Sloc); Name_Node := P_Defining_Identifier (C_Is); Set_Defining_Identifier (Task_Node, Name_Node); Scope.Table (Scope.Last).Labl := Name_Node; if Token = Tok_Left_Paren then Error_Msg_SC ("discriminant part not allowed for single task"); Discard_Junk_List (P_Known_Discriminant_Part_Opt); end if; end if; -- Parse optional task definition. Note that P_Task_Definition scans -- out the semicolon as well as the task definition itself. if Token = Tok_Semicolon then -- A little check, if the next token after semicolon is -- Entry, then surely the semicolon should really be IS Scan; -- past semicolon if Token = Tok_Entry then Error_Msg_SP (""";"" should be IS"); Set_Task_Definition (Task_Node, P_Task_Definition); else Pop_Scope_Stack; -- Remove unused entry end if; else TF_Is; -- must have IS if no semicolon -- Ada 2005 (AI-345) if Token = Tok_New then Scan; -- past NEW if Ada_Version < Ada_05 then Error_Msg_SP ("task interface is an Ada 2005 extension"); Error_Msg_SP ("\unit must be compiled with -gnat05 switch"); end if; Set_Interface_List (Task_Node, New_List); loop Append (P_Qualified_Simple_Name, Interface_List (Task_Node)); exit when Token /= Tok_And; Scan; -- past AND end loop; if Token /= Tok_With then Error_Msg_SC ("WITH expected"); end if; Scan; -- past WITH if Token = Tok_Private then Error_Msg_SP ("PRIVATE not allowed in task type declaration"); end if; end if; Set_Task_Definition (Task_Node, P_Task_Definition); end if; return Task_Node; end if; end P_Task; -------------------------------- -- 9.1 Task Type Declaration -- -------------------------------- -- Parsed by P_Task (9.1) ---------------------------------- -- 9.1 Single Task Declaration -- ---------------------------------- -- Parsed by P_Task (9.1) -------------------------- -- 9.1 Task Definition -- -------------------------- -- TASK_DEFINITION ::= -- {TASK_ITEM} -- [private -- {TASK_ITEM}] -- end [task_IDENTIFIER]; -- The caller has already made the scope stack entry -- Note: there is a small deviation from official syntax here in that we -- regard the semicolon after end as part of the Task_Definition, and in -- the official syntax, it's part of the enclosing declaration. The reason -- for this deviation is that otherwise the end processing would have to -- be special cased, which would be a nuisance! -- Error recovery: cannot raise Error_Resync function P_Task_Definition return Node_Id is Def_Node : Node_Id; begin Def_Node := New_Node (N_Task_Definition, Token_Ptr); Set_Visible_Declarations (Def_Node, P_Task_Items); if Token = Tok_Private then Scan; -- past PRIVATE Set_Private_Declarations (Def_Node, P_Task_Items); -- Deal gracefully with multiple PRIVATE parts while Token = Tok_Private loop Error_Msg_SC ("only one private part allowed per task"); Scan; -- past PRIVATE Append_List (P_Task_Items, Private_Declarations (Def_Node)); end loop; end if; End_Statements (Def_Node); return Def_Node; end P_Task_Definition; -------------------- -- 9.1 Task Item -- -------------------- -- TASK_ITEM ::= ENTRY_DECLARATION | REPRESENTATION_CLAUSE -- This subprogram scans a (possibly empty) list of task items and pragmas -- Error recovery: cannot raise Error_Resync -- Note: a pragma can also be returned in this position function P_Task_Items return List_Id is Items : List_Id; Item_Node : Node_Id; Decl_Sloc : Source_Ptr; begin -- Get rid of active SIS entry from outer scope. This means we will -- miss some nested cases, but it doesn't seem worth the effort. See -- discussion in Par for further details SIS_Entry_Active := False; -- Loop to scan out task items Items := New_List; Decl_Loop : loop Decl_Sloc := Token_Ptr; if Token = Tok_Pragma then Append (P_Pragma, Items); -- Ada 2005 (AI-397): Reserved words NOT and OVERRIDING -- may begin an entry declaration. elsif Token = Tok_Entry or else Token = Tok_Not or else Token = Tok_Overriding then Append (P_Entry_Declaration, Items); elsif Token = Tok_For then -- Representation clause in task declaration. The only rep -- clause which is legal in a protected is an address clause, -- so that is what we try to scan out. Item_Node := P_Representation_Clause; if Nkind (Item_Node) = N_At_Clause then Append (Item_Node, Items); elsif Nkind (Item_Node) = N_Attribute_Definition_Clause and then Chars (Item_Node) = Name_Address then Append (Item_Node, Items); else Error_Msg ("the only representation clause " & "allowed here is an address clause!", Decl_Sloc); end if; elsif Token = Tok_Identifier or else Token in Token_Class_Declk then Error_Msg_SC ("illegal declaration in task definition"); Resync_Past_Semicolon; else exit Decl_Loop; end if; end loop Decl_Loop; return Items; end P_Task_Items; -------------------- -- 9.1 Task Body -- -------------------- -- Parsed by P_Task (9.1) ---------------------------------- -- 9.4 Protected (also 10.1.3) -- ---------------------------------- -- PROTECTED_TYPE_DECLARATION ::= -- protected type DEFINING_IDENTIFIER [KNOWN_DISCRIMINANT_PART] -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION; -- SINGLE_PROTECTED_DECLARATION ::= -- protected DEFINING_IDENTIFIER -- is [new INTERFACE_LIST with] PROTECTED_DEFINITION; -- PROTECTED_BODY ::= -- protected body DEFINING_IDENTIFIER is -- {PROTECTED_OPERATION_ITEM} -- end [protected_IDENTIFIER]; -- PROTECTED_BODY_STUB ::= -- protected body DEFINING_IDENTIFIER is separate; -- This routine scans out a protected declaration, protected body -- or a protected stub. -- The caller has checked that the initial token is PROTECTED and -- scanned past it, so Token is set to the following token. -- Error recovery: cannot raise Error_Resync function P_Protected return Node_Id is Name_Node : Node_Id; Protected_Node : Node_Id; Protected_Sloc : Source_Ptr; begin Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Lreq := False; Protected_Sloc := Prev_Token_Ptr; if Token = Tok_Body then Scan; -- past BODY Name_Node := P_Defining_Identifier (C_Is); Scope.Table (Scope.Last).Labl := Name_Node; if Token = Tok_Left_Paren then Error_Msg_SC ("discriminant part not allowed in protected body"); Discard_Junk_List (P_Known_Discriminant_Part_Opt); end if; TF_Is; -- Protected stub if Token = Tok_Separate then Scan; -- past SEPARATE Protected_Node := New_Node (N_Protected_Body_Stub, Protected_Sloc); Set_Defining_Identifier (Protected_Node, Name_Node); TF_Semicolon; Pop_Scope_Stack; -- remove unused entry -- Protected body else Protected_Node := New_Node (N_Protected_Body, Protected_Sloc); Set_Defining_Identifier (Protected_Node, Name_Node); Set_Declarations (Protected_Node, P_Protected_Operation_Items); End_Statements (Protected_Node); end if; return Protected_Node; -- Otherwise we must have a protected declaration else if Token = Tok_Type then Scan; -- past TYPE Protected_Node := New_Node (N_Protected_Type_Declaration, Protected_Sloc); Name_Node := P_Defining_Identifier (C_Is); Set_Defining_Identifier (Protected_Node, Name_Node); Scope.Table (Scope.Last).Labl := Name_Node; Set_Discriminant_Specifications (Protected_Node, P_Known_Discriminant_Part_Opt); else Protected_Node := New_Node (N_Single_Protected_Declaration, Protected_Sloc); Name_Node := P_Defining_Identifier (C_Is); Set_Defining_Identifier (Protected_Node, Name_Node); if Token = Tok_Left_Paren then Error_Msg_SC ("discriminant part not allowed for single protected"); Discard_Junk_List (P_Known_Discriminant_Part_Opt); end if; Scope.Table (Scope.Last).Labl := Name_Node; end if; T_Is; -- Ada 2005 (AI-345) if Token = Tok_New then Scan; -- past NEW if Ada_Version < Ada_05 then Error_Msg_SP ("task interface is an Ada 2005 extension"); Error_Msg_SP ("\unit must be compiled with -gnat05 switch"); end if; Set_Interface_List (Protected_Node, New_List); loop Append (P_Qualified_Simple_Name, Interface_List (Protected_Node)); exit when Token /= Tok_And; Scan; -- past AND end loop; if Token /= Tok_With then Error_Msg_SC ("WITH expected"); end if; Scan; -- past WITH if Token = Tok_Private then Error_Msg_SP ("PRIVATE not allowed in protected type declaration"); end if; end if; Set_Protected_Definition (Protected_Node, P_Protected_Definition); return Protected_Node; end if; end P_Protected; ------------------------------------- -- 9.4 Protected Type Declaration -- ------------------------------------- -- Parsed by P_Protected (9.4) --------------------------------------- -- 9.4 Single Protected Declaration -- --------------------------------------- -- Parsed by P_Protected (9.4) ------------------------------- -- 9.4 Protected Definition -- ------------------------------- -- PROTECTED_DEFINITION ::= -- {PROTECTED_OPERATION_DECLARATION} -- [private -- {PROTECTED_ELEMENT_DECLARATION}] -- end [protected_IDENTIFIER] -- PROTECTED_ELEMENT_DECLARATION ::= -- PROTECTED_OPERATION_DECLARATION -- | COMPONENT_DECLARATION -- The caller has already established the scope stack entry -- Error recovery: cannot raise Error_Resync function P_Protected_Definition return Node_Id is Def_Node : Node_Id; Item_Node : Node_Id; begin Def_Node := New_Node (N_Protected_Definition, Token_Ptr); -- Get rid of active SIS entry from outer scope. This means we will -- miss some nested cases, but it doesn't seem worth the effort. See -- discussion in Par for further details SIS_Entry_Active := False; -- Loop to scan visible declarations (protected operation declarations) Set_Visible_Declarations (Def_Node, New_List); loop Item_Node := P_Protected_Operation_Declaration_Opt; exit when No (Item_Node); Append (Item_Node, Visible_Declarations (Def_Node)); end loop; -- Deal with PRIVATE part (including graceful handling -- of multiple PRIVATE parts). Private_Loop : while Token = Tok_Private loop if No (Private_Declarations (Def_Node)) then Set_Private_Declarations (Def_Node, New_List); else Error_Msg_SC ("duplicate private part"); end if; Scan; -- past PRIVATE Declaration_Loop : loop if Token = Tok_Identifier then P_Component_Items (Private_Declarations (Def_Node)); else Item_Node := P_Protected_Operation_Declaration_Opt; exit Declaration_Loop when No (Item_Node); Append (Item_Node, Private_Declarations (Def_Node)); end if; end loop Declaration_Loop; end loop Private_Loop; End_Statements (Def_Node); return Def_Node; end P_Protected_Definition; ------------------------------------------ -- 9.4 Protected Operation Declaration -- ------------------------------------------ -- PROTECTED_OPERATION_DECLARATION ::= -- SUBPROGRAM_DECLARATION -- | ENTRY_DECLARATION -- | REPRESENTATION_CLAUSE -- Error recovery: cannot raise Error_Resync -- Note: a pragma can also be returned in this position -- We are not currently permitting representation clauses to appear as -- protected operation declarations, do we have to rethink this??? function P_Protected_Operation_Declaration_Opt return Node_Id is L : List_Id; P : Source_Ptr; function P_Entry_Or_Subprogram_With_Indicator return Node_Id; -- Ada 2005 (AI-397): Parse an entry or a subprogram with an overriding -- indicator. The caller has checked that the initial token is NOT or -- OVERRIDING. ------------------------------------------ -- P_Entry_Or_Subprogram_With_Indicator -- ------------------------------------------ function P_Entry_Or_Subprogram_With_Indicator return Node_Id is Decl : Node_Id := Error; Is_Overriding : Boolean := False; Not_Overriding : Boolean := False; begin if Token = Tok_Not then Scan; -- past NOT if Token = Tok_Overriding then Scan; -- past OVERRIDING Not_Overriding := True; else Error_Msg_SC ("OVERRIDING expected!"); end if; else Scan; -- past OVERRIDING Is_Overriding := True; end if; if (Is_Overriding or else Not_Overriding) then if Ada_Version < Ada_05 then Error_Msg_SP (" overriding indicator is an Ada 2005 extension"); Error_Msg_SP ("\unit must be compiled with -gnat05 switch"); elsif Token = Tok_Entry then Decl := P_Entry_Declaration; Set_Must_Override (Decl, Is_Overriding); Set_Must_Not_Override (Decl, Not_Overriding); elsif Token = Tok_Function or else Token = Tok_Procedure then Decl := P_Subprogram (Pf_Decl); Set_Must_Override (Specification (Decl), Is_Overriding); Set_Must_Not_Override (Specification (Decl), Not_Overriding); else Error_Msg_SC ("ENTRY, FUNCTION or PROCEDURE expected!"); end if; end if; return Decl; end P_Entry_Or_Subprogram_With_Indicator; -- Start of processing for P_Protected_Operation_Declaration_Opt begin -- This loop runs more than once only when a junk declaration -- is skipped. loop if Token = Tok_Pragma then return P_Pragma; elsif Token = Tok_Not or else Token = Tok_Overriding then return P_Entry_Or_Subprogram_With_Indicator; elsif Token = Tok_Entry then return P_Entry_Declaration; elsif Token = Tok_Function or else Token = Tok_Procedure then return P_Subprogram (Pf_Decl); elsif Token = Tok_Identifier then L := New_List; P := Token_Ptr; Skip_Declaration (L); if Nkind (First (L)) = N_Object_Declaration then Error_Msg ("component must be declared in private part of " & "protected type", P); else Error_Msg ("illegal declaration in protected definition", P); end if; elsif Token in Token_Class_Declk then Error_Msg_SC ("illegal declaration in protected definition"); Resync_Past_Semicolon; -- Return now to avoid cascaded messages if next declaration -- is a valid component declaration. return Error; elsif Token = Tok_For then Error_Msg_SC ("representation clause not allowed in protected definition"); Resync_Past_Semicolon; else return Empty; end if; end loop; end P_Protected_Operation_Declaration_Opt; ----------------------------------- -- 9.4 Protected Operation Item -- ----------------------------------- -- PROTECTED_OPERATION_ITEM ::= -- SUBPROGRAM_DECLARATION -- | SUBPROGRAM_BODY -- | ENTRY_BODY -- | REPRESENTATION_CLAUSE -- This procedure parses and returns a list of protected operation items -- We are not currently permitting representation clauses to appear -- as protected operation items, do we have to rethink this??? function P_Protected_Operation_Items return List_Id is Item_List : List_Id; begin Item_List := New_List; loop if Token = Tok_Entry or else Bad_Spelling_Of (Tok_Entry) then Append (P_Entry_Body, Item_List); elsif Token = Tok_Function or else Bad_Spelling_Of (Tok_Function) or else Token = Tok_Procedure or else Bad_Spelling_Of (Tok_Procedure) then Append (P_Subprogram (Pf_Decl_Pbod), Item_List); elsif Token = Tok_Pragma or else Bad_Spelling_Of (Tok_Pragma) then P_Pragmas_Opt (Item_List); elsif Token = Tok_Private or else Bad_Spelling_Of (Tok_Private) then Error_Msg_SC ("PRIVATE not allowed in protected body"); Scan; -- past PRIVATE elsif Token = Tok_Identifier then Error_Msg_SC ("all components must be declared in spec!"); Resync_Past_Semicolon; elsif Token in Token_Class_Declk then Error_Msg_SC ("this declaration not allowed in protected body"); Resync_Past_Semicolon; else exit; end if; end loop; return Item_List; end P_Protected_Operation_Items; ------------------------------ -- 9.5.2 Entry Declaration -- ------------------------------ -- ENTRY_DECLARATION ::= -- [OVERRIDING_INDICATOR] -- entry DEFINING_IDENTIFIER [(DISCRETE_SUBTYPE_DEFINITION)] -- PARAMETER_PROFILE; -- The caller has checked that the initial token is ENTRY, NOT or -- OVERRIDING. -- Error recovery: cannot raise Error_Resync function P_Entry_Declaration return Node_Id is Decl_Node : Node_Id; Scan_State : Saved_Scan_State; -- Flags for optional overriding indication. Two flags are needed, -- to distinguish positive and negative overriding indicators from -- the absence of any indicator. Is_Overriding : Boolean := False; Not_Overriding : Boolean := False; begin -- Ada 2005 (AI-397): Scan leading overriding indicator if Token = Tok_Not then Scan; -- past NOT if Token = Tok_Overriding then Scan; -- part OVERRIDING Not_Overriding := True; else Error_Msg_SC ("OVERRIDING expected!"); end if; elsif Token = Tok_Overriding then Scan; -- part OVERRIDING Is_Overriding := True; end if; if (Is_Overriding or else Not_Overriding) then if Ada_Version < Ada_05 then Error_Msg_SP (" overriding indicator is an Ada 2005 extension"); Error_Msg_SP ("\unit must be compiled with -gnat05 switch"); elsif Token /= Tok_Entry then Error_Msg_SC ("ENTRY expected!"); end if; end if; Decl_Node := New_Node (N_Entry_Declaration, Token_Ptr); Scan; -- past ENTRY Set_Defining_Identifier (Decl_Node, P_Defining_Identifier (C_Left_Paren_Semicolon)); -- If left paren, could be (Discrete_Subtype_Definition) or Formal_Part if Token = Tok_Left_Paren then Scan; -- past ( -- If identifier after left paren, could still be either if Token = Tok_Identifier then Save_Scan_State (Scan_State); -- at Id Scan; -- past Id -- If comma or colon after Id, must be Formal_Part if Token = Tok_Comma or else Token = Tok_Colon then Restore_Scan_State (Scan_State); -- to Id Set_Parameter_Specifications (Decl_Node, P_Formal_Part); -- Else if Id wi no comma or colon, must be discrete subtype defn else Restore_Scan_State (Scan_State); -- to Id Set_Discrete_Subtype_Definition (Decl_Node, P_Discrete_Subtype_Definition); T_Right_Paren; Set_Parameter_Specifications (Decl_Node, P_Parameter_Profile); end if; -- If no Id, must be discrete subtype definition else Set_Discrete_Subtype_Definition (Decl_Node, P_Discrete_Subtype_Definition); T_Right_Paren; Set_Parameter_Specifications (Decl_Node, P_Parameter_Profile); end if; end if; if Is_Overriding then Set_Must_Override (Decl_Node); elsif Not_Overriding then Set_Must_Not_Override (Decl_Node); end if; -- Error recovery check for illegal return if Token = Tok_Return then Error_Msg_SC ("entry cannot have return value!"); Scan; Discard_Junk_Node (P_Subtype_Indication); end if; -- Error recovery check for improper use of entry barrier in spec if Token = Tok_When then Error_Msg_SC ("barrier not allowed here (belongs in body)"); Scan; -- past WHEN; Discard_Junk_Node (P_Expression_No_Right_Paren); end if; TF_Semicolon; return Decl_Node; exception when Error_Resync => Resync_Past_Semicolon; return Error; end P_Entry_Declaration; ----------------------------- -- 9.5.2 Accept Statement -- ----------------------------- -- ACCEPT_STATEMENT ::= -- accept entry_DIRECT_NAME -- [(ENTRY_INDEX)] PARAMETER_PROFILE [do -- HANDLED_SEQUENCE_OF_STATEMENTS -- end [entry_IDENTIFIER]]; -- The caller has checked that the initial token is ACCEPT -- Error recovery: cannot raise Error_Resync. If an error occurs, the -- scan is resynchronized past the next semicolon and control returns. function P_Accept_Statement return Node_Id is Scan_State : Saved_Scan_State; Accept_Node : Node_Id; Hand_Seq : Node_Id; begin Push_Scope_Stack; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Ecol := Start_Column; Accept_Node := New_Node (N_Accept_Statement, Token_Ptr); Scan; -- past ACCEPT Scope.Table (Scope.Last).Labl := Token_Node; Set_Entry_Direct_Name (Accept_Node, P_Identifier (C_Do)); -- Left paren could be (Entry_Index) or Formal_Part, determine which if Token = Tok_Left_Paren then Save_Scan_State (Scan_State); -- at left paren Scan; -- past left paren -- If first token after left paren not identifier, then Entry_Index if Token /= Tok_Identifier then Set_Entry_Index (Accept_Node, P_Expression); T_Right_Paren; Set_Parameter_Specifications (Accept_Node, P_Parameter_Profile); -- First token after left paren is identifier, could be either case else -- Token = Tok_Identifier Scan; -- past identifier -- If identifier followed by comma or colon, must be Formal_Part if Token = Tok_Comma or else Token = Tok_Colon then Restore_Scan_State (Scan_State); -- to left paren Set_Parameter_Specifications (Accept_Node, P_Parameter_Profile); -- If identifier not followed by comma/colon, must be entry index else Restore_Scan_State (Scan_State); -- to left paren Scan; -- past left paren (again!) Set_Entry_Index (Accept_Node, P_Expression); T_Right_Paren; Set_Parameter_Specifications (Accept_Node, P_Parameter_Profile); end if; end if; end if; -- Scan out DO if present if Token = Tok_Do then Scope.Table (Scope.Last).Etyp := E_Name; Scope.Table (Scope.Last).Lreq := False; Scan; -- past DO Hand_Seq := P_Handled_Sequence_Of_Statements; Set_Handled_Statement_Sequence (Accept_Node, Hand_Seq); End_Statements (Handled_Statement_Sequence (Accept_Node)); -- Exception handlers not allowed in Ada 95 node if Present (Exception_Handlers (Hand_Seq)) then if Ada_Version = Ada_83 then Error_Msg_N ("(Ada 83) exception handlers in accept not allowed", First_Non_Pragma (Exception_Handlers (Hand_Seq))); end if; end if; else Pop_Scope_Stack; -- discard unused entry TF_Semicolon; end if; return Accept_Node; -- If error, resynchronize past semicolon exception when Error_Resync => Resync_Past_Semicolon; Pop_Scope_Stack; -- discard unused entry return Error; end P_Accept_Statement; ------------------------ -- 9.5.2 Entry Index -- ------------------------ -- Parsed by P_Expression (4.4) ----------------------- -- 9.5.2 Entry Body -- ----------------------- -- ENTRY_BODY ::= -- entry DEFINING_IDENTIFIER ENTRY_BODY_FORMAL_PART ENTRY_BARRIER is -- DECLARATIVE_PART -- begin -- HANDLED_SEQUENCE_OF_STATEMENTS -- end [entry_IDENTIFIER]; -- The caller has checked that the initial token is ENTRY -- Error_Recovery: cannot raise Error_Resync function P_Entry_Body return Node_Id is Entry_Node : Node_Id; Formal_Part_Node : Node_Id; Name_Node : Node_Id; begin Push_Scope_Stack; Entry_Node := New_Node (N_Entry_Body, Token_Ptr); Scan; -- past ENTRY Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Lreq := False; Scope.Table (Scope.Last).Etyp := E_Name; Name_Node := P_Defining_Identifier; Set_Defining_Identifier (Entry_Node, Name_Node); Scope.Table (Scope.Last).Labl := Name_Node; Formal_Part_Node := P_Entry_Body_Formal_Part; Set_Entry_Body_Formal_Part (Entry_Node, Formal_Part_Node); Set_Condition (Formal_Part_Node, P_Entry_Barrier); Parse_Decls_Begin_End (Entry_Node); return Entry_Node; end P_Entry_Body; ----------------------------------- -- 9.5.2 Entry Body Formal Part -- ----------------------------------- -- ENTRY_BODY_FORMAL_PART ::= -- [(ENTRY_INDEX_SPECIFICATION)] [PARAMETER_PART] -- Error_Recovery: cannot raise Error_Resync function P_Entry_Body_Formal_Part return Node_Id is Fpart_Node : Node_Id; Scan_State : Saved_Scan_State; begin Fpart_Node := New_Node (N_Entry_Body_Formal_Part, Token_Ptr); -- See if entry index specification present, and if so parse it if Token = Tok_Left_Paren then Save_Scan_State (Scan_State); -- at left paren Scan; -- past left paren if Token = Tok_For then Set_Entry_Index_Specification (Fpart_Node, P_Entry_Index_Specification); T_Right_Paren; else Restore_Scan_State (Scan_State); -- to left paren end if; -- Check for (common?) case of left paren omitted before FOR. This -- is a tricky case, because the corresponding missing left paren -- can cause real havoc if a formal part is present which gets -- treated as part of the discrete subtype definition of the -- entry index specification, so just give error and resynchronize elsif Token = Tok_For then T_Left_Paren; -- to give error message Resync_To_When; end if; Set_Parameter_Specifications (Fpart_Node, P_Parameter_Profile); return Fpart_Node; end P_Entry_Body_Formal_Part; -------------------------- -- 9.5.2 Entry Barrier -- -------------------------- -- ENTRY_BARRIER ::= when CONDITION -- Error_Recovery: cannot raise Error_Resync function P_Entry_Barrier return Node_Id is Bnode : Node_Id; begin if Token = Tok_When then Scan; -- past WHEN; Bnode := P_Expression_No_Right_Paren; if Token = Tok_Colon_Equal then Error_Msg_SC (""":="" should be ""="""); Scan; Bnode := P_Expression_No_Right_Paren; end if; else T_When; -- to give error message Bnode := Error; end if; TF_Is; return Bnode; end P_Entry_Barrier; -------------------------------------- -- 9.5.2 Entry Index Specification -- -------------------------------------- -- ENTRY_INDEX_SPECIFICATION ::= -- for DEFINING_IDENTIFIER in DISCRETE_SUBTYPE_DEFINITION -- Error recovery: can raise Error_Resync function P_Entry_Index_Specification return Node_Id is Iterator_Node : Node_Id; begin Iterator_Node := New_Node (N_Entry_Index_Specification, Token_Ptr); T_For; -- past FOR Set_Defining_Identifier (Iterator_Node, P_Defining_Identifier (C_In)); T_In; Set_Discrete_Subtype_Definition (Iterator_Node, P_Discrete_Subtype_Definition); return Iterator_Node; end P_Entry_Index_Specification; --------------------------------- -- 9.5.3 Entry Call Statement -- --------------------------------- -- Parsed by P_Name (4.1). Within a select, an entry call is parsed -- by P_Select_Statement (9.7) ------------------------------ -- 9.5.4 Requeue Statement -- ------------------------------ -- REQUEUE_STATEMENT ::= requeue entry_NAME [with abort]; -- The caller has checked that the initial token is requeue -- Error recovery: can raise Error_Resync function P_Requeue_Statement return Node_Id is Requeue_Node : Node_Id; begin Requeue_Node := New_Node (N_Requeue_Statement, Token_Ptr); Scan; -- past REQUEUE Set_Name (Requeue_Node, P_Name); if Token = Tok_With then Scan; -- past WITH T_Abort; Set_Abort_Present (Requeue_Node, True); end if; TF_Semicolon; return Requeue_Node; end P_Requeue_Statement; -------------------------- -- 9.6 Delay Statement -- -------------------------- -- DELAY_STATEMENT ::= -- DELAY_UNTIL_STATEMENT -- | DELAY_RELATIVE_STATEMENT -- The caller has checked that the initial token is DELAY -- Error recovery: cannot raise Error_Resync function P_Delay_Statement return Node_Id is begin Scan; -- past DELAY -- The following check for delay until misused in Ada 83 doesn't catch -- all cases, but it's good enough to catch most of them! if Token_Name = Name_Until then Check_95_Keyword (Tok_Until, Tok_Left_Paren); Check_95_Keyword (Tok_Until, Tok_Identifier); end if; if Token = Tok_Until then return P_Delay_Until_Statement; else return P_Delay_Relative_Statement; end if; end P_Delay_Statement; -------------------------------- -- 9.6 Delay Until Statement -- -------------------------------- -- DELAY_UNTIL_STATEMENT ::= delay until delay_EXPRESSION; -- The caller has checked that the initial token is DELAY, scanned it -- out and checked that the current token is UNTIL -- Error recovery: cannot raise Error_Resync function P_Delay_Until_Statement return Node_Id is Delay_Node : Node_Id; begin Delay_Node := New_Node (N_Delay_Until_Statement, Prev_Token_Ptr); Scan; -- past UNTIL Set_Expression (Delay_Node, P_Expression_No_Right_Paren); TF_Semicolon; return Delay_Node; end P_Delay_Until_Statement; ----------------------------------- -- 9.6 Delay Relative Statement -- ----------------------------------- -- DELAY_RELATIVE_STATEMENT ::= delay delay_EXPRESSION; -- The caller has checked that the initial token is DELAY, scanned it -- out and determined that the current token is not UNTIL -- Error recovery: cannot raise Error_Resync function P_Delay_Relative_Statement return Node_Id is Delay_Node : Node_Id; begin Delay_Node := New_Node (N_Delay_Relative_Statement, Prev_Token_Ptr); Set_Expression (Delay_Node, P_Expression_No_Right_Paren); Check_Simple_Expression_In_Ada_83 (Expression (Delay_Node)); TF_Semicolon; return Delay_Node; end P_Delay_Relative_Statement; --------------------------- -- 9.7 Select Statement -- --------------------------- -- SELECT_STATEMENT ::= -- SELECTIVE_ACCEPT -- | TIMED_ENTRY_CALL -- | CONDITIONAL_ENTRY_CALL -- | ASYNCHRONOUS_SELECT -- SELECTIVE_ACCEPT ::= -- select -- [GUARD] -- SELECT_ALTERNATIVE -- {or -- [GUARD] -- SELECT_ALTERNATIVE -- [else -- SEQUENCE_OF_STATEMENTS] -- end select; -- GUARD ::= when CONDITION => -- Note: the guard preceding a select alternative is included as part -- of the node generated for a selective accept alternative. -- SELECT_ALTERNATIVE ::= -- ACCEPT_ALTERNATIVE -- | DELAY_ALTERNATIVE -- | TERMINATE_ALTERNATIVE -- TIMED_ENTRY_CALL ::= -- select -- ENTRY_CALL_ALTERNATIVE -- or -- DELAY_ALTERNATIVE -- end select; -- CONDITIONAL_ENTRY_CALL ::= -- select -- ENTRY_CALL_ALTERNATIVE -- else -- SEQUENCE_OF_STATEMENTS -- end select; -- ENTRY_CALL_ALTERNATIVE ::= -- ENTRY_CALL_STATEMENT [SEQUENCE_OF_STATEMENTS] -- ASYNCHRONOUS_SELECT ::= -- select -- TRIGGERING_ALTERNATIVE -- then abort -- ABORTABLE_PART -- end select; -- TRIGGERING_ALTERNATIVE ::= -- TRIGGERING_STATEMENT [SEQUENCE_OF_STATEMENTS] -- TRIGGERING_STATEMENT ::= ENTRY_CALL_STATEMENT | DELAY_STATEMENT -- The caller has checked that the initial token is SELECT -- Error recovery: can raise Error_Resync function P_Select_Statement return Node_Id is Select_Node : Node_Id; Select_Sloc : Source_Ptr; Stmnt_Sloc : Source_Ptr; Ecall_Node : Node_Id; Alternative : Node_Id; Select_Pragmas : List_Id; Alt_Pragmas : List_Id; Statement_List : List_Id; Alt_List : List_Id; Cond_Expr : Node_Id; Delay_Stmnt : Node_Id; begin Push_Scope_Stack; Scope.Table (Scope.Last).Etyp := E_Select; Scope.Table (Scope.Last).Ecol := Start_Column; Scope.Table (Scope.Last).Sloc := Token_Ptr; Scope.Table (Scope.Last).Labl := Error; Select_Sloc := Token_Ptr; Scan; -- past SELECT Stmnt_Sloc := Token_Ptr; Select_Pragmas := P_Pragmas_Opt; -- If first token after select is designator, then we have an entry -- call, which must be the start of a conditional entry call, timed -- entry call or asynchronous select if Token in Token_Class_Desig then -- Scan entry call statement begin Ecall_Node := P_Name; -- ?? The following two clauses exactly parallel code in ch5 -- and should be commoned sometime if Nkind (Ecall_Node) = N_Indexed_Component then declare Prefix_Node : constant Node_Id := Prefix (Ecall_Node); Exprs_Node : constant List_Id := Expressions (Ecall_Node); begin Change_Node (Ecall_Node, N_Procedure_Call_Statement); Set_Name (Ecall_Node, Prefix_Node); Set_Parameter_Associations (Ecall_Node, Exprs_Node); end; elsif Nkind (Ecall_Node) = N_Function_Call then declare Fname_Node : constant Node_Id := Name (Ecall_Node); Params_List : constant List_Id := Parameter_Associations (Ecall_Node); begin Change_Node (Ecall_Node, N_Procedure_Call_Statement); Set_Name (Ecall_Node, Fname_Node); Set_Parameter_Associations (Ecall_Node, Params_List); end; elsif Nkind (Ecall_Node) = N_Identifier or else Nkind (Ecall_Node) = N_Selected_Component then -- Case of a call to a parameterless entry declare C_Node : constant Node_Id := New_Node (N_Procedure_Call_Statement, Stmnt_Sloc); begin Set_Name (C_Node, Ecall_Node); Set_Parameter_Associations (C_Node, No_List); Ecall_Node := C_Node; end; end if; TF_Semicolon; exception when Error_Resync => Resync_Past_Semicolon; return Error; end; Statement_List := P_Sequence_Of_Statements (SS_Eltm_Ortm_Tatm); -- OR follows, we have a timed entry call if Token = Tok_Or then Scan; -- past OR Alt_Pragmas := P_Pragmas_Opt; Select_Node := New_Node (N_Timed_Entry_Call, Select_Sloc); Set_Entry_Call_Alternative (Select_Node, Make_Entry_Call_Alternative (Stmnt_Sloc, Entry_Call_Statement => Ecall_Node, Pragmas_Before => Select_Pragmas, Statements => Statement_List)); -- Only possibility is delay alternative. If we have anything -- else, give message, and treat as conditional entry call. if Token /= Tok_Delay then Error_Msg_SC ("only allowed alternative in timed entry call is delay!"); Discard_Junk_List (P_Sequence_Of_Statements (SS_Sreq)); Set_Delay_Alternative (Select_Node, Error); else Set_Delay_Alternative (Select_Node, P_Delay_Alternative); Set_Pragmas_Before (Delay_Alternative (Select_Node), Alt_Pragmas); end if; -- ELSE follows, we have a conditional entry call elsif Token = Tok_Else then Scan; -- past ELSE Select_Node := New_Node (N_Conditional_Entry_Call, Select_Sloc); Set_Entry_Call_Alternative (Select_Node, Make_Entry_Call_Alternative (Stmnt_Sloc, Entry_Call_Statement => Ecall_Node, Pragmas_Before => Select_Pragmas, Statements => Statement_List)); Set_Else_Statements (Select_Node, P_Sequence_Of_Statements (SS_Sreq)); -- Only remaining case is THEN ABORT (asynchronous select) elsif Token = Tok_Abort then Select_Node := Make_Asynchronous_Select (Select_Sloc, Triggering_Alternative => Make_Triggering_Alternative (Stmnt_Sloc, Triggering_Statement => Ecall_Node, Pragmas_Before => Select_Pragmas, Statements => Statement_List), Abortable_Part => P_Abortable_Part); -- Else error else if Ada_Version = Ada_83 then Error_Msg_BC ("OR or ELSE expected"); else Error_Msg_BC ("OR or ELSE or THEN ABORT expected"); end if; Select_Node := Error; end if; End_Statements; -- Here we have a selective accept or an an asynchronous select (first -- token after SELECT is other than a designator token). else -- If we have delay with no guard, could be asynchronous select if Token = Tok_Delay then Delay_Stmnt := P_Delay_Statement; Statement_List := P_Sequence_Of_Statements (SS_Eltm_Ortm_Tatm); -- Asynchronous select if Token = Tok_Abort then Select_Node := Make_Asynchronous_Select (Select_Sloc, Triggering_Alternative => Make_Triggering_Alternative (Stmnt_Sloc, Triggering_Statement => Delay_Stmnt, Pragmas_Before => Select_Pragmas, Statements => Statement_List), Abortable_Part => P_Abortable_Part); End_Statements; return Select_Node; -- Delay which was not an asynchronous select. Must be a selective -- accept, and since at least one accept statement is required, -- we must have at least one OR phrase present. else Alt_List := New_List ( Make_Delay_Alternative (Stmnt_Sloc, Delay_Statement => Delay_Stmnt, Pragmas_Before => Select_Pragmas, Statements => Statement_List)); T_Or; Alt_Pragmas := P_Pragmas_Opt; end if; -- If not a delay statement, then must be another possibility for -- a selective accept alternative, or perhaps a guard is present else Alt_List := New_List; Alt_Pragmas := Select_Pragmas; end if; Select_Node := New_Node (N_Selective_Accept, Select_Sloc); Set_Select_Alternatives (Select_Node, Alt_List); -- Scan out selective accept alternatives. On entry to this loop, -- we are just past a SELECT or OR token, and any pragmas that -- immediately follow the SELECT or OR are in Alt_Pragmas. loop if Token = Tok_When then if Present (Alt_Pragmas) then Error_Msg_SC ("pragmas may not precede guard"); end if; Scan; -- past WHEN Cond_Expr := P_Expression_No_Right_Paren; T_Arrow; Alt_Pragmas := P_Pragmas_Opt; else Cond_Expr := Empty; end if; if Token = Tok_Accept then Alternative := P_Accept_Alternative; -- Check for junk attempt at asynchronous select using -- an Accept alternative as the triggering statement if Token = Tok_Abort and then Is_Empty_List (Alt_List) and then No (Cond_Expr) then Error_Msg ("triggering statement must be entry call or delay", Sloc (Alternative)); Scan; -- past junk ABORT Discard_Junk_List (P_Sequence_Of_Statements (SS_Sreq)); End_Statements; return Error; end if; elsif Token = Tok_Delay then Alternative := P_Delay_Alternative; elsif Token = Tok_Terminate then Alternative := P_Terminate_Alternative; else Error_Msg_SC ("Select alternative (ACCEPT, ABORT, DELAY) expected"); Alternative := Error; if Token = Tok_Semicolon then Scan; -- past junk semicolon end if; end if; -- THEN ABORT at this stage is just junk if Token = Tok_Abort then Error_Msg_SP ("misplaced `THEN ABORT`"); Scan; -- past junk ABORT Discard_Junk_List (P_Sequence_Of_Statements (SS_Sreq)); End_Statements; return Error; else if Alternative /= Error then Set_Condition (Alternative, Cond_Expr); Set_Pragmas_Before (Alternative, Alt_Pragmas); Append (Alternative, Alt_List); end if; exit when Token /= Tok_Or; end if; T_Or; Alt_Pragmas := P_Pragmas_Opt; end loop; if Token = Tok_Else then Scan; -- past ELSE Set_Else_Statements (Select_Node, P_Sequence_Of_Statements (SS_Ortm_Sreq)); if Token = Tok_Or then Error_Msg_SC ("select alternative cannot follow else part!"); end if; end if; End_Statements; end if; return Select_Node; end P_Select_Statement; ----------------------------- -- 9.7.1 Selective Accept -- ----------------------------- -- Parsed by P_Select_Statement (9.7) ------------------ -- 9.7.1 Guard -- ------------------ -- Parsed by P_Select_Statement (9.7) ------------------------------- -- 9.7.1 Select Alternative -- ------------------------------- -- SELECT_ALTERNATIVE ::= -- ACCEPT_ALTERNATIVE -- | DELAY_ALTERNATIVE -- | TERMINATE_ALTERNATIVE -- Note: the guard preceding a select alternative is included as part -- of the node generated for a selective accept alternative. -- Error recovery: cannot raise Error_Resync ------------------------------- -- 9.7.1 Accept Alternative -- ------------------------------- -- ACCEPT_ALTERNATIVE ::= -- ACCEPT_STATEMENT [SEQUENCE_OF_STATEMENTS] -- Error_Recovery: Cannot raise Error_Resync -- Note: the caller is responsible for setting the Pragmas_Before -- field of the returned N_Terminate_Alternative node. function P_Accept_Alternative return Node_Id is Accept_Alt_Node : Node_Id; begin Accept_Alt_Node := New_Node (N_Accept_Alternative, Token_Ptr); Set_Accept_Statement (Accept_Alt_Node, P_Accept_Statement); -- Note: the reason that we accept THEN ABORT as a terminator for -- the sequence of statements is for error recovery which allows -- for misuse of an accept statement as a triggering statememt. Set_Statements (Accept_Alt_Node, P_Sequence_Of_Statements (SS_Eltm_Ortm_Tatm)); return Accept_Alt_Node; end P_Accept_Alternative; ------------------------------ -- 9.7.1 Delay Alternative -- ------------------------------ -- DELAY_ALTERNATIVE ::= -- DELAY_STATEMENT [SEQUENCE_OF_STATEMENTS] -- Error_Recovery: Cannot raise Error_Resync -- Note: the caller is responsible for setting the Pragmas_Before -- field of the returned N_Terminate_Alternative node. function P_Delay_Alternative return Node_Id is Delay_Alt_Node : Node_Id; begin Delay_Alt_Node := New_Node (N_Delay_Alternative, Token_Ptr); Set_Delay_Statement (Delay_Alt_Node, P_Delay_Statement); -- Note: the reason that we accept THEN ABORT as a terminator for -- the sequence of statements is for error recovery which allows -- for misuse of an accept statement as a triggering statememt. Set_Statements (Delay_Alt_Node, P_Sequence_Of_Statements (SS_Eltm_Ortm_Tatm)); return Delay_Alt_Node; end P_Delay_Alternative; ---------------------------------- -- 9.7.1 Terminate Alternative -- ---------------------------------- -- TERMINATE_ALTERNATIVE ::= terminate; -- Error_Recovery: Cannot raise Error_Resync -- Note: the caller is responsible for setting the Pragmas_Before -- field of the returned N_Terminate_Alternative node. function P_Terminate_Alternative return Node_Id is Terminate_Alt_Node : Node_Id; begin Terminate_Alt_Node := New_Node (N_Terminate_Alternative, Token_Ptr); Scan; -- past TERMINATE TF_Semicolon; -- For all other select alternatives, the sequence of statements -- after the alternative statement will swallow up any pragmas -- coming in this position. But the terminate alternative has no -- sequence of statements, so the pragmas here must be treated -- specially. Set_Pragmas_After (Terminate_Alt_Node, P_Pragmas_Opt); return Terminate_Alt_Node; end P_Terminate_Alternative; ----------------------------- -- 9.7.2 Timed Entry Call -- ----------------------------- -- Parsed by P_Select_Statement (9.7) ----------------------------------- -- 9.7.2 Entry Call Alternative -- ----------------------------------- -- Parsed by P_Select_Statement (9.7) ----------------------------------- -- 9.7.3 Conditional Entry Call -- ----------------------------------- -- Parsed by P_Select_Statement (9.7) -------------------------------- -- 9.7.4 Asynchronous Select -- -------------------------------- -- Parsed by P_Select_Statement (9.7) ----------------------------------- -- 9.7.4 Triggering Alternative -- ----------------------------------- -- Parsed by P_Select_Statement (9.7) --------------------------------- -- 9.7.4 Triggering Statement -- --------------------------------- -- Parsed by P_Select_Statement (9.7) --------------------------- -- 9.7.4 Abortable Part -- --------------------------- -- ABORTABLE_PART ::= SEQUENCE_OF_STATEMENTS -- The caller has verified that THEN ABORT is present, and Token is -- pointing to the ABORT on entry (or if not, then we have an error) -- Error recovery: cannot raise Error_Resync function P_Abortable_Part return Node_Id is Abortable_Part_Node : Node_Id; begin Abortable_Part_Node := New_Node (N_Abortable_Part, Token_Ptr); T_Abort; -- scan past ABORT if Ada_Version = Ada_83 then Error_Msg_SP ("(Ada 83) asynchronous select not allowed!"); end if; Set_Statements (Abortable_Part_Node, P_Sequence_Of_Statements (SS_Sreq)); return Abortable_Part_Node; end P_Abortable_Part; -------------------------- -- 9.8 Abort Statement -- -------------------------- -- ABORT_STATEMENT ::= abort task_NAME {, task_NAME}; -- The caller has checked that the initial token is ABORT -- Error recovery: cannot raise Error_Resync function P_Abort_Statement return Node_Id is Abort_Node : Node_Id; begin Abort_Node := New_Node (N_Abort_Statement, Token_Ptr); Scan; -- past ABORT Set_Names (Abort_Node, New_List); loop Append (P_Name, Names (Abort_Node)); exit when Token /= Tok_Comma; Scan; -- past comma end loop; TF_Semicolon; return Abort_Node; end P_Abort_Statement; end Ch9;
32.247078
79
0.57631